From d891000b1980fcd431c79f1c290c5bbf0c09fc3c Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Wed, 10 Dec 2025 19:45:39 +0300 Subject: [PATCH 1/8] Features: None; Fixes: None; Extra: 1) Remove redundant comments from `_kpis.html`; 2) Exclude unused `_income_overview.html` include from `index.html`; 3) Comment out GA/Yandex/Ads integration placeholder in `_filters.html`. --- engine/core/templates/admin/dashboard/_filters.html | 6 +++--- engine/core/templates/admin/dashboard/_kpis.html | 10 ---------- engine/core/templates/admin/index.html | 1 - 3 files changed, 3 insertions(+), 14 deletions(-) diff --git a/engine/core/templates/admin/dashboard/_filters.html b/engine/core/templates/admin/dashboard/_filters.html index ca57db27..cdf24eb8 100644 --- a/engine/core/templates/admin/dashboard/_filters.html +++ b/engine/core/templates/admin/dashboard/_filters.html @@ -15,8 +15,8 @@ 360d {% endwith %} -
- {% trans "TODO: Integrate GA/Yandex.Metrica & Ads metrics" %} -
+{#
#} +{# TODO: Integrate GA/Yandex.Metrica & Ads metrics#} +{#
#} {% endcomponent %} diff --git a/engine/core/templates/admin/dashboard/_kpis.html b/engine/core/templates/admin/dashboard/_kpis.html index e60465ad..d3dcb255 100644 --- a/engine/core/templates/admin/dashboard/_kpis.html +++ b/engine/core/templates/admin/dashboard/_kpis.html @@ -1,12 +1,6 @@ {% load i18n unfold %} -{# - KPI cards (mobile-first): GMV, Orders, AOV, Net revenue, Refund rate - Uses `kpi` dict and `currency_symbol` provided by dashboard_callback -#} -
- {# GMV #} {% component "unfold/components/card.html" %}
{% component "unfold/components/text.html" %}{% trans "GMV" %} ({{ tf|default:30 }}d){% endcomponent %} @@ -21,7 +15,6 @@ {% endcomponent %} {% endcomponent %} - {# Orders #} {% component "unfold/components/card.html" %}
{% component "unfold/components/text.html" %}{% trans "Orders" %} ({{ tf|default:30 }}d){% endcomponent %} @@ -36,7 +29,6 @@ {% endcomponent %} {% endcomponent %} - {# AOV #} {% component "unfold/components/card.html" %}
{% component "unfold/components/text.html" %}{% trans "AOV" %} ({{ tf|default:30 }}d){% endcomponent %} @@ -51,7 +43,6 @@ {% endcomponent %} {% endcomponent %} - {# Net revenue #} {% component "unfold/components/card.html" %}
{% component "unfold/components/text.html" %}{% trans "Net revenue" %} ({{ tf|default:30 }}d){% endcomponent %} @@ -66,7 +57,6 @@ {% endcomponent %} {% endcomponent %} - {# Refund rate #} {% component "unfold/components/card.html" %}
{% component "unfold/components/text.html" %}{% trans "Refund rate" %} ({{ tf|default:30 }}d){% endcomponent %} diff --git a/engine/core/templates/admin/index.html b/engine/core/templates/admin/index.html index 08c4986f..3257e12b 100644 --- a/engine/core/templates/admin/index.html +++ b/engine/core/templates/admin/index.html @@ -29,7 +29,6 @@
{% include "admin/dashboard/_daily_sales.html" %}
- {% include "admin/dashboard/_income_overview.html" %}
From 76cea49c067bfd918d8ddb95f55bf2abf657cb5f Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Wed, 10 Dec 2025 20:25:54 +0300 Subject: [PATCH 2/8] Features: 1) Streamline component inclusion in admin dashboard; 2) Simplify KPIs and sales data layout; 3) Revise product list card structure for better readability and maintainability; Fixes: 1) Remove redundant breaks and unnecessary div wrappings; 2) Simplify filters component by eliminating unnecessary card wrapper; Extra: Refactor and clean up admin dashboard templates for decluttered structure and improved code consistency; --- .../templates/admin/dashboard/_filters.html | 32 ++--- .../admin/dashboard/_product_lists.html | 130 +++++++++--------- engine/core/templates/admin/index.html | 14 +- 3 files changed, 79 insertions(+), 97 deletions(-) diff --git a/engine/core/templates/admin/dashboard/_filters.html b/engine/core/templates/admin/dashboard/_filters.html index cdf24eb8..4001bedd 100644 --- a/engine/core/templates/admin/dashboard/_filters.html +++ b/engine/core/templates/admin/dashboard/_filters.html @@ -1,22 +1,14 @@ {% load i18n unfold %} -{% component "unfold/components/card.html" with class="mb-4" %} -
- {% component "unfold/components/text.html" with class="text-sm text-gray-500 dark:text-gray-400 mr-2" %} - {% trans "Timeframe" %} - {% endcomponent %} - {% with cur=tf|default:30 %} - 7d - 30d - 90d - 360d - {% endwith %} -{#
#} -{# TODO: Integrate GA/Yandex.Metrica & Ads metrics#} -{#
#} -
-{% endcomponent %} +
+ {% with cur=tf|default:30 %} + 7d + 30d + 90d + 360d + {% endwith %} +
diff --git a/engine/core/templates/admin/dashboard/_product_lists.html b/engine/core/templates/admin/dashboard/_product_lists.html index a71b0095..1c00b3cd 100644 --- a/engine/core/templates/admin/dashboard/_product_lists.html +++ b/engine/core/templates/admin/dashboard/_product_lists.html @@ -1,71 +1,69 @@ {% load i18n unfold %} -
- {% component "unfold/components/card.html" %} - {% component "unfold/components/title.html" %} - {% trans "Most wished product" %} - {% endcomponent %} - {% if most_wished_products %} - - {% elif most_wished_product %} - - {% if most_wished_product.image %} - {{ most_wished_product.name }} - {% endif %} - {{ most_wished_product.name }} - - {% else %} - {% component "unfold/components/text.html" %} - {% trans "No data yet." %} - {% endcomponent %} - {% endif %} +{% component "unfold/components/card.html" %} + {% component "unfold/components/title.html" %} + {% trans "Most wished product" %} {% endcomponent %} + {% if most_wished_products %} + + {% elif most_wished_product %} + + {% if most_wished_product.image %} + {{ most_wished_product.name }} + {% endif %} + {{ most_wished_product.name }} + + {% else %} + {% component "unfold/components/text.html" %} + {% trans "No data yet." %} + {% endcomponent %} + {% endif %} +{% endcomponent %} - {% component "unfold/components/card.html" %} - {% component "unfold/components/title.html" %} - {% trans "Most popular product" %} - {% endcomponent %} - {% if most_popular_products %} - - {% elif most_popular_product %} - - {% if most_popular_product.image %} - {{ most_popular_product.name }} - {% endif %} - {{ most_popular_product.name }} - - {% else %} - {% component "unfold/components/text.html" %} - {% trans "No data yet." %} - {% endcomponent %} - {% endif %} +{% component "unfold/components/card.html" %} + {% component "unfold/components/title.html" %} + {% trans "Most popular product" %} {% endcomponent %} -
+ {% if most_popular_products %} + + {% elif most_popular_product %} + + {% if most_popular_product.image %} + {{ most_popular_product.name }} + {% endif %} + {{ most_popular_product.name }} + + {% else %} + {% component "unfold/components/text.html" %} + {% trans "No data yet." %} + {% endcomponent %} + {% endif %} +{% endcomponent %} diff --git a/engine/core/templates/admin/index.html b/engine/core/templates/admin/index.html index 3257e12b..1a35dd74 100644 --- a/engine/core/templates/admin/index.html +++ b/engine/core/templates/admin/index.html @@ -18,17 +18,13 @@
{% component "unfold/components/title.html" %} {% trans "Dashboard" %} -
+ {% include "admin/dashboard/_filters.html" %} {% endcomponent %} - {% include "admin/dashboard/_filters.html" %} - {% include "admin/dashboard/_kpis.html" %}
-
- {% include "admin/dashboard/_daily_sales.html" %} -
+ {% include "admin/dashboard/_daily_sales.html" %}
@@ -43,11 +39,7 @@ {% endif %}
-
- {% include "admin/dashboard/_top_categories.html" %} - {% include "admin/dashboard/_quick_links.html" %} -
- + {% include "admin/dashboard/_top_categories.html" %} {% include "admin/dashboard/_product_lists.html" %} {% component "unfold/components/separator.html" %} From 625fe6e350fadd54ea88a2a1ec9800ec5cb8898c Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Wed, 10 Dec 2025 21:44:17 +0300 Subject: [PATCH 3/8] Features: 1) Fallback to default avatar image in `avatar_url` method; 2) Added header component for admin dashboard template; 3) Improved layout sections in admin dashboard templates for consistent spacing; Fixes: 1) Prevent `.initialized` file creation in debug mode; Extra: 1) Refactored and reorganized admin dashboard templates for better readability and maintainability. --- engine/core/management/commands/initialize.py | 3 +- .../dashboard/{_filters.html => _header.html} | 4 +- .../admin/dashboard/_product_lists.html | 131 +++++++++--------- engine/core/templates/admin/index.html | 41 ++++-- engine/vibes_auth/models.py | 8 +- 5 files changed, 103 insertions(+), 84 deletions(-) rename engine/core/templates/admin/dashboard/{_filters.html => _header.html} (87%) diff --git a/engine/core/management/commands/initialize.py b/engine/core/management/commands/initialize.py index f68bbba4..bdcda2f3 100644 --- a/engine/core/management/commands/initialize.py +++ b/engine/core/management/commands/initialize.py @@ -185,7 +185,8 @@ class Command(BaseCommand): (User.objects.filter(Q(language="") | ~Q(language__in=valid_codes)).update(language=settings.LANGUAGE_CODE)) try: - initialized_path.write_text(settings.RELEASE_DATE.isoformat(), encoding="utf-8") + if not settings.DEBUG: + initialized_path.write_text(settings.RELEASE_DATE.isoformat(), encoding="utf-8") except Exception as exc: logger.error("Failed to update .initialized file: %s", exc) diff --git a/engine/core/templates/admin/dashboard/_filters.html b/engine/core/templates/admin/dashboard/_header.html similarity index 87% rename from engine/core/templates/admin/dashboard/_filters.html rename to engine/core/templates/admin/dashboard/_header.html index 4001bedd..e456cdb5 100644 --- a/engine/core/templates/admin/dashboard/_filters.html +++ b/engine/core/templates/admin/dashboard/_header.html @@ -1,6 +1,6 @@ {% load i18n unfold %} - -
+
+ {% trans "Dashboard" %} {% with cur=tf|default:30 %} 7d diff --git a/engine/core/templates/admin/dashboard/_product_lists.html b/engine/core/templates/admin/dashboard/_product_lists.html index 1c00b3cd..343b5df0 100644 --- a/engine/core/templates/admin/dashboard/_product_lists.html +++ b/engine/core/templates/admin/dashboard/_product_lists.html @@ -1,69 +1,72 @@ {% load i18n unfold %} -{% component "unfold/components/card.html" %} - {% component "unfold/components/title.html" %} - {% trans "Most wished product" %} - {% endcomponent %} - {% if most_wished_products %} - - {% elif most_wished_product %} - - {% if most_wished_product.image %} - {{ most_wished_product.name }} - {% endif %} - {{ most_wished_product.name }} - - {% else %} - {% component "unfold/components/text.html" %} - {% trans "No data yet." %} +
+ {% component "unfold/components/card.html" %} + {% component "unfold/components/title.html" %} + {% trans "Most wished product" %} {% endcomponent %} - {% endif %} -{% endcomponent %} - -{% component "unfold/components/card.html" %} - {% component "unfold/components/title.html" %} - {% trans "Most popular product" %} + {% if most_wished_products %} + + {% elif most_wished_product %} + + {% if most_wished_product.image %} + {{ most_wished_product.name }} + {% endif %} + {{ most_wished_product.name }} + + {% else %} + {% component "unfold/components/text.html" %} + {% trans "No data yet." %} + {% endcomponent %} + {% endif %} {% endcomponent %} - {% if most_popular_products %} - - {% elif most_popular_product %} - - {% if most_popular_product.image %} - {{ most_popular_product.name }} - {% endif %} - {{ most_popular_product.name }} - - {% else %} - {% component "unfold/components/text.html" %} - {% trans "No data yet." %} +
+
+ {% component "unfold/components/card.html" %} + {% component "unfold/components/title.html" %} + {% trans "Most popular product" %} {% endcomponent %} - {% endif %} -{% endcomponent %} + {% if most_popular_products %} + + {% elif most_popular_product %} + + {% if most_popular_product.image %} + {{ most_popular_product.name }} + {% endif %} + {{ most_popular_product.name }} + + {% else %} + {% component "unfold/components/text.html" %} + {% trans "No data yet." %} + {% endcomponent %} + {% endif %} + {% endcomponent %} +
\ No newline at end of file diff --git a/engine/core/templates/admin/index.html b/engine/core/templates/admin/index.html index 1a35dd74..7e98c630 100644 --- a/engine/core/templates/admin/index.html +++ b/engine/core/templates/admin/index.html @@ -17,33 +17,44 @@ {% component "unfold/components/container.html" %}
{% component "unfold/components/title.html" %} - {% trans "Dashboard" %} - {% include "admin/dashboard/_filters.html" %} + {% include "admin/dashboard/_header.html" %} {% endcomponent %} - {% include "admin/dashboard/_kpis.html" %} - -
- {% include "admin/dashboard/_daily_sales.html" %} +
+ {% include "admin/dashboard/_kpis.html" %}
-
+
{% include "admin/dashboard/_low_stock.html" %} +
+ +
{% include "admin/dashboard/_most_returned.html" %}
-
+
{% include "admin/dashboard/_customers_mix.html" %} - {% if shipped_vs_digital.digital_qty|default:0 > 0 and shipped_vs_digital.shipped_qty|default:0 > 0 %} - {% include "admin/dashboard/_shipped_vs_digital.html" %} - {% endif %}
- {% include "admin/dashboard/_top_categories.html" %} - {% include "admin/dashboard/_product_lists.html" %} + {% if shipped_vs_digital.digital_qty|default:0 > 0 and shipped_vs_digital.shipped_qty|default:0 > 0 %} +
+ {% include "admin/dashboard/_shipped_vs_digital.html" %} +
+ {% endif %} - {% component "unfold/components/separator.html" %} - {% endcomponent %} +
+ {% include "admin/dashboard/_top_categories.html" %} +
+ +
+ {% include "admin/dashboard/_product_lists.html" %} +
+ +
+ {% include "admin/dashboard/_daily_sales.html" %} +
+ + {% component "unfold/components/separator.html" %}{% endcomponent %}
{% component "unfold/components/text.html" with class="text-center text-xs text-gray-500 dark:text-gray-400" %} diff --git a/engine/vibes_auth/models.py b/engine/vibes_auth/models.py index 86c191dd..315cbacd 100644 --- a/engine/vibes_auth/models.py +++ b/engine/vibes_auth/models.py @@ -19,6 +19,7 @@ from django.db.models import ( TextField, UUIDField, ) +from django.templatetags.static import static from django.utils import timezone from django.utils.functional import cached_property from django.utils.translation import gettext_lazy as _ @@ -100,8 +101,11 @@ class User(AbstractUser, NiceModel): # type: ignore [django-manager-missing] objects = UserManager() # type: ignore [misc, assignment] @cached_property - def avatar_url(self): - return self.avatar.url + def avatar_url(self) -> str: + try: + return self.avatar.url + except ValueError: + return static("person.png") def add_to_recently_viewed(self, product_uuid): recently_viewed = self.recently_viewed From 09fdc7a585910bda9cc71f4250711fb2d08f47a0 Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Wed, 10 Dec 2025 21:51:41 +0300 Subject: [PATCH 4/8] Extra: 1) I18N --- .../blog/locale/ar_AR/LC_MESSAGES/django.po | 2 +- .../blog/locale/cs_CZ/LC_MESSAGES/django.po | 2 +- .../blog/locale/da_DK/LC_MESSAGES/django.po | 2 +- .../blog/locale/de_DE/LC_MESSAGES/django.po | 2 +- .../blog/locale/en_GB/LC_MESSAGES/django.po | 2 +- .../blog/locale/en_US/LC_MESSAGES/django.po | 2 +- .../blog/locale/es_ES/LC_MESSAGES/django.po | 2 +- .../blog/locale/fa_IR/LC_MESSAGES/django.po | 2 +- .../blog/locale/fr_FR/LC_MESSAGES/django.po | 2 +- .../blog/locale/he_IL/LC_MESSAGES/django.po | 2 +- .../blog/locale/hi_IN/LC_MESSAGES/django.po | 2 +- .../blog/locale/hr_HR/LC_MESSAGES/django.po | 2 +- .../blog/locale/id_ID/LC_MESSAGES/django.po | 2 +- .../blog/locale/it_IT/LC_MESSAGES/django.po | 2 +- .../blog/locale/ja_JP/LC_MESSAGES/django.po | 2 +- .../blog/locale/kk_KZ/LC_MESSAGES/django.po | 2 +- .../blog/locale/ko_KR/LC_MESSAGES/django.po | 2 +- .../blog/locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../blog/locale/no_NO/LC_MESSAGES/django.po | 2 +- .../blog/locale/pl_PL/LC_MESSAGES/django.po | 2 +- .../blog/locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../blog/locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../blog/locale/ru_RU/LC_MESSAGES/django.po | 2 +- .../blog/locale/sv_SE/LC_MESSAGES/django.po | 2 +- .../blog/locale/th_TH/LC_MESSAGES/django.po | 2 +- .../blog/locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../blog/locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../blog/locale/zh_Hans/LC_MESSAGES/django.po | 2 +- .../core/locale/ar_AR/LC_MESSAGES/django.mo | Bin 108151 -> 108168 bytes .../core/locale/ar_AR/LC_MESSAGES/django.po | 417 +++++----- .../core/locale/cs_CZ/LC_MESSAGES/django.mo | Bin 92583 -> 92631 bytes .../core/locale/cs_CZ/LC_MESSAGES/django.po | 371 ++++----- .../core/locale/da_DK/LC_MESSAGES/django.mo | Bin 90354 -> 90389 bytes .../core/locale/da_DK/LC_MESSAGES/django.po | 419 +++++----- .../core/locale/de_DE/LC_MESSAGES/django.mo | Bin 95595 -> 95649 bytes .../core/locale/de_DE/LC_MESSAGES/django.po | 523 ++++++------- .../core/locale/en_GB/LC_MESSAGES/django.mo | Bin 87054 -> 87078 bytes .../core/locale/en_GB/LC_MESSAGES/django.po | 384 +++++----- .../core/locale/en_US/LC_MESSAGES/django.mo | Bin 87045 -> 87069 bytes .../core/locale/en_US/LC_MESSAGES/django.po | 381 +++++----- .../core/locale/es_ES/LC_MESSAGES/django.mo | Bin 93568 -> 93612 bytes .../core/locale/es_ES/LC_MESSAGES/django.po | 438 +++++------ .../core/locale/fa_IR/LC_MESSAGES/django.po | 85 ++- .../core/locale/fr_FR/LC_MESSAGES/django.mo | Bin 96396 -> 96446 bytes .../core/locale/fr_FR/LC_MESSAGES/django.po | 489 ++++++------ .../core/locale/he_IL/LC_MESSAGES/django.mo | Bin 100755 -> 100766 bytes .../core/locale/he_IL/LC_MESSAGES/django.po | 375 ++++----- .../core/locale/hi_IN/LC_MESSAGES/django.po | 85 ++- .../core/locale/hr_HR/LC_MESSAGES/django.po | 85 ++- .../core/locale/id_ID/LC_MESSAGES/django.mo | Bin 90603 -> 90644 bytes .../core/locale/id_ID/LC_MESSAGES/django.po | 409 +++++----- .../core/locale/it_IT/LC_MESSAGES/django.mo | Bin 93881 -> 93928 bytes .../core/locale/it_IT/LC_MESSAGES/django.po | 494 ++++++------ .../core/locale/ja_JP/LC_MESSAGES/django.mo | Bin 99174 -> 99212 bytes .../core/locale/ja_JP/LC_MESSAGES/django.po | 695 +++++++---------- .../core/locale/kk_KZ/LC_MESSAGES/django.po | 85 ++- .../core/locale/ko_KR/LC_MESSAGES/django.mo | Bin 93749 -> 93799 bytes .../core/locale/ko_KR/LC_MESSAGES/django.po | 638 +++++++--------- .../core/locale/nl_NL/LC_MESSAGES/django.mo | Bin 93423 -> 93461 bytes .../core/locale/nl_NL/LC_MESSAGES/django.po | 428 +++++------ .../core/locale/no_NO/LC_MESSAGES/django.mo | Bin 90985 -> 91027 bytes .../core/locale/no_NO/LC_MESSAGES/django.po | 454 +++++------ .../core/locale/pl_PL/LC_MESSAGES/django.mo | Bin 92714 -> 92766 bytes .../core/locale/pl_PL/LC_MESSAGES/django.po | 373 ++++----- .../core/locale/pt_BR/LC_MESSAGES/django.mo | Bin 93309 -> 93350 bytes .../core/locale/pt_BR/LC_MESSAGES/django.po | 431 +++++------ .../core/locale/ro_RO/LC_MESSAGES/django.mo | Bin 95177 -> 95219 bytes .../core/locale/ro_RO/LC_MESSAGES/django.po | 440 +++++------ .../core/locale/ru_RU/LC_MESSAGES/django.mo | Bin 123230 -> 123296 bytes .../core/locale/ru_RU/LC_MESSAGES/django.po | 397 +++++----- .../core/locale/sv_SE/LC_MESSAGES/django.mo | Bin 91057 -> 91099 bytes .../core/locale/sv_SE/LC_MESSAGES/django.po | 421 +++++----- .../core/locale/th_TH/LC_MESSAGES/django.mo | Bin 147225 -> 147212 bytes .../core/locale/th_TH/LC_MESSAGES/django.po | 716 ++++++++++-------- .../core/locale/tr_TR/LC_MESSAGES/django.mo | Bin 93403 -> 93444 bytes .../core/locale/tr_TR/LC_MESSAGES/django.po | 428 +++++------ .../core/locale/vi_VN/LC_MESSAGES/django.mo | Bin 105141 -> 105260 bytes .../core/locale/vi_VN/LC_MESSAGES/django.po | 520 ++++++------- .../core/locale/zh_Hans/LC_MESSAGES/django.mo | Bin 82042 -> 82054 bytes .../core/locale/zh_Hans/LC_MESSAGES/django.po | 472 +++++------- .../locale/ar_AR/LC_MESSAGES/django.po | 26 +- .../locale/cs_CZ/LC_MESSAGES/django.po | 27 +- .../locale/da_DK/LC_MESSAGES/django.po | 30 +- .../locale/de_DE/LC_MESSAGES/django.po | 36 +- .../locale/en_GB/LC_MESSAGES/django.po | 24 +- .../locale/en_US/LC_MESSAGES/django.po | 24 +- .../locale/es_ES/LC_MESSAGES/django.po | 35 +- .../locale/fa_IR/LC_MESSAGES/django.po | 2 +- .../locale/fr_FR/LC_MESSAGES/django.po | 37 +- .../locale/he_IL/LC_MESSAGES/django.po | 24 +- .../locale/hi_IN/LC_MESSAGES/django.po | 2 +- .../locale/hr_HR/LC_MESSAGES/django.po | 2 +- .../locale/id_ID/LC_MESSAGES/django.po | 31 +- .../locale/it_IT/LC_MESSAGES/django.po | 34 +- .../locale/ja_JP/LC_MESSAGES/django.po | 35 +- .../locale/kk_KZ/LC_MESSAGES/django.po | 2 +- .../locale/ko_KR/LC_MESSAGES/django.po | 35 +- .../locale/nl_NL/LC_MESSAGES/django.po | 27 +- .../locale/no_NO/LC_MESSAGES/django.po | 32 +- .../locale/pl_PL/LC_MESSAGES/django.po | 32 +- .../locale/pt_BR/LC_MESSAGES/django.po | 28 +- .../locale/ro_RO/LC_MESSAGES/django.po | 32 +- .../locale/ru_RU/LC_MESSAGES/django.po | 34 +- .../locale/sv_SE/LC_MESSAGES/django.po | 28 +- .../locale/th_TH/LC_MESSAGES/django.po | 36 +- .../locale/tr_TR/LC_MESSAGES/django.po | 27 +- .../locale/vi_VN/LC_MESSAGES/django.po | 26 +- .../locale/zh_Hans/LC_MESSAGES/django.po | 26 +- .../locale/ar_AR/LC_MESSAGES/django.po | 86 +-- .../locale/cs_CZ/LC_MESSAGES/django.po | 86 +-- .../locale/da_DK/LC_MESSAGES/django.po | 86 +-- .../locale/de_DE/LC_MESSAGES/django.po | 86 +-- .../locale/en_GB/LC_MESSAGES/django.po | 86 +-- .../locale/en_US/LC_MESSAGES/django.po | 86 +-- .../locale/es_ES/LC_MESSAGES/django.po | 86 +-- .../locale/fa_IR/LC_MESSAGES/django.po | 86 +-- .../locale/fr_FR/LC_MESSAGES/django.po | 86 +-- .../locale/he_IL/LC_MESSAGES/django.po | 86 +-- .../locale/hi_IN/LC_MESSAGES/django.po | 86 +-- .../locale/hr_HR/LC_MESSAGES/django.po | 86 +-- .../locale/id_ID/LC_MESSAGES/django.po | 86 +-- .../locale/it_IT/LC_MESSAGES/django.po | 86 +-- .../locale/ja_JP/LC_MESSAGES/django.po | 86 +-- .../locale/kk_KZ/LC_MESSAGES/django.po | 86 +-- .../locale/ko_KR/LC_MESSAGES/django.po | 86 +-- .../locale/nl_NL/LC_MESSAGES/django.po | 86 +-- .../locale/no_NO/LC_MESSAGES/django.po | 86 +-- .../locale/pl_PL/LC_MESSAGES/django.po | 86 +-- .../locale/pt_BR/LC_MESSAGES/django.po | 86 +-- .../locale/ro_RO/LC_MESSAGES/django.po | 86 +-- .../locale/ru_RU/LC_MESSAGES/django.po | 86 +-- .../locale/sv_SE/LC_MESSAGES/django.po | 86 +-- .../locale/th_TH/LC_MESSAGES/django.po | 86 +-- .../locale/tr_TR/LC_MESSAGES/django.po | 86 +-- .../locale/vi_VN/LC_MESSAGES/django.po | 86 +-- .../locale/zh_Hans/LC_MESSAGES/django.po | 86 +-- evibes/locale/ar_AR/LC_MESSAGES/django.mo | Bin 10512 -> 10547 bytes evibes/locale/ar_AR/LC_MESSAGES/django.po | 64 +- evibes/locale/cs_CZ/LC_MESSAGES/django.mo | Bin 9003 -> 9041 bytes evibes/locale/cs_CZ/LC_MESSAGES/django.po | 64 +- evibes/locale/da_DK/LC_MESSAGES/django.mo | Bin 8694 -> 8733 bytes evibes/locale/da_DK/LC_MESSAGES/django.po | 64 +- evibes/locale/de_DE/LC_MESSAGES/django.mo | Bin 9160 -> 9198 bytes evibes/locale/de_DE/LC_MESSAGES/django.po | 64 +- evibes/locale/en_GB/LC_MESSAGES/django.mo | Bin 8551 -> 8583 bytes evibes/locale/en_GB/LC_MESSAGES/django.po | 64 +- evibes/locale/en_US/LC_MESSAGES/django.mo | Bin 8555 -> 8587 bytes evibes/locale/en_US/LC_MESSAGES/django.po | 64 +- evibes/locale/es_ES/LC_MESSAGES/django.mo | Bin 9211 -> 9244 bytes evibes/locale/es_ES/LC_MESSAGES/django.po | 64 +- evibes/locale/fa_IR/LC_MESSAGES/django.po | 64 +- evibes/locale/fr_FR/LC_MESSAGES/django.mo | Bin 9479 -> 9512 bytes evibes/locale/fr_FR/LC_MESSAGES/django.po | 64 +- evibes/locale/he_IL/LC_MESSAGES/django.mo | Bin 9834 -> 9874 bytes evibes/locale/he_IL/LC_MESSAGES/django.po | 64 +- evibes/locale/hi_IN/LC_MESSAGES/django.po | 64 +- evibes/locale/hr_HR/LC_MESSAGES/django.po | 64 +- evibes/locale/id_ID/LC_MESSAGES/django.mo | Bin 8736 -> 8771 bytes evibes/locale/id_ID/LC_MESSAGES/django.po | 64 +- evibes/locale/it_IT/LC_MESSAGES/django.mo | Bin 9123 -> 9159 bytes evibes/locale/it_IT/LC_MESSAGES/django.po | 64 +- evibes/locale/ja_JP/LC_MESSAGES/django.mo | Bin 9533 -> 9573 bytes evibes/locale/ja_JP/LC_MESSAGES/django.po | 64 +- evibes/locale/kk_KZ/LC_MESSAGES/django.po | 64 +- evibes/locale/ko_KR/LC_MESSAGES/django.mo | Bin 8937 -> 8975 bytes evibes/locale/ko_KR/LC_MESSAGES/django.po | 64 +- evibes/locale/nl_NL/LC_MESSAGES/django.mo | Bin 8835 -> 8869 bytes evibes/locale/nl_NL/LC_MESSAGES/django.po | 64 +- evibes/locale/no_NO/LC_MESSAGES/django.mo | Bin 8758 -> 8791 bytes evibes/locale/no_NO/LC_MESSAGES/django.po | 64 +- evibes/locale/pl_PL/LC_MESSAGES/django.mo | Bin 9077 -> 9113 bytes evibes/locale/pl_PL/LC_MESSAGES/django.po | 64 +- evibes/locale/pt_BR/LC_MESSAGES/django.mo | Bin 9150 -> 9183 bytes evibes/locale/pt_BR/LC_MESSAGES/django.po | 64 +- evibes/locale/ro_RO/LC_MESSAGES/django.mo | Bin 9201 -> 9237 bytes evibes/locale/ro_RO/LC_MESSAGES/django.po | 64 +- evibes/locale/ru_RU/LC_MESSAGES/django.mo | Bin 11607 -> 11647 bytes evibes/locale/ru_RU/LC_MESSAGES/django.po | 64 +- evibes/locale/sv_SE/LC_MESSAGES/django.mo | Bin 8842 -> 8880 bytes evibes/locale/sv_SE/LC_MESSAGES/django.po | 64 +- evibes/locale/th_TH/LC_MESSAGES/django.mo | Bin 13375 -> 13442 bytes evibes/locale/th_TH/LC_MESSAGES/django.po | 64 +- evibes/locale/tr_TR/LC_MESSAGES/django.mo | Bin 9181 -> 9217 bytes evibes/locale/tr_TR/LC_MESSAGES/django.po | 64 +- evibes/locale/vi_VN/LC_MESSAGES/django.mo | Bin 9748 -> 9793 bytes evibes/locale/vi_VN/LC_MESSAGES/django.po | 64 +- evibes/locale/zh_Hans/LC_MESSAGES/django.mo | Bin 8268 -> 8305 bytes evibes/locale/zh_Hans/LC_MESSAGES/django.po | 64 +- 188 files changed, 8357 insertions(+), 8086 deletions(-) diff --git a/engine/blog/locale/ar_AR/LC_MESSAGES/django.po b/engine/blog/locale/ar_AR/LC_MESSAGES/django.po index 1537132c..2118c458 100644 --- a/engine/blog/locale/ar_AR/LC_MESSAGES/django.po +++ b/engine/blog/locale/ar_AR/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" diff --git a/engine/blog/locale/cs_CZ/LC_MESSAGES/django.po b/engine/blog/locale/cs_CZ/LC_MESSAGES/django.po index 55653549..d5a4755b 100644 --- a/engine/blog/locale/cs_CZ/LC_MESSAGES/django.po +++ b/engine/blog/locale/cs_CZ/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" diff --git a/engine/blog/locale/da_DK/LC_MESSAGES/django.po b/engine/blog/locale/da_DK/LC_MESSAGES/django.po index 585cf553..c5fe897d 100644 --- a/engine/blog/locale/da_DK/LC_MESSAGES/django.po +++ b/engine/blog/locale/da_DK/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" diff --git a/engine/blog/locale/de_DE/LC_MESSAGES/django.po b/engine/blog/locale/de_DE/LC_MESSAGES/django.po index 4c60bfdb..e840da7e 100644 --- a/engine/blog/locale/de_DE/LC_MESSAGES/django.po +++ b/engine/blog/locale/de_DE/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" diff --git a/engine/blog/locale/en_GB/LC_MESSAGES/django.po b/engine/blog/locale/en_GB/LC_MESSAGES/django.po index 548a7ca4..50d13e54 100644 --- a/engine/blog/locale/en_GB/LC_MESSAGES/django.po +++ b/engine/blog/locale/en_GB/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" diff --git a/engine/blog/locale/en_US/LC_MESSAGES/django.po b/engine/blog/locale/en_US/LC_MESSAGES/django.po index 15805731..5db6bbf7 100644 --- a/engine/blog/locale/en_US/LC_MESSAGES/django.po +++ b/engine/blog/locale/en_US/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" diff --git a/engine/blog/locale/es_ES/LC_MESSAGES/django.po b/engine/blog/locale/es_ES/LC_MESSAGES/django.po index 36282eb1..977d1495 100644 --- a/engine/blog/locale/es_ES/LC_MESSAGES/django.po +++ b/engine/blog/locale/es_ES/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" diff --git a/engine/blog/locale/fa_IR/LC_MESSAGES/django.po b/engine/blog/locale/fa_IR/LC_MESSAGES/django.po index f283d226..1802ee62 100644 --- a/engine/blog/locale/fa_IR/LC_MESSAGES/django.po +++ b/engine/blog/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-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/engine/blog/locale/fr_FR/LC_MESSAGES/django.po b/engine/blog/locale/fr_FR/LC_MESSAGES/django.po index 51963b16..3bf88282 100644 --- a/engine/blog/locale/fr_FR/LC_MESSAGES/django.po +++ b/engine/blog/locale/fr_FR/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" diff --git a/engine/blog/locale/he_IL/LC_MESSAGES/django.po b/engine/blog/locale/he_IL/LC_MESSAGES/django.po index 9c5def44..5bbf4749 100644 --- a/engine/blog/locale/he_IL/LC_MESSAGES/django.po +++ b/engine/blog/locale/he_IL/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" diff --git a/engine/blog/locale/hi_IN/LC_MESSAGES/django.po b/engine/blog/locale/hi_IN/LC_MESSAGES/django.po index 745de938..87b24f87 100644 --- a/engine/blog/locale/hi_IN/LC_MESSAGES/django.po +++ b/engine/blog/locale/hi_IN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" diff --git a/engine/blog/locale/hr_HR/LC_MESSAGES/django.po b/engine/blog/locale/hr_HR/LC_MESSAGES/django.po index f283d226..1802ee62 100644 --- a/engine/blog/locale/hr_HR/LC_MESSAGES/django.po +++ b/engine/blog/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-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/engine/blog/locale/id_ID/LC_MESSAGES/django.po b/engine/blog/locale/id_ID/LC_MESSAGES/django.po index 012eec9c..d4a10394 100644 --- a/engine/blog/locale/id_ID/LC_MESSAGES/django.po +++ b/engine/blog/locale/id_ID/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" diff --git a/engine/blog/locale/it_IT/LC_MESSAGES/django.po b/engine/blog/locale/it_IT/LC_MESSAGES/django.po index e618f0cb..53de0228 100644 --- a/engine/blog/locale/it_IT/LC_MESSAGES/django.po +++ b/engine/blog/locale/it_IT/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" diff --git a/engine/blog/locale/ja_JP/LC_MESSAGES/django.po b/engine/blog/locale/ja_JP/LC_MESSAGES/django.po index f3ae8819..3d91f551 100644 --- a/engine/blog/locale/ja_JP/LC_MESSAGES/django.po +++ b/engine/blog/locale/ja_JP/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" diff --git a/engine/blog/locale/kk_KZ/LC_MESSAGES/django.po b/engine/blog/locale/kk_KZ/LC_MESSAGES/django.po index 745de938..87b24f87 100644 --- a/engine/blog/locale/kk_KZ/LC_MESSAGES/django.po +++ b/engine/blog/locale/kk_KZ/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" diff --git a/engine/blog/locale/ko_KR/LC_MESSAGES/django.po b/engine/blog/locale/ko_KR/LC_MESSAGES/django.po index 3ac6fb31..c1e50f04 100644 --- a/engine/blog/locale/ko_KR/LC_MESSAGES/django.po +++ b/engine/blog/locale/ko_KR/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" diff --git a/engine/blog/locale/nl_NL/LC_MESSAGES/django.po b/engine/blog/locale/nl_NL/LC_MESSAGES/django.po index 2cd51f26..4f5d83b9 100644 --- a/engine/blog/locale/nl_NL/LC_MESSAGES/django.po +++ b/engine/blog/locale/nl_NL/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" diff --git a/engine/blog/locale/no_NO/LC_MESSAGES/django.po b/engine/blog/locale/no_NO/LC_MESSAGES/django.po index ef4c36c1..9b97fdd2 100644 --- a/engine/blog/locale/no_NO/LC_MESSAGES/django.po +++ b/engine/blog/locale/no_NO/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" diff --git a/engine/blog/locale/pl_PL/LC_MESSAGES/django.po b/engine/blog/locale/pl_PL/LC_MESSAGES/django.po index 9ab4852e..cef7d647 100644 --- a/engine/blog/locale/pl_PL/LC_MESSAGES/django.po +++ b/engine/blog/locale/pl_PL/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" diff --git a/engine/blog/locale/pt_BR/LC_MESSAGES/django.po b/engine/blog/locale/pt_BR/LC_MESSAGES/django.po index 7155f6e4..80a9fcab 100644 --- a/engine/blog/locale/pt_BR/LC_MESSAGES/django.po +++ b/engine/blog/locale/pt_BR/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" diff --git a/engine/blog/locale/ro_RO/LC_MESSAGES/django.po b/engine/blog/locale/ro_RO/LC_MESSAGES/django.po index d326b4aa..82f68227 100644 --- a/engine/blog/locale/ro_RO/LC_MESSAGES/django.po +++ b/engine/blog/locale/ro_RO/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" diff --git a/engine/blog/locale/ru_RU/LC_MESSAGES/django.po b/engine/blog/locale/ru_RU/LC_MESSAGES/django.po index 90683c69..e75c3ff4 100644 --- a/engine/blog/locale/ru_RU/LC_MESSAGES/django.po +++ b/engine/blog/locale/ru_RU/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" diff --git a/engine/blog/locale/sv_SE/LC_MESSAGES/django.po b/engine/blog/locale/sv_SE/LC_MESSAGES/django.po index b46f382f..97ae7afc 100644 --- a/engine/blog/locale/sv_SE/LC_MESSAGES/django.po +++ b/engine/blog/locale/sv_SE/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" diff --git a/engine/blog/locale/th_TH/LC_MESSAGES/django.po b/engine/blog/locale/th_TH/LC_MESSAGES/django.po index 8605b7e6..fc069214 100644 --- a/engine/blog/locale/th_TH/LC_MESSAGES/django.po +++ b/engine/blog/locale/th_TH/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" diff --git a/engine/blog/locale/tr_TR/LC_MESSAGES/django.po b/engine/blog/locale/tr_TR/LC_MESSAGES/django.po index 585fa91a..c485516b 100644 --- a/engine/blog/locale/tr_TR/LC_MESSAGES/django.po +++ b/engine/blog/locale/tr_TR/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" diff --git a/engine/blog/locale/vi_VN/LC_MESSAGES/django.po b/engine/blog/locale/vi_VN/LC_MESSAGES/django.po index 6b571f24..060ab9e0 100644 --- a/engine/blog/locale/vi_VN/LC_MESSAGES/django.po +++ b/engine/blog/locale/vi_VN/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" diff --git a/engine/blog/locale/zh_Hans/LC_MESSAGES/django.po b/engine/blog/locale/zh_Hans/LC_MESSAGES/django.po index d6f54882..e190b359 100644 --- a/engine/blog/locale/zh_Hans/LC_MESSAGES/django.po +++ b/engine/blog/locale/zh_Hans/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" diff --git a/engine/core/locale/ar_AR/LC_MESSAGES/django.mo b/engine/core/locale/ar_AR/LC_MESSAGES/django.mo index 99939ca2e6a8793fa2bc5e65d6935003507cb64c..968d255e6116755a482a66c3999aef067994547c 100644 GIT binary patch delta 14933 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 delta 14955 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 un@iZifjWF<#sHHDCH\n" "Language-Team: BRITISH ENGLISH \n" @@ -27,7 +27,8 @@ msgstr "نشط" #: 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 "" "إذا تم تعيينه على خطأ، لا يمكن للمستخدمين رؤية هذا الكائن دون الحاجة إلى إذن" @@ -153,7 +154,8 @@ msgstr "تم التسليم" msgid "canceled" msgstr "تم الإلغاء" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "فشل" @@ -191,9 +193,9 @@ msgid "" "negotiation. Language can be selected with Accept-Language and query " "parameter both." msgstr "" -"مخطط OpenApi3 لواجهة برمجة التطبيقات هذه. يمكن تحديد التنسيق عبر التفاوض على " -"المحتوى. يمكن تحديد اللغة باستخدام معلمة قبول اللغة ومعلمة الاستعلام على حد " -"سواء." +"مخطط OpenApi3 لواجهة برمجة التطبيقات هذه. يمكن تحديد التنسيق عبر التفاوض على" +" المحتوى. يمكن تحديد اللغة باستخدام معلمة قبول اللغة ومعلمة الاستعلام على حد" +" سواء." #: engine/core/docs/drf/views.py:44 engine/core/graphene/mutations.py:37 msgid "cache I/O" @@ -205,8 +207,7 @@ msgid "" "apply key, data and timeout with authentication to write data to cache." msgstr "" "تطبيق مفتاح فقط لقراءة البيانات المسموح بها من ذاكرة التخزين المؤقت.\n" -"تطبيق مفتاح وبيانات ومهلة مع المصادقة لكتابة البيانات إلى ذاكرة التخزين " -"المؤقت." +"تطبيق مفتاح وبيانات ومهلة مع المصادقة لكتابة البيانات إلى ذاكرة التخزين المؤقت." #: engine/core/docs/drf/views.py:62 msgid "get a list of supported languages" @@ -269,7 +270,8 @@ msgid "rewrite an existing attribute group saving non-editables" msgstr "إعادة كتابة مجموعة سمات موجودة تحفظ غير القابلة للتعديل" #: engine/core/docs/drf/viewsets.py:96 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "إعادة كتابة بعض حقول مجموعة سمات موجودة تحفظ غير القابلة للتعديل" #: engine/core/docs/drf/viewsets.py:106 @@ -317,7 +319,8 @@ msgid "rewrite an existing attribute value saving non-editables" msgstr "إعادة كتابة قيمة سمة موجودة تحفظ غير القابلة للتعديل" #: engine/core/docs/drf/viewsets.py:186 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "إعادة كتابة بعض حقول قيمة سمة موجودة حفظ غير قابل للتعديل" #: engine/core/docs/drf/viewsets.py:196 engine/core/docs/drf/viewsets.py:197 @@ -370,8 +373,8 @@ msgstr "بالنسبة للمستخدمين من غير الموظفين، يت #: engine/core/docs/drf/viewsets.py:281 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" "البحث في سلسلة فرعية غير حساسة لحالة الأحرف عبر human_readable_id و " "order_products.product.name و order_products.product.partnumber" @@ -407,9 +410,9 @@ msgstr "تصفية حسب حالة الطلب (مطابقة سلسلة فرعي #: engine/core/docs/drf/viewsets.py:324 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "الترتيب حسب واحد من: uuid، معرف_بشري_مقروء، بريد_إلكتروني_مستخدم، مستخدم، " "حالة، إنشاء، تعديل، وقت_الشراء، عشوائي. البادئة بحرف \"-\" للترتيب التنازلي " @@ -491,7 +494,8 @@ msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." msgstr "" -"يضيف قائمة من المنتجات إلى طلب باستخدام \"معرّف_المنتج\" و\"السمات\" المتوفرة." +"يضيف قائمة من المنتجات إلى طلب باستخدام \"معرّف_المنتج\" و\"السمات\" " +"المتوفرة." #: engine/core/docs/drf/viewsets.py:438 msgid "remove product from order" @@ -501,8 +505,7 @@ msgstr "إزالة منتج من الطلب" msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." -msgstr "" -"يزيل منتجًا من أحد الطلبات باستخدام \"معرّف_المنتج\" و\"السمات\" المتوفرة." +msgstr "يزيل منتجًا من أحد الطلبات باستخدام \"معرّف_المنتج\" و\"السمات\" المتوفرة." #: engine/core/docs/drf/viewsets.py:447 msgid "remove product from order, quantities will not count" @@ -596,32 +599,20 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "تصفية حسب زوج واحد أو أكثر من أسماء/قيم السمات. \n" "- **صيغة**: `attr_name=الطريقة-القيمة[ ؛ attr2=الطريقة2-القيمة2]...`\n" -"- **الأساليب** (افتراضيًا إلى \"يحتوي على\" إذا تم حذفها): \"بالضبط\"، " -"\"بالضبط\"، \"بالضبط\"، \"يحتوي\"، \"يحتوي\"، \"لاغية\"، \"يبدأ ب\"، \"يبدأ " -"ب\"، \"يبدأ ب\"، \"ينتهي ب\"، \"ينتهي ب\"، \"regex\"، \"iregex\"، \"lt\"، " -"\"lte\"، \"gt\"، \"gte\"، \"in\n" -"- **كتابة القيمة**: تتم تجربة JSON أولًا (حتى تتمكن من تمرير القوائم/" -"المجادلات)، \"صحيح\"/\"خطأ\" للمنطقيين والأعداد الصحيحة والعوامات؛ وإلا يتم " -"التعامل معها كسلسلة. \n" -"- **القاعدة 64**: البادئة ب \"b64-\" لتشفير القيمة الخام بأمان لقاعدة 64- " -"لتشفير القيمة الخام. \n" +"- **الأساليب** (افتراضيًا إلى \"يحتوي على\" إذا تم حذفها): \"بالضبط\"، \"بالضبط\"، \"بالضبط\"، \"يحتوي\"، \"يحتوي\"، \"لاغية\"، \"يبدأ ب\"، \"يبدأ ب\"، \"يبدأ ب\"، \"ينتهي ب\"، \"ينتهي ب\"، \"regex\"، \"iregex\"، \"lt\"، \"lte\"، \"gt\"، \"gte\"، \"in\n" +"- **كتابة القيمة**: تتم تجربة JSON أولًا (حتى تتمكن من تمرير القوائم/المجادلات)، \"صحيح\"/\"خطأ\" للمنطقيين والأعداد الصحيحة والعوامات؛ وإلا يتم التعامل معها كسلسلة. \n" +"- **القاعدة 64**: البادئة ب \"b64-\" لتشفير القيمة الخام بأمان لقاعدة 64- لتشفير القيمة الخام. \n" "أمثلة: \n" -"'color=exact-red'، 'size=gt-10'، 'features=in-[\"wifi\"،\"bluetooth\"]، " -"'fatures=in-[\"wifi\",\"bluetooth\"],\n" +"'color=exact-red'، 'size=gt-10'، 'features=in-[\"wifi\"،\"bluetooth\"]، 'fatures=in-[\"wifi\",\"bluetooth\"],\n" "\"b64-description=icontains-aGVhdC1jb2xk" #: engine/core/docs/drf/viewsets.py:568 engine/core/docs/drf/viewsets.py:569 @@ -634,8 +625,7 @@ msgstr "(بالضبط) UUID المنتج" #: engine/core/docs/drf/viewsets.py:581 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" @@ -1094,7 +1084,7 @@ msgstr "البيانات المخزنة مؤقتاً" msgid "camelized JSON data from the requested URL" msgstr "بيانات JSON مجمّلة من عنوان URL المطلوب" -#: engine/core/graphene/mutations.py:67 engine/core/views.py:256 +#: engine/core/graphene/mutations.py:67 engine/core/views.py:257 msgid "only URLs starting with http(s):// are allowed" msgstr "يُسمح فقط بعناوين URL التي تبدأ ب http(s)://" @@ -1178,8 +1168,8 @@ msgstr "شراء طلبية" #: engine/core/graphene/mutations.py:516 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "الرجاء إرسال السمات كسلسلة منسقة مثل attr1=قيمة1، attr2=قيمة2" #: engine/core/graphene/mutations.py:549 @@ -1254,7 +1244,8 @@ msgid "which attributes and values can be used for filtering this category." msgstr "ما هي السمات والقيم التي يمكن استخدامها لتصفية هذه الفئة." #: engine/core/graphene/object_types.py:203 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" "الحد الأدنى والحد الأقصى لأسعار المنتجات في هذه الفئة، إذا كانت متوفرة." @@ -1466,8 +1457,8 @@ msgstr "رقم هاتف الشركة" #: engine/core/graphene/object_types.py:680 msgid "email from, sometimes it must be used instead of host user value" msgstr "" -"\"البريد الإلكتروني من\"، في بعض الأحيان يجب استخدامه بدلاً من قيمة المستخدم " -"المضيف" +"\"البريد الإلكتروني من\"، في بعض الأحيان يجب استخدامه بدلاً من قيمة المستخدم" +" المضيف" #: engine/core/graphene/object_types.py:681 msgid "email host user" @@ -1561,8 +1552,8 @@ msgstr "" "تفاعلهم. يتم استخدام فئة البائع لتعريف وإدارة المعلومات المتعلقة ببائع " "خارجي. وهو يخزن اسم البائع، وتفاصيل المصادقة المطلوبة للاتصال، والنسبة " "المئوية للترميز المطبقة على المنتجات المسترجعة من البائع. يحتفظ هذا النموذج " -"أيضًا ببيانات وصفية وقيود إضافية، مما يجعله مناسبًا للاستخدام في الأنظمة التي " -"تتفاعل مع البائعين الخارجيين." +"أيضًا ببيانات وصفية وقيود إضافية، مما يجعله مناسبًا للاستخدام في الأنظمة " +"التي تتفاعل مع البائعين الخارجيين." #: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" @@ -1615,9 +1606,9 @@ msgid "" "metadata customization for administrative purposes." msgstr "" "يمثل علامة منتج تُستخدم لتصنيف المنتجات أو تعريفها. صُممت فئة ProductTag " -"لتعريف المنتجات وتصنيفها بشكل فريد من خلال مزيج من معرّف علامة داخلي واسم عرض " -"سهل الاستخدام. وهي تدعم العمليات التي يتم تصديرها من خلال mixins وتوفر تخصيص " -"البيانات الوصفية لأغراض إدارية." +"لتعريف المنتجات وتصنيفها بشكل فريد من خلال مزيج من معرّف علامة داخلي واسم " +"عرض سهل الاستخدام. وهي تدعم العمليات التي يتم تصديرها من خلال mixins وتوفر " +"تخصيص البيانات الوصفية لأغراض إدارية." #: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" @@ -1645,8 +1636,8 @@ msgid "" "tag that can be used to associate and classify products. It includes " "attributes for an internal tag identifier and a user-friendly display name." msgstr "" -"يمثل علامة فئة تستخدم للمنتجات. تمثل هذه الفئة علامة فئة يمكن استخدامها لربط " -"المنتجات وتصنيفها. وهي تتضمن سمات لمعرف علامة داخلي واسم عرض سهل الاستخدام." +"يمثل علامة فئة تستخدم للمنتجات. تمثل هذه الفئة علامة فئة يمكن استخدامها لربط" +" المنتجات وتصنيفها. وهي تتضمن سمات لمعرف علامة داخلي واسم عرض سهل الاستخدام." #: engine/core/models.py:254 msgid "category tag" @@ -1672,9 +1663,9 @@ msgstr "" "علاقات هرمية مع فئات أخرى، مما يدعم العلاقات بين الأصل والطفل. تتضمن الفئة " "حقول للبيانات الوصفية والتمثيل المرئي، والتي تعمل كأساس للميزات المتعلقة " "بالفئات. تُستخدم هذه الفئة عادةً لتعريف وإدارة فئات المنتجات أو غيرها من " -"التجميعات المماثلة داخل التطبيق، مما يسمح للمستخدمين أو المسؤولين بتحديد اسم " -"الفئات ووصفها وتسلسلها الهرمي، بالإضافة إلى تعيين سمات مثل الصور أو العلامات " -"أو الأولوية." +"التجميعات المماثلة داخل التطبيق، مما يسمح للمستخدمين أو المسؤولين بتحديد اسم" +" الفئات ووصفها وتسلسلها الهرمي، بالإضافة إلى تعيين سمات مثل الصور أو " +"العلامات أو الأولوية." #: engine/core/models.py:274 msgid "upload an image representing this category" @@ -1725,7 +1716,8 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" "يمثل كائن العلامة التجارية في النظام. تتعامل هذه الفئة مع المعلومات والسمات " "المتعلقة بالعلامة التجارية، بما في ذلك اسمها وشعاراتها ووصفها والفئات " @@ -1774,8 +1766,8 @@ msgstr "الفئات" #: engine/core/models.py:508 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 " @@ -1865,10 +1857,10 @@ msgid "" msgstr "" "يمثل منتجًا بخصائص مثل الفئة والعلامة التجارية والعلامات والحالة الرقمية " "والاسم والوصف ورقم الجزء والعلامة التجارية والحالة الرقمية والاسم والوصف " -"ورقم الجزء والسبيكة. يوفر خصائص الأداة المساعدة ذات الصلة لاسترداد التقييمات " -"وعدد الملاحظات والسعر والكمية وإجمالي الطلبات. مصمم للاستخدام في نظام يتعامل " -"مع التجارة الإلكترونية أو إدارة المخزون. تتفاعل هذه الفئة مع النماذج ذات " -"الصلة (مثل الفئة والعلامة التجارية وعلامة المنتج) وتدير التخزين المؤقت " +"ورقم الجزء والسبيكة. يوفر خصائص الأداة المساعدة ذات الصلة لاسترداد التقييمات" +" وعدد الملاحظات والسعر والكمية وإجمالي الطلبات. مصمم للاستخدام في نظام " +"يتعامل مع التجارة الإلكترونية أو إدارة المخزون. تتفاعل هذه الفئة مع النماذج " +"ذات الصلة (مثل الفئة والعلامة التجارية وعلامة المنتج) وتدير التخزين المؤقت " "للخصائص التي يتم الوصول إليها بشكل متكرر لتحسين الأداء. يتم استخدامه لتعريف " "ومعالجة بيانات المنتج والمعلومات المرتبطة به داخل التطبيق." @@ -1925,8 +1917,8 @@ 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 "" "يمثل سمة في النظام. تُستخدم هذه الفئة لتعريف السمات وإدارتها، وهي عبارة عن " @@ -1994,9 +1986,9 @@ msgstr "السمة" #: engine/core/models.py:777 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 "" "يمثل قيمة محددة لسمة مرتبطة بمنتج ما. يربط \"السمة\" بـ \"قيمة\" فريدة، مما " "يسمح بتنظيم أفضل وتمثيل ديناميكي لخصائص المنتج." @@ -2016,8 +2008,8 @@ msgstr "القيمة المحددة لهذه السمة" #: engine/core/models.py:815 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 "" @@ -2063,13 +2055,14 @@ msgid "" "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" -"يمثل حملة ترويجية للمنتجات ذات الخصم. تُستخدم هذه الفئة لتعريف وإدارة الحملات " -"الترويجية التي تقدم خصمًا على أساس النسبة المئوية للمنتجات. تتضمن الفئة سمات " -"لتعيين معدل الخصم وتوفير تفاصيل حول العرض الترويجي وربطه بالمنتجات القابلة " -"للتطبيق. تتكامل مع كتالوج المنتجات لتحديد العناصر المتأثرة في الحملة." +"يمثل حملة ترويجية للمنتجات ذات الخصم. تُستخدم هذه الفئة لتعريف وإدارة " +"الحملات الترويجية التي تقدم خصمًا على أساس النسبة المئوية للمنتجات. تتضمن " +"الفئة سمات لتعيين معدل الخصم وتوفير تفاصيل حول العرض الترويجي وربطه " +"بالمنتجات القابلة للتطبيق. تتكامل مع كتالوج المنتجات لتحديد العناصر المتأثرة" +" في الحملة." #: engine/core/models.py:880 msgid "percentage discount for the selected products" @@ -2110,8 +2103,8 @@ msgid "" "operations such as adding and removing products, as well as supporting " "operations for adding and removing multiple products at once." msgstr "" -"يمثل قائمة أمنيات المستخدم لتخزين وإدارة المنتجات المطلوبة. توفر الفئة وظائف " -"لإدارة مجموعة من المنتجات، وتدعم عمليات مثل إضافة المنتجات وإزالتها، " +"يمثل قائمة أمنيات المستخدم لتخزين وإدارة المنتجات المطلوبة. توفر الفئة وظائف" +" لإدارة مجموعة من المنتجات، وتدعم عمليات مثل إضافة المنتجات وإزالتها، " "بالإضافة إلى دعم عمليات إضافة وإزالة منتجات متعددة في وقت واحد." #: engine/core/models.py:926 @@ -2136,11 +2129,11 @@ msgid "" "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 "" -"يمثل سجل وثائقي مرتبط بمنتج ما. تُستخدم هذه الفئة لتخزين معلومات حول الأفلام " -"الوثائقية المرتبطة بمنتجات محددة، بما في ذلك تحميلات الملفات وبياناتها " +"يمثل سجل وثائقي مرتبط بمنتج ما. تُستخدم هذه الفئة لتخزين معلومات حول الأفلام" +" الوثائقية المرتبطة بمنتجات محددة، بما في ذلك تحميلات الملفات وبياناتها " "الوصفية. يحتوي على أساليب وخصائص للتعامل مع نوع الملف ومسار التخزين للملفات " "الوثائقية. وهو يوسع الوظائف من مزيج معين ويوفر ميزات مخصصة إضافية." @@ -2158,19 +2151,19 @@ msgstr "لم يتم حلها" #: engine/core/models.py:1014 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 "" "يمثل كيان عنوان يتضمن تفاصيل الموقع والارتباطات مع المستخدم. يوفر وظائف " "لتخزين البيانات الجغرافية وبيانات العنوان، بالإضافة إلى التكامل مع خدمات " -"الترميز الجغرافي. صُممت هذه الفئة لتخزين معلومات العنوان التفصيلية بما في ذلك " -"مكونات مثل الشارع والمدينة والمنطقة والبلد والموقع الجغرافي (خطوط الطول " +"الترميز الجغرافي. صُممت هذه الفئة لتخزين معلومات العنوان التفصيلية بما في " +"ذلك مكونات مثل الشارع والمدينة والمنطقة والبلد والموقع الجغرافي (خطوط الطول " "والعرض). وهو يدعم التكامل مع واجهات برمجة التطبيقات للترميز الجغرافي، مما " "يتيح تخزين استجابات واجهة برمجة التطبيقات الخام لمزيد من المعالجة أو الفحص. " "تسمح الفئة أيضًا بربط عنوان مع مستخدم، مما يسهل التعامل مع البيانات الشخصية." @@ -2236,9 +2229,9 @@ 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 بتخزين تفاصيل حول الرمز الترويجي، بما في" +" ذلك معرفه الفريد، وخصائص الخصم (المبلغ أو النسبة المئوية)، وفترة الصلاحية، " "والمستخدم المرتبط به (إن وجد)، وحالة استخدامه. ويتضمن وظيفة للتحقق من صحة " "الرمز الترويجي وتطبيقه على الطلب مع ضمان استيفاء القيود." @@ -2284,7 +2277,8 @@ msgstr "وقت بدء الصلاحية" #: engine/core/models.py:1120 msgid "timestamp when the promocode was used, blank if not used yet" -msgstr "الطابع الزمني عند استخدام الرمز الترويجي، فارغ إذا لم يتم استخدامه بعد" +msgstr "" +"الطابع الزمني عند استخدام الرمز الترويجي، فارغ إذا لم يتم استخدامه بعد" #: engine/core/models.py:1121 msgid "usage timestamp" @@ -2311,8 +2305,8 @@ msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." msgstr "" -"يجب تحديد نوع واحد فقط من الخصم (المبلغ أو النسبة المئوية)، وليس كلا النوعين " -"أو لا هذا ولا ذاك." +"يجب تحديد نوع واحد فقط من الخصم (المبلغ أو النسبة المئوية)، وليس كلا النوعين" +" أو لا هذا ولا ذاك." #: engine/core/models.py:1171 msgid "promocode already used" @@ -2327,8 +2321,8 @@ msgstr "نوع الخصم غير صالح للرمز الترويجي {self.uuid 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 "" @@ -2471,8 +2465,8 @@ msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" msgstr "" -"لا يمكنك الشراء بدون تسجيل، يرجى تقديم المعلومات التالية: اسم العميل، البريد " -"الإلكتروني للعميل، رقم هاتف العميل" +"لا يمكنك الشراء بدون تسجيل، يرجى تقديم المعلومات التالية: اسم العميل، البريد" +" الإلكتروني للعميل، رقم هاتف العميل" #: engine/core/models.py:1584 #, python-brace-format @@ -2503,7 +2497,8 @@ msgid "feedback comments" msgstr "تعليقات على الملاحظات" #: engine/core/models.py:1719 -msgid "references the specific product in an order that this feedback is about" +msgid "" +"references the specific product in an order that this feedback is about" msgstr "الإشارة إلى المنتج المحدد في الطلب الذي تدور حوله هذه الملاحظات" #: engine/core/models.py:1720 @@ -2533,9 +2528,9 @@ msgstr "" "يمثل المنتجات المرتبطة بالطلبات وسماتها. يحتفظ نموذج OrderProduct بمعلومات " "حول المنتج الذي هو جزء من الطلب، بما في ذلك تفاصيل مثل سعر الشراء والكمية " "وسمات المنتج وحالته. يدير الإشعارات للمستخدم والمسؤولين ويتعامل مع عمليات " -"مثل إرجاع رصيد المنتج أو إضافة ملاحظات. يوفر هذا النموذج أيضًا أساليب وخصائص " -"تدعم منطق العمل، مثل حساب السعر الإجمالي أو إنشاء عنوان URL للتنزيل للمنتجات " -"الرقمية. يتكامل النموذج مع نموذجي الطلب والمنتج ويخزن مرجعًا لهما." +"مثل إرجاع رصيد المنتج أو إضافة ملاحظات. يوفر هذا النموذج أيضًا أساليب وخصائص" +" تدعم منطق العمل، مثل حساب السعر الإجمالي أو إنشاء عنوان URL للتنزيل " +"للمنتجات الرقمية. يتكامل النموذج مع نموذجي الطلب والمنتج ويخزن مرجعًا لهما." #: engine/core/models.py:1757 msgid "the price paid by the customer for this product at purchase time" @@ -2643,15 +2638,15 @@ msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" "يمثل وظيفة التنزيل للأصول الرقمية المرتبطة بالطلبات. توفر فئة " "DigitalAssetDownload القدرة على إدارة التنزيلات المتعلقة بمنتجات الطلبات " "والوصول إليها. وتحتفظ بمعلومات حول منتج الطلب المرتبط، وعدد التنزيلات، وما " -"إذا كان الأصل مرئيًا للعامة. وتتضمن طريقة لإنشاء عنوان URL لتنزيل الأصل عندما " -"يكون الطلب المرتبط في حالة مكتملة." +"إذا كان الأصل مرئيًا للعامة. وتتضمن طريقة لإنشاء عنوان URL لتنزيل الأصل " +"عندما يكون الطلب المرتبط في حالة مكتملة." #: engine/core/models.py:1961 msgid "download" @@ -2695,8 +2690,8 @@ msgid "No customer activity in the last 30 days." msgstr "لا يوجد نشاط للعملاء في آخر 30 يوماً." #: engine/core/templates/admin/dashboard/_daily_sales.html:5 -msgid "Daily sales (30d)" -msgstr "المبيعات اليومية (30 د)" +msgid "Daily sales" +msgstr "المبيعات اليومية" #: engine/core/templates/admin/dashboard/_daily_sales.html:59 msgid "Orders (FINISHED)" @@ -2707,6 +2702,7 @@ msgid "Gross revenue" msgstr "إجمالي الإيرادات" #: engine/core/templates/admin/dashboard/_daily_sales.html:106 +#: engine/core/templates/admin/dashboard/_kpis.html:20 msgid "Orders" msgstr "الطلبات" @@ -2714,6 +2710,10 @@ msgstr "الطلبات" msgid "Gross" msgstr "الإجمالي" +#: engine/core/templates/admin/dashboard/_header.html:3 +msgid "Dashboard" +msgstr "لوحة التحكم" + #: engine/core/templates/admin/dashboard/_income_overview.html:7 msgid "Income overview" msgstr "نظرة عامة على الدخل" @@ -2742,20 +2742,32 @@ msgid "No data" msgstr "لا يوجد تاريخ" #: engine/core/templates/admin/dashboard/_kpis.html:6 -msgid "Revenue (gross, 30d)" -msgstr "الإيرادات (الإجمالي، 30 د)" +msgid "GMV" +msgstr "GMV" -#: engine/core/templates/admin/dashboard/_kpis.html:15 -msgid "Revenue (net, 30d)" -msgstr "الإيرادات (الصافي، 30 د)" +#: engine/core/templates/admin/dashboard/_kpis.html:34 +msgid "AOV" +msgstr "AOV" -#: engine/core/templates/admin/dashboard/_kpis.html:24 -msgid "Returns (30d)" -msgstr "المرتجعات (30 د)" +#: engine/core/templates/admin/dashboard/_kpis.html:48 +msgid "Net revenue" +msgstr "صافي الإيرادات" -#: engine/core/templates/admin/dashboard/_kpis.html:33 -msgid "Processed orders (30d)" -msgstr "الطلبات التي تمت معالجتها (30 د)" +#: engine/core/templates/admin/dashboard/_kpis.html:62 +msgid "Refund rate" +msgstr "معدل الاسترداد" + +#: engine/core/templates/admin/dashboard/_kpis.html:73 +msgid "returned" +msgstr "تم الإرجاع" + +#: engine/core/templates/admin/dashboard/_low_stock.html:5 +msgid "Low stock" +msgstr "مخزون منخفض" + +#: engine/core/templates/admin/dashboard/_low_stock.html:29 +msgid "No low stock items." +msgstr "لا توجد عناصر منخفضة المخزون." #: engine/core/templates/admin/dashboard/_most_returned.html:5 msgid "Most returned products (30d)" @@ -2770,11 +2782,11 @@ msgid "Most wished product" msgstr "أكثر المنتجات المرغوبة" #: engine/core/templates/admin/dashboard/_product_lists.html:33 -#: engine/core/templates/admin/dashboard/_product_lists.html:67 +#: engine/core/templates/admin/dashboard/_product_lists.html:68 msgid "No data yet." msgstr "لا توجد بيانات بعد." -#: engine/core/templates/admin/dashboard/_product_lists.html:40 +#: engine/core/templates/admin/dashboard/_product_lists.html:41 msgid "Most popular product" msgstr "المنتج الأكثر شعبية" @@ -2810,10 +2822,6 @@ msgstr "لم يتم بيع أي فئة في آخر 30 يوماً." msgid "Django site admin" msgstr "مشرف موقع جانغو" -#: engine/core/templates/admin/index.html:20 -msgid "Dashboard" -msgstr "لوحة التحكم" - #: 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 @@ -2843,12 +2851,11 @@ msgstr "مرحباً %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" -"شكرًا لك على طلبك #%(order.pk)s! يسعدنا إبلاغك بأننا قد أخذنا طلبك في العمل. " -"فيما يلي تفاصيل طلبك:" +"شكرًا لك على طلبك #%(order.pk)s! يسعدنا إبلاغك بأننا قد أخذنا طلبك في العمل." +" فيما يلي تفاصيل طلبك:" #: engine/core/templates/digital_order_created_email.html:112 #: engine/core/templates/digital_order_delivered_email.html:110 @@ -2955,8 +2962,7 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "شكرًا لك على طلبك! يسعدنا تأكيد طلبك. فيما يلي تفاصيل طلبك:" @@ -3026,7 +3032,7 @@ msgstr "يجب تكوين معلمة NOMINATIM_URL!" msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "يجب ألا تتجاوز أبعاد الصورة w{max_width} x h{max_height} بكسل!" -#: engine/core/views.py:90 +#: engine/core/views.py:91 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." @@ -3034,7 +3040,7 @@ msgstr "" "يتعامل مع طلب فهرس خريطة الموقع ويعيد استجابة XML. يضمن أن تتضمن الاستجابة " "رأس نوع المحتوى المناسب ل XML." -#: engine/core/views.py:105 +#: engine/core/views.py:106 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " @@ -3043,16 +3049,16 @@ msgstr "" "يعالج استجابة العرض التفصيلي لخريطة الموقع. تقوم هذه الدالة بمعالجة الطلب، " "وجلب استجابة تفاصيل خريطة الموقع المناسبة، وتعيين رأس نوع المحتوى ل XML." -#: engine/core/views.py:140 +#: engine/core/views.py:141 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "إرجاع قائمة باللغات المدعومة والمعلومات الخاصة بها." -#: engine/core/views.py:172 +#: engine/core/views.py:173 msgid "Returns the parameters of the website as a JSON object." msgstr "إرجاع معلمات الموقع الإلكتروني ككائن JSON." -#: engine/core/views.py:191 +#: engine/core/views.py:192 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." @@ -3060,11 +3066,11 @@ msgstr "" "يعالج عمليات ذاكرة التخزين المؤقت مثل قراءة بيانات ذاكرة التخزين المؤقت " "وتعيينها بمفتاح ومهلة محددة." -#: engine/core/views.py:218 +#: engine/core/views.py:219 msgid "Handles `contact us` form submissions." msgstr "يتعامل مع عمليات إرسال نموذج \"اتصل بنا\"." -#: engine/core/views.py:239 +#: engine/core/views.py:240 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." @@ -3072,77 +3078,69 @@ msgstr "" "يعالج طلبات معالجة عناوين URL والتحقق من صحة عناوين URL من طلبات POST " "الواردة." -#: engine/core/views.py:279 +#: engine/core/views.py:280 msgid "Handles global search queries." msgstr "يتعامل مع استعلامات البحث العامة." -#: engine/core/views.py:294 +#: engine/core/views.py:295 msgid "Handles the logic of buying as a business without registration." msgstr "يتعامل بمنطق الشراء كشركة تجارية دون تسجيل." -#: engine/core/views.py:331 +#: engine/core/views.py:332 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "يتعامل مع تنزيل الأصل الرقمي المرتبط بأمر ما.\n" -"تحاول هذه الدالة خدمة ملف الأصل الرقمي الموجود في دليل التخزين الخاص " -"بالمشروع. إذا لم يتم العثور على الملف، يتم رفع خطأ HTTP 404 للإشارة إلى أن " -"المورد غير متوفر." +"تحاول هذه الدالة خدمة ملف الأصل الرقمي الموجود في دليل التخزين الخاص بالمشروع. إذا لم يتم العثور على الملف، يتم رفع خطأ HTTP 404 للإشارة إلى أن المورد غير متوفر." -#: engine/core/views.py:342 +#: engine/core/views.py:343 msgid "order_product_uuid is required" msgstr "الطلب_برو_منتج_uuid مطلوب" -#: engine/core/views.py:349 +#: engine/core/views.py:350 msgid "order product does not exist" msgstr "طلب المنتج غير موجود" -#: engine/core/views.py:352 +#: engine/core/views.py:353 msgid "you can only download the digital asset once" msgstr "يمكنك تنزيل الأصل الرقمي مرة واحدة فقط" -#: engine/core/views.py:355 +#: engine/core/views.py:356 msgid "the order must be paid before downloading the digital asset" msgstr "يجب دفع الطلب قبل تنزيل الأصل الرقمي" -#: engine/core/views.py:361 +#: engine/core/views.py:362 msgid "the order product does not have a product" msgstr "لا يحتوي منتج الطلب على منتج" -#: engine/core/views.py:398 +#: engine/core/views.py:399 msgid "favicon not found" msgstr "الرمز المفضل غير موجود" -#: engine/core/views.py:403 +#: engine/core/views.py:404 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "يتعامل مع طلبات الرمز المفضل لموقع ويب.\n" -"تحاول هذه الدالة عرض ملف الأيقونة المفضلة الموجود في الدليل الثابت للمشروع. " -"إذا لم يتم العثور على ملف الأيقونة المفضلة، يتم رفع خطأ HTTP 404 للإشارة إلى " -"أن المورد غير متوفر." +"تحاول هذه الدالة عرض ملف الأيقونة المفضلة الموجود في الدليل الثابت للمشروع. إذا لم يتم العثور على ملف الأيقونة المفضلة، يتم رفع خطأ HTTP 404 للإشارة إلى أن المورد غير متوفر." -#: engine/core/views.py:415 +#: engine/core/views.py:416 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" -"يعيد توجيه الطلب إلى صفحة فهرس المشرف. تعالج الدالة طلبات HTTP الواردة وتعيد " -"توجيهها إلى صفحة فهرس واجهة إدارة Django. تستخدم دالة \"إعادة التوجيه\" في " +"يعيد توجيه الطلب إلى صفحة فهرس المشرف. تعالج الدالة طلبات HTTP الواردة وتعيد" +" توجيهها إلى صفحة فهرس واجهة إدارة Django. تستخدم دالة \"إعادة التوجيه\" في " "Django للتعامل مع إعادة توجيه HTTP." -#: engine/core/views.py:428 +#: engine/core/views.py:429 msgid "Returns current version of the eVibes. " msgstr "إرجاع الإصدار الحالي من eVibes." -#: engine/core/views.py:637 +#: engine/core/views.py:793 msgid "Returns custom variables for Dashboard. " msgstr "إرجاع المتغيرات المخصصة للوحة التحكم." @@ -3154,22 +3152,23 @@ msgid "" "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" -"يحدد مجموعة طرق عرض لإدارة العمليات المتعلقة ب Evibes. يرث صنف EvibesViewSet " -"من ModelViewSet ويوفر وظائف للتعامل مع الإجراءات والعمليات على كيانات " -"Evibes. وتتضمن دعمًا لفئات المتسلسلات الديناميكية استنادًا إلى الإجراء الحالي، " -"والأذونات القابلة للتخصيص، وتنسيقات العرض." +"يحدد مجموعة طرق عرض لإدارة العمليات المتعلقة ب Evibes. يرث صنف EvibesViewSet" +" من ModelViewSet ويوفر وظائف للتعامل مع الإجراءات والعمليات على كيانات " +"Evibes. وتتضمن دعمًا لفئات المتسلسلات الديناميكية استنادًا إلى الإجراء " +"الحالي، والأذونات القابلة للتخصيص، وتنسيقات العرض." #: engine/core/viewsets.py:156 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" "يمثل مجموعة طرق عرض لإدارة كائنات AttributeGroup. يتعامل مع العمليات " "المتعلقة ب AttributeGroup، بما في ذلك التصفية والتسلسل واسترجاع البيانات. " -"تعد هذه الفئة جزءًا من طبقة واجهة برمجة التطبيقات الخاصة بالتطبيق وتوفر طريقة " -"موحدة لمعالجة الطلبات والاستجابات لبيانات AttributeGroup." +"تعد هذه الفئة جزءًا من طبقة واجهة برمجة التطبيقات الخاصة بالتطبيق وتوفر " +"طريقة موحدة لمعالجة الطلبات والاستجابات لبيانات AttributeGroup." #: engine/core/viewsets.py:175 msgid "" @@ -3191,13 +3190,14 @@ msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" -"مجموعة طرق عرض لإدارة كائنات AttributeValue. توفر مجموعة طرق العرض هذه وظائف " -"لإدراج كائنات AttributeValue واسترجاعها وإنشائها وتحديثها وحذفها. وهي تتكامل " -"مع آليات مجموعة طرق عرض Django REST Framework وتستخدم المتسلسلات المناسبة " -"للإجراءات المختلفة. يتم توفير إمكانيات التصفية من خلال DjangoFilterBackend." +"مجموعة طرق عرض لإدارة كائنات AttributeValue. توفر مجموعة طرق العرض هذه وظائف" +" لإدراج كائنات AttributeValue واسترجاعها وإنشائها وتحديثها وحذفها. وهي " +"تتكامل مع آليات مجموعة طرق عرض Django REST Framework وتستخدم المتسلسلات " +"المناسبة للإجراءات المختلفة. يتم توفير إمكانيات التصفية من خلال " +"DjangoFilterBackend." #: engine/core/viewsets.py:213 msgid "" @@ -3208,8 +3208,8 @@ msgid "" "can access specific data." msgstr "" "يدير طرق العرض للعمليات المتعلقة بالفئة. فئة CategoryViewSet مسؤولة عن " -"التعامل مع العمليات المتعلقة بنموذج الفئة في النظام. وهي تدعم استرجاع بيانات " -"الفئة وتصفيتها وتسلسلها. تفرض مجموعة طرق العرض أيضًا الأذونات لضمان وصول " +"التعامل مع العمليات المتعلقة بنموذج الفئة في النظام. وهي تدعم استرجاع بيانات" +" الفئة وتصفيتها وتسلسلها. تفرض مجموعة طرق العرض أيضًا الأذونات لضمان وصول " "المستخدمين المصرح لهم فقط إلى بيانات محددة." #: engine/core/viewsets.py:326 @@ -3249,34 +3249,35 @@ msgid "" "Vendor-related resources through the Django REST framework." msgstr "" "يمثل مجموعة طرق عرض لإدارة كائنات المورد. تسمح مجموعة العرض هذه بجلب بيانات " -"البائع وتصفيتها وتسلسلها. وهي تُعرِّف مجموعة الاستعلام، وتكوينات التصفية، وفئات " -"أداة التسلسل المستخدمة للتعامل مع الإجراءات المختلفة. الغرض من هذه الفئة هو " -"توفير وصول مبسط إلى الموارد المتعلقة بالمورد من خلال إطار عمل Django REST." +"البائع وتصفيتها وتسلسلها. وهي تُعرِّف مجموعة الاستعلام، وتكوينات التصفية، " +"وفئات أداة التسلسل المستخدمة للتعامل مع الإجراءات المختلفة. الغرض من هذه " +"الفئة هو توفير وصول مبسط إلى الموارد المتعلقة بالمورد من خلال إطار عمل " +"Django REST." #: engine/core/viewsets.py:594 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 للاستعلام عن" +" البيانات." #: engine/core/viewsets.py:621 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 لإدارة الطلبات والعمليات ذات الصلة. توفر هذه الفئة وظائف لاسترداد " @@ -3290,8 +3291,8 @@ msgstr "" msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "يوفر مجموعة طرق عرض لإدارة كيانات OrderProduct. تتيح مجموعة طرق العرض هذه " @@ -3323,15 +3324,15 @@ msgstr "يتعامل مع العمليات المتعلقة ببيانات ال msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." msgstr "" -"ViewSet لإدارة عمليات قائمة الرغبات. توفر مجموعة طرق عرض قائمة الأمنيات نقاط " -"نهاية للتفاعل مع قائمة أمنيات المستخدم، مما يسمح باسترجاع المنتجات وتعديلها " -"وتخصيصها ضمن قائمة الأمنيات. تسهل مجموعة العرض هذه وظائف مثل الإضافة " +"ViewSet لإدارة عمليات قائمة الرغبات. توفر مجموعة طرق عرض قائمة الأمنيات نقاط" +" نهاية للتفاعل مع قائمة أمنيات المستخدم، مما يسمح باسترجاع المنتجات وتعديلها" +" وتخصيصها ضمن قائمة الأمنيات. تسهل مجموعة العرض هذه وظائف مثل الإضافة " "والإزالة والإجراءات المجمعة لمنتجات قائمة الرغبات. يتم دمج عمليات التحقق من " "الأذونات للتأكد من أن المستخدمين يمكنهم فقط إدارة قوائم الرغبات الخاصة بهم " "ما لم يتم منح أذونات صريحة." diff --git a/engine/core/locale/cs_CZ/LC_MESSAGES/django.mo b/engine/core/locale/cs_CZ/LC_MESSAGES/django.mo index 6d4fb167774797ed89ba8d13bdb753e235cc7449..dbd9131f3dcd4645a5e0fbbf0fdf5be38370e551 100644 GIT binary patch delta 14898 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 delta 14876 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 S^P>Qt;\n" "Language-Team: BRITISH ENGLISH \n" @@ -28,7 +28,8 @@ msgstr "Je aktivní" #: 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í." @@ -155,7 +156,8 @@ msgstr "Doručeno na" msgid "canceled" msgstr "Zrušeno" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Neúspěšný" @@ -272,7 +274,8 @@ msgstr "" "Přepsání existující skupiny atributů s uložením neupravitelných položek" #: engine/core/docs/drf/viewsets.py:96 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Přepsání některých polí existující skupiny atributů s uložením " "neupravitelných položek" @@ -324,7 +327,8 @@ msgid "rewrite an existing attribute value saving non-editables" msgstr "Přepsání existující hodnoty atributu uložením neupravitelných položek" #: engine/core/docs/drf/viewsets.py:186 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" "Přepsání některých polí existující hodnoty atributu s uložením " "neupravitelných položek" @@ -382,12 +386,12 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:281 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" "Vyhledávání podřetězců bez ohledu na velikost písmen v položkách " -"human_readable_id, order_products.product.name a order_products.product." -"partnumber" +"human_readable_id, order_products.product.name a " +"order_products.product.partnumber" #: engine/core/docs/drf/viewsets.py:288 msgid "Filter orders with buy_time >= this ISO 8601 datetime" @@ -423,9 +427,9 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:324 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "Řazení podle jedné z následujících možností: uuid, human_readable_id, " "user_email, user, status, created, modified, buy_time, random. Pro sestupné " @@ -470,8 +474,8 @@ msgid "" "completed using the user's balance; if `force_payment` is used, a " "transaction is initiated." msgstr "" -"Dokončí nákup objednávky. Pokud je použito `force_balance`, nákup se dokončí " -"s použitím zůstatku uživatele; pokud je použito `force_payment`, zahájí se " +"Dokončí nákup objednávky. Pokud je použito `force_balance`, nákup se dokončí" +" s použitím zůstatku uživatele; pokud je použito `force_payment`, zahájí se " "transakce." #: engine/core/docs/drf/viewsets.py:397 @@ -602,7 +606,8 @@ msgstr "Přidání mnoha produktů do seznamu přání" #: engine/core/docs/drf/viewsets.py:533 msgid "adds many products to an wishlist using the provided `product_uuids`" -msgstr "Přidá mnoho produktů do seznamu přání pomocí zadaných `product_uuids`." +msgstr "" +"Přidá mnoho produktů do seznamu přání pomocí zadaných `product_uuids`." #: engine/core/docs/drf/viewsets.py:541 msgid "remove many products from wishlist" @@ -618,28 +623,18 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "Filtrování podle jedné nebo více dvojic název/hodnota atributu. \n" "- **Syntaxe**: `attr_name=method-value[;attr2=method2-value2]...`\n" -"- **Metody** (pokud je vynecháno, výchozí hodnota je `obsahuje`): `iexact`, " -"`exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, " -"`endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" -"- **Typování hodnot**: Pro booleany, celá čísla, floaty se nejprve zkouší " -"JSON (takže můžete předávat seznamy/dicty), `true`/`false`; jinak se s nimi " -"zachází jako s řetězci. \n" -"- **Base64**: předpona `b64-` pro bezpečné zakódování surové hodnoty do URL " -"base64. \n" +"- **Metody** (pokud je vynecháno, výchozí hodnota je `obsahuje`): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" +"- **Typování hodnot**: Pro booleany, celá čísla, floaty se nejprve zkouší JSON (takže můžete předávat seznamy/dicty), `true`/`false`; jinak se s nimi zachází jako s řetězci. \n" +"- **Base64**: předpona `b64-` pro bezpečné zakódování surové hodnoty do URL base64. \n" "Příklady: \n" "`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\", \"bluetooth\"]`,\n" "`b64-description=icontains-aGVhdC1jb2xk`" @@ -654,12 +649,10 @@ msgstr "(přesně) UUID produktu" #: engine/core/docs/drf/viewsets.py:581 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Seznam polí oddělených čárkou, podle kterých se má třídit. Pro sestupné " -"řazení použijte předponu `-`. \n" +"Seznam polí oddělených čárkou, podle kterých se má třídit. Pro sestupné řazení použijte předponu `-`. \n" "**Povolené:** uuid, rating, name, slug, created, modified, price, random" #: engine/core/docs/drf/viewsets.py:598 engine/core/docs/drf/viewsets.py:599 @@ -917,7 +910,8 @@ msgstr "Odstranění povýšení" #: engine/core/docs/drf/viewsets.py:1169 msgid "rewrite an existing promotion saving non-editables" -msgstr "Přepsání existující propagační akce s uložením neupravitelných položek" +msgstr "" +"Přepsání existující propagační akce s uložením neupravitelných položek" #: engine/core/docs/drf/viewsets.py:1176 msgid "rewrite some fields of an existing promotion saving non-editables" @@ -968,7 +962,8 @@ msgstr "Odstranění značky produktu" #: engine/core/docs/drf/viewsets.py:1259 msgid "rewrite an existing product tag saving non-editables" -msgstr "Přepsání existující značky produktu s uložením neupravitelných položek" +msgstr "" +"Přepsání existující značky produktu s uložením neupravitelných položek" #: engine/core/docs/drf/viewsets.py:1266 msgid "rewrite some fields of an existing product tag saving non-editables" @@ -1124,7 +1119,7 @@ msgstr "Data uložená v mezipaměti" msgid "camelized JSON data from the requested URL" msgstr "Kamelizovaná data JSON z požadované adresy URL" -#: engine/core/graphene/mutations.py:67 engine/core/views.py:256 +#: engine/core/graphene/mutations.py:67 engine/core/views.py:257 msgid "only URLs starting with http(s):// are allowed" msgstr "Povoleny jsou pouze adresy URL začínající http(s)://." @@ -1208,11 +1203,11 @@ msgstr "Koupit objednávku" #: engine/core/graphene/mutations.py:516 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "" -"Prosím, pošlete atributy jako řetězec ve formátu attr1=hodnota1," -"attr2=hodnota2." +"Prosím, pošlete atributy jako řetězec ve formátu " +"attr1=hodnota1,attr2=hodnota2." #: engine/core/graphene/mutations.py:549 msgid "add or delete a feedback for orderproduct" @@ -1286,9 +1281,11 @@ msgid "which attributes and values can be used for filtering this category." msgstr "Které atributy a hodnoty lze použít pro filtrování této kategorie." #: engine/core/graphene/object_types.py:203 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" -"Minimální a maximální ceny produktů v této kategorii, pokud jsou k dispozici." +"Minimální a maximální ceny produktů v této kategorii, pokud jsou k " +"dispozici." #: engine/core/graphene/object_types.py:205 msgid "tags for this category" @@ -1593,8 +1590,8 @@ msgstr "" "dodavatelích a jejich požadavcích na interakci. Třída Vendor se používá k " "definování a správě informací týkajících se externího dodavatele. Uchovává " "jméno prodejce, údaje o ověření požadované pro komunikaci a procentuální " -"přirážku použitou na produkty získané od prodejce. Tento model také uchovává " -"další metadata a omezení, takže je vhodný pro použití v systémech, které " +"přirážku použitou na produkty získané od prodejce. Tento model také uchovává" +" další metadata a omezení, takže je vhodný pro použití v systémech, které " "komunikují s prodejci třetích stran." #: engine/core/models.py:124 @@ -1709,8 +1706,8 @@ msgstr "" "jinými kategoriemi a podporovat vztahy rodič-dítě. Třída obsahuje pole pro " "metadata a vizuální zobrazení, která slouží jako základ pro funkce " "související s kategoriemi. Tato třída se obvykle používá k definování a " -"správě kategorií produktů nebo jiných podobných seskupení v rámci aplikace a " -"umožňuje uživatelům nebo správcům zadávat název, popis a hierarchii " +"správě kategorií produktů nebo jiných podobných seskupení v rámci aplikace a" +" umožňuje uživatelům nebo správcům zadávat název, popis a hierarchii " "kategorií a také přiřazovat atributy, jako jsou obrázky, značky nebo " "priorita." @@ -1763,7 +1760,8 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" "Reprezentuje objekt značky v systému. Tato třída zpracovává informace a " "atributy související se značkou, včetně jejího názvu, loga, popisu, " @@ -1812,8 +1810,8 @@ msgstr "Kategorie" #: engine/core/models.py:508 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 " @@ -1906,10 +1904,10 @@ msgstr "" "digitální stav, název, popis, číslo dílu a přípona. Poskytuje související " "užitečné vlastnosti pro získání hodnocení, počtu zpětných vazeb, ceny, " "množství a celkového počtu objednávek. Určeno pro použití v systému, který " -"zpracovává elektronické obchodování nebo správu zásob. Tato třída komunikuje " -"se souvisejícími modely (například Category, Brand a ProductTag) a spravuje " -"ukládání často přistupovaných vlastností do mezipaměti pro zlepšení výkonu. " -"Používá se k definování a manipulaci s údaji o produktu a souvisejícími " +"zpracovává elektronické obchodování nebo správu zásob. Tato třída komunikuje" +" se souvisejícími modely (například Category, Brand a ProductTag) a spravuje" +" ukládání často přistupovaných vlastností do mezipaměti pro zlepšení výkonu." +" Používá se k definování a manipulaci s údaji o produktu a souvisejícími " "informacemi v rámci aplikace." #: engine/core/models.py:585 @@ -1965,8 +1963,8 @@ 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ě " @@ -2035,12 +2033,12 @@ msgstr "Atribut" #: engine/core/models.py:777 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" -"Představuje konkrétní hodnotu atributu, který je spojen s produktem. Spojuje " -"\"atribut\" s jedinečnou \"hodnotou\", což umožňuje lepší organizaci a " +"Představuje konkrétní hodnotu atributu, který je spojen s produktem. Spojuje" +" \"atribut\" s jedinečnou \"hodnotou\", což umožňuje lepší organizaci a " "dynamickou reprezentaci vlastností produktu." #: engine/core/models.py:788 @@ -2058,15 +2056,15 @@ msgstr "Konkrétní hodnota tohoto atributu" #: engine/core/models.py:815 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" "Představuje obrázek produktu spojený s produktem v systému. Tato třída je " "určena ke správě obrázků produktů, včetně funkcí pro nahrávání souborů s " -"obrázky, jejich přiřazování ke konkrétním produktům a určování pořadí jejich " -"zobrazení. Obsahuje také funkci pro zpřístupnění alternativního textu pro " +"obrázky, jejich přiřazování ke konkrétním produktům a určování pořadí jejich" +" zobrazení. Obsahuje také funkci pro zpřístupnění alternativního textu pro " "obrázky." #: engine/core/models.py:826 @@ -2107,13 +2105,13 @@ msgid "" "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" -"Představuje propagační kampaň na produkty se slevou. Tato třída se používá k " -"definici a správě propagačních kampaní, které nabízejí procentuální slevu na " -"produkty. Třída obsahuje atributy pro nastavení slevové sazby, poskytnutí " -"podrobností o akci a její propojení s příslušnými produkty. Integruje se s " +"Představuje propagační kampaň na produkty se slevou. Tato třída se používá k" +" definici a správě propagačních kampaní, které nabízejí procentuální slevu " +"na produkty. Třída obsahuje atributy pro nastavení slevové sazby, poskytnutí" +" podrobností o akci a její propojení s příslušnými produkty. Integruje se s " "katalogem produktů, aby bylo možné určit položky, kterých se kampaň týká." #: engine/core/models.py:880 @@ -2182,8 +2180,8 @@ msgid "" "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, " @@ -2205,22 +2203,22 @@ msgstr "Nevyřešené" #: engine/core/models.py:1014 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" "Reprezentuje entitu adresy, která obsahuje údaje o umístění a asociace s " "uživatelem. Poskytuje funkce pro ukládání geografických a adresních dat a " "integraci se službami geokódování. Tato třída je určena k ukládání " "podrobných informací o adrese včetně komponent, jako je ulice, město, " "region, země a geolokace (zeměpisná délka a šířka). Podporuje integraci se " -"službami API pro geokódování a umožňuje ukládání nezpracovaných odpovědí API " -"pro další zpracování nebo kontrolu. Třída také umožňuje přiřadit adresu k " +"službami API pro geokódování a umožňuje ukládání nezpracovaných odpovědí API" +" pro další zpracování nebo kontrolu. Třída také umožňuje přiřadit adresu k " "uživateli, což usnadňuje personalizované zpracování dat." #: engine/core/models.py:1029 @@ -2376,8 +2374,8 @@ msgstr "Neplatný typ slevy pro promokód {self.uuid}!" 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 "" @@ -2461,7 +2459,8 @@ msgstr "Uživatel smí mít vždy pouze jednu čekající objednávku!" #: engine/core/models.py:1351 msgid "you cannot add products to an order that is not a pending one" -msgstr "Do objednávky, která není v procesu vyřizování, nelze přidat produkty." +msgstr "" +"Do objednávky, která není v procesu vyřizování, nelze přidat produkty." #: engine/core/models.py:1356 msgid "you cannot add inactive products to order" @@ -2542,8 +2541,8 @@ msgid "" "fields to effectively model and manage feedback data." msgstr "" "spravuje zpětnou vazbu uživatelů k produktům. Tato třída je určena k " -"zachycování a ukládání zpětné vazby uživatelů ke konkrétním produktům, které " -"si zakoupili. Obsahuje atributy pro ukládání komentářů uživatelů, odkaz na " +"zachycování a ukládání zpětné vazby uživatelů ke konkrétním produktům, které" +" si zakoupili. Obsahuje atributy pro ukládání komentářů uživatelů, odkaz na " "související produkt v objednávce a hodnocení přiřazené uživatelem. Třída " "využívá databázová pole k efektivnímu modelování a správě dat zpětné vazby." @@ -2556,7 +2555,8 @@ msgid "feedback comments" msgstr "Zpětná vazba" #: engine/core/models.py:1719 -msgid "references the specific product in an order that this feedback is about" +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á." @@ -2701,9 +2701,9 @@ 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 " @@ -2755,8 +2755,8 @@ msgid "No customer activity in the last 30 days." msgstr "Žádná aktivita zákazníka za posledních 30 dní." #: engine/core/templates/admin/dashboard/_daily_sales.html:5 -msgid "Daily sales (30d)" -msgstr "Denní tržby (30d)" +msgid "Daily sales" +msgstr "Denní prodej" #: engine/core/templates/admin/dashboard/_daily_sales.html:59 msgid "Orders (FINISHED)" @@ -2767,6 +2767,7 @@ msgid "Gross revenue" msgstr "Hrubé příjmy" #: engine/core/templates/admin/dashboard/_daily_sales.html:106 +#: engine/core/templates/admin/dashboard/_kpis.html:20 msgid "Orders" msgstr "Objednávky" @@ -2774,6 +2775,10 @@ msgstr "Objednávky" msgid "Gross" msgstr "Hrubý" +#: engine/core/templates/admin/dashboard/_header.html:3 +msgid "Dashboard" +msgstr "Přístrojová deska" + #: engine/core/templates/admin/dashboard/_income_overview.html:7 msgid "Income overview" msgstr "Přehled příjmů" @@ -2802,20 +2807,32 @@ msgid "No data" msgstr "Bez data" #: engine/core/templates/admin/dashboard/_kpis.html:6 -msgid "Revenue (gross, 30d)" -msgstr "Příjmy (hrubé, 30d)" +msgid "GMV" +msgstr "GMV" -#: engine/core/templates/admin/dashboard/_kpis.html:15 -msgid "Revenue (net, 30d)" -msgstr "Příjmy (čisté, 30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:34 +msgid "AOV" +msgstr "AOV" -#: engine/core/templates/admin/dashboard/_kpis.html:24 -msgid "Returns (30d)" -msgstr "Návraty (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:48 +msgid "Net revenue" +msgstr "Čistý příjem" -#: engine/core/templates/admin/dashboard/_kpis.html:33 -msgid "Processed orders (30d)" -msgstr "Zpracované objednávky (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:62 +msgid "Refund rate" +msgstr "Míra vrácení peněz" + +#: engine/core/templates/admin/dashboard/_kpis.html:73 +msgid "returned" +msgstr "Vrácené" + +#: engine/core/templates/admin/dashboard/_low_stock.html:5 +msgid "Low stock" +msgstr "Nízké zásoby" + +#: engine/core/templates/admin/dashboard/_low_stock.html:29 +msgid "No low stock items." +msgstr "Žádné nízké skladové zásoby." #: engine/core/templates/admin/dashboard/_most_returned.html:5 msgid "Most returned products (30d)" @@ -2830,11 +2847,11 @@ msgid "Most wished product" msgstr "Nejžádanější produkt" #: engine/core/templates/admin/dashboard/_product_lists.html:33 -#: engine/core/templates/admin/dashboard/_product_lists.html:67 +#: engine/core/templates/admin/dashboard/_product_lists.html:68 msgid "No data yet." msgstr "Zatím nejsou k dispozici žádné údaje." -#: engine/core/templates/admin/dashboard/_product_lists.html:40 +#: engine/core/templates/admin/dashboard/_product_lists.html:41 msgid "Most popular product" msgstr "Nejoblíbenější produkt" @@ -2870,10 +2887,6 @@ msgstr "Žádný prodej v kategorii za posledních 30 dní." msgid "Django site admin" msgstr "Správce webu Django" -#: engine/core/templates/admin/index.html:20 -msgid "Dashboard" -msgstr "Přístrojová deska" - #: 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 @@ -2903,8 +2916,7 @@ msgstr "Ahoj %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" "Děkujeme vám za vaši objednávku #%(order.pk)s! S potěšením Vám oznamujeme, " @@ -3019,8 +3031,7 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" "Děkujeme vám za vaši objednávku! S potěšením potvrzujeme váš nákup. Níže " @@ -3093,7 +3104,7 @@ 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ů." -#: engine/core/views.py:90 +#: engine/core/views.py:91 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." @@ -3101,7 +3112,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." -#: engine/core/views.py:105 +#: engine/core/views.py:106 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " @@ -3111,28 +3122,28 @@ msgstr "" "požadavek, načte příslušnou podrobnou odpověď mapy stránek a nastaví " "hlavičku Content-Type pro XML." -#: engine/core/views.py:140 +#: engine/core/views.py:141 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "Vrátí seznam podporovaných jazyků a odpovídajících informací." -#: engine/core/views.py:172 +#: engine/core/views.py:173 msgid "Returns the parameters of the website as a JSON object." msgstr "Vrátí parametry webové stránky jako objekt JSON." -#: engine/core/views.py:191 +#: engine/core/views.py:192 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." msgstr "" -"Zpracovává operace mezipaměti, jako je čtení a nastavování dat mezipaměti se " -"zadaným klíčem a časovým limitem." +"Zpracovává operace mezipaměti, jako je čtení a nastavování dat mezipaměti se" +" zadaným klíčem a časovým limitem." -#: engine/core/views.py:218 +#: engine/core/views.py:219 msgid "Handles `contact us` form submissions." msgstr "Zpracovává odeslání formuláře `contact us`." -#: engine/core/views.py:239 +#: engine/core/views.py:240 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." @@ -3140,78 +3151,70 @@ msgstr "" "Zpracovává požadavky na zpracování a ověřování adres URL z příchozích " "požadavků POST." -#: engine/core/views.py:279 +#: engine/core/views.py:280 msgid "Handles global search queries." msgstr "Zpracovává globální vyhledávací dotazy." -#: engine/core/views.py:294 +#: engine/core/views.py:295 msgid "Handles the logic of buying as a business without registration." msgstr "Řeší logiku nákupu jako firmy bez registrace." -#: engine/core/views.py:331 +#: engine/core/views.py:332 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Zpracovává stahování digitálního aktiva spojeného s objednávkou.\n" -"Tato funkce se pokusí obsloužit soubor digitálního aktiva umístěný v " -"adresáři úložiště projektu. Pokud soubor není nalezen, je vyvolána chyba " -"HTTP 404, která označuje, že zdroj není k dispozici." +"Tato funkce se pokusí obsloužit soubor digitálního aktiva umístěný v adresáři úložiště projektu. Pokud soubor není nalezen, je vyvolána chyba HTTP 404, která označuje, že zdroj není k dispozici." -#: engine/core/views.py:342 +#: engine/core/views.py:343 msgid "order_product_uuid is required" msgstr "order_product_uuid je povinné" -#: engine/core/views.py:349 +#: engine/core/views.py:350 msgid "order product does not exist" msgstr "objednávka produktu neexistuje" -#: engine/core/views.py:352 +#: engine/core/views.py:353 msgid "you can only download the digital asset once" msgstr "Digitální aktivum můžete stáhnout pouze jednou" -#: engine/core/views.py:355 +#: engine/core/views.py:356 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." -#: engine/core/views.py:361 +#: engine/core/views.py:362 msgid "the order product does not have a product" msgstr "Objednaný produkt nemá produkt" -#: engine/core/views.py:398 +#: engine/core/views.py:399 msgid "favicon not found" msgstr "favicon nebyl nalezen" -#: engine/core/views.py:403 +#: engine/core/views.py:404 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Zpracovává požadavky na favicon webové stránky.\n" -"Tato funkce se pokusí obsloužit soubor favicon umístěný ve statickém " -"adresáři projektu. Pokud soubor favicon není nalezen, je vyvolána chyba HTTP " -"404, která označuje, že zdroj není k dispozici." +"Tato funkce se pokusí obsloužit soubor favicon umístěný ve statickém adresáři projektu. Pokud soubor favicon není nalezen, je vyvolána chyba HTTP 404, která označuje, že zdroj není k dispozici." -#: engine/core/views.py:415 +#: engine/core/views.py:416 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" "Přesměruje požadavek na indexovou stránku správce. Funkce zpracovává " "příchozí požadavky HTTP a přesměrovává je na indexovou stránku " -"administrátorského rozhraní Django. Pro zpracování přesměrování HTTP používá " -"funkci `redirect` Djanga." +"administrátorského rozhraní Django. Pro zpracování přesměrování HTTP používá" +" funkci `redirect` Djanga." -#: engine/core/views.py:428 +#: engine/core/views.py:429 msgid "Returns current version of the eVibes. " msgstr "Vrací aktuální verzi systému eVibes." -#: engine/core/views.py:637 +#: engine/core/views.py:793 msgid "Returns custom variables for Dashboard. " msgstr "Vrací vlastní proměnné pro Dashboard." @@ -3226,14 +3229,16 @@ 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í." #: engine/core/viewsets.py:156 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 " @@ -3262,8 +3267,8 @@ msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" "Sada pohledů pro správu objektů AttributeValue. Tato sada pohledů poskytuje " "funkce pro výpis, načítání, vytváření, aktualizaci a mazání objektů " @@ -3312,8 +3317,8 @@ 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." #: engine/core/viewsets.py:574 msgid "" @@ -3334,8 +3339,8 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `EvibesViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "Reprezentace sady zobrazení, která zpracovává objekty zpětné vazby. Tato " @@ -3350,31 +3355,31 @@ msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" "ViewSet pro správu objednávek a souvisejících operací. Tato třída poskytuje " "funkce pro načítání, úpravu a správu objektů objednávek. Obsahuje různé " "koncové body pro zpracování operací s objednávkami, jako je přidávání nebo " "odebírání produktů, provádění nákupů pro registrované i neregistrované " -"uživatele a načítání nevyřízených objednávek aktuálního ověřeného uživatele. " -"Sada ViewSet používá několik serializátorů podle konkrétní prováděné akce a " -"podle toho vynucuje oprávnění při interakci s daty objednávek." +"uživatele a načítání nevyřízených objednávek aktuálního ověřeného uživatele." +" Sada ViewSet používá několik serializátorů podle konkrétní prováděné akce a" +" podle toho vynucuje oprávnění při interakci s daty objednávek." #: engine/core/viewsets.py:825 msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "Poskytuje sadu pohledů pro správu entit OrderProduct. Tato sada pohledů " "umožňuje operace CRUD a vlastní akce specifické pro model OrderProduct. " -"Zahrnuje filtrování, kontroly oprávnění a přepínání serializátoru na základě " -"požadované akce. Kromě toho poskytuje podrobnou akci pro zpracování zpětné " +"Zahrnuje filtrování, kontroly oprávnění a přepínání serializátoru na základě" +" požadované akce. Kromě toho poskytuje podrobnou akci pro zpracování zpětné " "vazby na instance OrderProduct" #: engine/core/viewsets.py:879 @@ -3401,8 +3406,8 @@ msgstr "Zpracovává operace související s údaji o zásobách v systému." msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." @@ -3423,9 +3428,9 @@ msgid "" "different HTTP methods, serializer overrides, and permission handling based " "on the request context." msgstr "" -"Tato třída poskytuje funkce sady pohledů pro správu objektů `Address`. Třída " -"AddressViewSet umožňuje operace CRUD, filtrování a vlastní akce související " -"s entitami adres. Obsahuje specializované chování pro různé metody HTTP, " +"Tato třída poskytuje funkce sady pohledů pro správu objektů `Address`. Třída" +" AddressViewSet umožňuje operace CRUD, filtrování a vlastní akce související" +" s entitami adres. Obsahuje specializované chování pro různé metody HTTP, " "přepisování serializátoru a zpracování oprávnění na základě kontextu " "požadavku." @@ -3445,5 +3450,5 @@ msgstr "" "Zpracovává operace související se značkami produktů v rámci aplikace. Tato " "třída poskytuje funkce pro načítání, filtrování a serializaci objektů " "Product Tag. Podporuje flexibilní filtrování podle konkrétních atributů " -"pomocí zadaného filtru backend a dynamicky používá různé serializátory podle " -"prováděné akce." +"pomocí zadaného filtru backend a dynamicky používá různé serializátory podle" +" prováděné akce." diff --git a/engine/core/locale/da_DK/LC_MESSAGES/django.mo b/engine/core/locale/da_DK/LC_MESSAGES/django.mo index e05ea04416280a77e77762095c17befcf4c14ec0..bfd04e8a329dff9803ef8c600ffae5f3a4c28f8f 100644 GIT binary patch delta 14869 zcmZA62YgT0|HtwB4I!}-5_?6=M2L{2ND)Cqk)W|DK?JcHF^ey?_g1sDt2L@k6;-RM z)UQTs*DAF~OBK~t{a^3zIr{MU-^b&4p3gbw-h1vD_kQvFKJNuzd%G_c$iBeg_|VI7 zN?>w9$C;MRai)i=)N!`gbeurkfn8jVa}=p|s@8TKAFPf!F$QyC11y4xSQOLH8^>Y+ zoP;`m31)X3xAQ)k(G;vkT_8Bdas06g(if*L&c|fTfwxiZ9$*0ejk(e9b;t3=;uuRu z%cDBhvyS8B$NpFb$6!TVg~hnPbC}Flp8h)4qGD;Rx$!BCBED-aQ{TjGQBN=fH8OKh zPq+?sqm7sscVh+o9#ilUmcrI?jx);TIGNboP3HFoj`JE7v5g$31rEa}_#J+Vd*gXR z+GR9$oO;Bg6U>P0MuyONvx&KJJJitk!9q9={cs8T;>W0w`y3179(1ecXUOQpi|C6_ zkj^^J8#Lm^aoC2?tC{1pC2o%m@YCj|{o_RA3)G1CCYiNV3N=MBSO$|&9ex`%fN3RcsjC%YPNNp zpJ+F~J#8r;(1FE<*E=$pn76azw8M69F~YR})ZN8#7E|yjg?Ygl-5uwDTp%u$AtcV% zlRB)N<~ZS$m+pw_a*HKfJjzw?~ zYR;#lreKbZ7a?oU?JOtLgNoIted{yAae|1Oykk~zAJhfLqAyOwTsRx|(|##t;|aTr z;+;WxccxTpXAWvD?ZgPYiq$Z1jG5X-SW){wkxW@ChM-Pdf?@a#Y9t<_%8QP59Ntk* z11yH4u_P|GZbP*@g?ewiK&`2$cg=Qt12w|k&<{6ZPVVpQBBT9!0JRt|pe}qHeKF@a z<`45DJIv{g^>8~j#6PhB))~(_!4{}pG7|IQY*hUR$Y432VR@`N!S4TLGTMF}upstA zoiG|T=W|dUS&g2aqdL3`{qZE~g>v22Key$1Cz|?Fs3{9aja+S12U|~M{Da8!rXUoj zVs+e#nzLKByx1gj<3^~()f$7bGkW6~RL3TwI=m2d!}T`K!W_g0P!IY&>inN3G5#9z z=M?y0uF2*}15huflBkY_pbsXaF5DS)!(O(07;3J^qK14SY6RD!ZnzzFpKon^0)vRJ zxXJjC@tR^*d2Y-}?2o!Z5!94aLS3LP>PAg5J9b62Pet9hA8G_fT4$o#ufX!S6*Xn& zQB&x?XB%XjYUZQ}s^?*-8`nd1q_wS2#iGQ+t@CXCCe(SmP#rpsVR#m`D7~kd8%Chw z1gxq3pGl?`1)ES$a1-?ePpm%EO^=JAdR!UxL~*D^)E0H)bX12&qdGhvb)7Y+c3+@6 ze%N{q{j~r8C8NcVZ-%*01o{#;#9Ww&ao8TK<1);H$1n;npl(oLrg?x0s3DF*O>I2p z#U#v)ov{q|R=xKBG%~u-e2l=us1E#t>R66hycsbB^<;fePc{Ozs;Ap{9_of`ZM+$E zoxK=>hf%NcKX5IE&1U>{!jEJ$bmuV=AELHZg*oQ48ip~%sThGPQFD9(E8%(66J?)k zUbz)eH)@W0FHFD!xEwWgTQCR@%w_!bLbyReess;_Bn-eIn1cQAEUH8C^UV-9!+7G3 zs3%;78i|dl>tvxu^Z=@Zf1^5FZh@JaFjTub3mAX(G>L-BI0?fs3j^>MY=Td*F4kXY zZa4-tr&Cc+wg{tf16IMSSOfjvGhfSwsE#C{&U+h+quXr@mZE+feuR;D2zBA-SP}gf z8Ec}3x-04%@ve}0s29X()D5m;aeRSMSo{OCid$OSqed(RU&Fzu#kUEyhR)k^{}twULIP^UW?)O) zf^OZ=Yo*zj`A|bu7B#0KsBKdnb)(v-kxE33NGDsKj(Pw$`r~w4zZ`Y_jkbQftv`Ue z{^^y>e^D}*ZN)PzOq^?#S#-gu3n!vp#T~IA_C#HHBx-0Uqt?s^sKvP*)&4N*{cs9( z-epwBAKUuutKDXs_^mc`9*dP|kb;_{si+I?$I^HTd*EXX#SUxCR82rV(JEB?4OkU- zVKm;u23U5jxo#S2m#lD;(W1G9>fvvw9(%7dH}u0`;&5v#EKfYx#!FEnxEnR+XHjb> z?}ugtLa`%p6uyabupwSYz1ZBL>&+_7#2^Y*VjzBvn(H&D8(hcA_yQxa@<+zbSdn-Z zYDBhKuiEmwADdszQ5Zt~K-3#{39?w-&S5gzCV!%CP=15CU`wn-JRC!Dm5q;JW#T7T z8-q9U9>>n;gG;eGu0eJ53~DNUH<|J{R6H1~a(`zt88y6U_1kRbu0Cq+2BL=cLyW-- zSObfEVlLPWqln$8C)jW)Dzk};^oIR&+P7oir_PV~iN zs3$syF_?3o*(D87i*o{Mst#c&K1PjL(AS!JH-9H5Q-=aKYRGn>7TGndj=lDqIa`Wx z#CuTXUf=N7FpR=z9E-Zab}Wg%pdQS1z;vJ*>c*Y1GETxC`uD#qGKDB8a?t!+PB>;G zo_fd({Y=yd%tsCFYSdS9GwQr=(Hk$Krr;OU`Oi>O^&A&r_V3L3%Tc>-J-RiAUy}I< zPoPd1b=WiQdE$6{4f|p+uEFoTcn{#~#B+|B zkJQm)jK7BdE(IFGkmJU#s3&+2^@K}N9s3OZafkIV)*wEQgV65>vt7sGMmo3wJ7c>O z=3DW_Nn+YP#3z_^iuunX6Mvc~qv2oJfH?bEo*EM{JDx?2)J4=9d1B*|=S+Dt`cR&P zxv-rr?~dyDNGyuuQ1#2P5w3TWxy+4!#V!;aJ?}U}iK|}V7cj27Xif;cY=*uxYD7XX z2xC!mo`PDGLs1?682#`Q>mJmNk6}3egdyn8^|PsnL@kPXSPWaD-V1%P8cxPA+<{Z@ z28QCmD-1O*#XOjB)x20*qt;3XD{j@zkp&3t64;a@bUi-B0{I=!S} zBG$%`n_R?;Epvu80 z*&&=C{gelDxp`WyR)vO5pPAJ;{BPC+4ZpyA`1~Jpfjs}R>S;Ig1%DTy{7;w5xr+<3 zxtuAKkM(wWZjjr@<>|l)7L=x{8~=8%p&yRTa6D?{e!xiX@BBk13M2BkJX4T{o)fI& zQ7@8N7>2u1+wLwF#YgCkdGoqFi!A`P28v+-md3VN1Jmj7G%Q2>l&5oR@f7tlCxl~e z;z;zzSp0<(TB3$BD!jjLaecnLR(T1o87=#fx8ugXkf)(*P*1)_4 z8Gk)d{etGi{-|xS96hg4tE-U9^INbq>VgTV7s&`zyKUA}_y+MK)atKW*o;&nYE894 zEyi@zVjNbO_pkQtYzk6wF?PTg*b+Mwae4mdV-a4u?UR-$gO4K>#XZT%HghaO;lbQL!j z4!}yprBK_rF_y<}sE^KMd<{QGtvUBSGFn{0{BMI6OH0%nD;3LPU)187je5d`sE%zw zJ;^>>{yl0@UctP08}Lyg>z7>qY;xo>GRwZ%~N5vY-CggU?etcsinF+#!{&AC=9}Q8>gYx%CKPezcOPeNW{sg#drqw zBFa(L<@u@=K+SC<)Z%G{x^O4dNc2O^=@9D#)ZEXv^);&{{phE_1`s$&h}2B=*& z)J-Oy%xG+e2e29zsAz7~0KF%(y0eLRZlh<_zBA@y!&0+~0cSd4La4K>6S!^~=}hFVm0u_m_0>NpcS;y%=kOI9%>R}M90 ztx?~GE~r&M3bj3_VJvRO0PX+Z$Y{v3RW(l%iDAS&u_Dex^?WCW;0+u5hnufj3|69i zAnHZ77}f3oR>9wFT(X*(!p5lb{urkHzl@9)#doL|&2!W?^NKJ}5QrL)>Zlh}47S0x zs9mzz)_;jwjQdg7If;6YoU=YeeG`1En^$`|^!)o@0vQc)GHNK(Q60)aeJs{tSGwW0ExHjHi!)JAd<@lrJD3Zfp+0WequKwuQKe|}qzR~@ z9%G$?>eyV=h^$7<^%>MiIIo#kY&2@|W}xb~VlrMr-LOVYGnI8wQ_~5xNK@QowC&PS zFPuTBo=!v!-2&7cuC?(lTYm)Au?wixeczViP{(yP^$h+qyH! z=tk>ML;D5l#jziC;j5^jdVt#Zfwj#Pg`%G9b<}x{Q7@WgTi*}$gl^PaPeEOGE0)8P z$a}%}XE!%_8XtUp-)#oCltjx$5u z6LtPv)b2Wf)$k8%`3B|%)dt<_*%&gq@D^Kf5!J(-4PBmp1B$|i#F?m}+kv{_H>l6) z3)B?UYGi(BOu;6^N3bpyjyL6PtV^ty;@SV2v*5-q&p)rFV=VCo)EwTkh9{W%42-Az zGi-p*P(xg&iTPN~Ma5Ta9Q}qVpI|*{E!)(TXEbI1Cvw6*Tj1Z!#9geLtsPSvhfwv_WT|7+cJkc$u!J^T2v)btF<2L;}ef* z*dMdwXKA$MZHlQqxOG$)cd3_#-e*XnR;Xn;9T@>X|~@Y z)Em#Mm09)C7)(3>H3f4~--dIjHI)BNvu5g}7T*A5e>W$jl)(=B< zXg>OA{~sr##dZ!ghb7vY?N|Y|s_S4R&OmkSYa2gAy_hPrGeh1KHFaH4yC)6x>Ro^u zxh<&nCr}UcCq{FBr&N1$Vr$f#c0xT-8tN~ZgHVfRHtH3-1~r$vP(ykgb-`yCjio!7 z7gHN-Mce~5McYtoB%FsD`Xutt$mg}~pHMb{{4b>GDkIIKO*XPR4wCfQ*ZOnnQQ203 zJ-VtP={)f`oy_qe4#!K_l)B}peXT=Je3RIpavf*M*R=V9Jc zL@tzOPu@huYMXCExi|Tr%{iWbq*gYX@@=+FDe^NY)6N+|StVP(m6-33bC~pud^g%v zB|jN;w8aQLe+(JE7oJ0_R!3FJcmaBjW#sv8c#hZc47um{i7lhrY0n>XN&h3Sw`M5m zJL;E^mXZ2UcMkOrm>o&wNcuJ88UK9BaCE2e2>waKM%Wj1)TUhfR|nr2=PF+IL@YQg zZQH5nIBAhG9Nj4AOYVG0z6)s%sR7sOPFZ2hK=+$uKBeL_0v#iX*W)?T50vTqJ%=*A zqV?X_5lQ?UE2551NK46*7foTnF67-bXjl)bh-P&)o1@sq)Mm-mn7UHujXUz4s< z_!=i|$0MYkcA9-K$Iu?=V_lYx>d|xHvld9mD zPyR7=o%~Jg`Ew10-_LV}7j_pSr{f2M=g)A;rjl!C>lWZG;^|n6OPwI!pZp%oNvz|5 zRr$f>^*#KMHl0X1wvfu$Hs`Sv=|lTcaMEeCl2p<*;HB;~vw58yMt+#R&@Nm4Gk!^m zBKeRm(e8Ir57IPZ9dC2aYLXtk8i{wlbKBPaLHvOxWd;qF6X;i78G9454!%!!VqK-ev>lkhANj{MLLp(~VKqOEUe{CV>yZ%cD5) zR|GY2t}Seey-9JTUbOv*x@qJ`kzYvaK&+z+);C!v%a(mkT$D6`bei<7Ehp=&(fpsZ z1--3(s93^9KPTQmYDJn&+4r_yCvG7>3;U5$X{%!iX(Z*tNP9_so>G45kl$wW@8G|r zsg$)P4b=R%w3WN@Acap!A*A0)Iy!TM+$QV!vxO}$M)?qX^Es4#Yuogo>Lwb3*Z;-o43RXi~F^UuGQ1&iq0%dFQ)uSH4K2j^&UUe%;D>yHaRG;+n z*iSx|;2Tmc(%*`0eLsDaUmh>tgd=Q0B#k1tK^k#Gd!s~LO5EADS!K%=#*p46zK&}- zx3;~>%R96o-bZ(&-nfzT_pPhVv%HOl+iPo>=m3@;GO8Y(9|6kb?*K*=;QWfH} zG+0JDOqx&Jg7QUJ0Fy~WC=Vm)7)|G}yA>Lg9~>-(~4Q18steuJ{UNjmPz+R!r1%eUv?{yl;+QZiGs z{E`osop*ES_gUwMZK&au+9S)o@n-RC^|^KGpB`);qM@r*iT?v}R-|75 delta 14876 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 diff --git a/engine/core/locale/da_DK/LC_MESSAGES/django.po b/engine/core/locale/da_DK/LC_MESSAGES/django.po index a8fe7c6f..863cabe5 100644 --- a/engine/core/locale/da_DK/LC_MESSAGES/django.po +++ b/engine/core/locale/da_DK/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -27,7 +27,8 @@ msgstr "Er aktiv" #: engine/core/abstract.py: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." @@ -154,7 +155,8 @@ msgstr "Leveret" msgid "canceled" msgstr "Annulleret" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Mislykket" @@ -205,8 +207,7 @@ msgid "" "apply key, data and timeout with authentication to write data to cache." msgstr "" "Anvend kun en nøgle til at læse tilladte data fra cachen.\n" -"Anvend nøgle, data og timeout med autentificering for at skrive data til " -"cachen." +"Anvend nøgle, data og timeout med autentificering for at skrive data til cachen." #: engine/core/docs/drf/views.py:62 msgid "get a list of supported languages" @@ -271,7 +272,8 @@ msgstr "" "attributter" #: engine/core/docs/drf/viewsets.py:96 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Omskriv nogle felter i en eksisterende attributgruppe og gem ikke-" "redigerbare felter" @@ -324,10 +326,11 @@ msgstr "" "Omskriv en eksisterende attributværdi, der gemmer ikke-redigerbare filer" #: engine/core/docs/drf/viewsets.py:186 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" -"Omskriv nogle felter i en eksisterende attributværdi og gem ikke-redigerbare " -"felter" +"Omskriv nogle felter i en eksisterende attributværdi og gem ikke-redigerbare" +" felter" #: engine/core/docs/drf/viewsets.py:196 engine/core/docs/drf/viewsets.py:197 msgid "list all categories (simple view)" @@ -377,16 +380,17 @@ msgstr "Liste over alle kategorier (enkel visning)" #: engine/core/docs/drf/viewsets.py:275 msgid "for non-staff users, only their own orders are returned." -msgstr "For ikke-ansatte brugere er det kun deres egne ordrer, der returneres." +msgstr "" +"For ikke-ansatte brugere er det kun deres egne ordrer, der returneres." #: engine/core/docs/drf/viewsets.py:281 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" "Substringsøgning uden brug af store og små bogstaver på tværs af " -"human_readable_id, order_products.product.name og order_products.product." -"partnumber" +"human_readable_id, order_products.product.name og " +"order_products.product.partnumber" #: engine/core/docs/drf/viewsets.py:288 msgid "Filter orders with buy_time >= this ISO 8601 datetime" @@ -418,13 +422,13 @@ msgstr "Filtrer efter ordrestatus (case-insensitive substring match)" #: engine/core/docs/drf/viewsets.py:324 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "Bestil efter en af: uuid, human_readable_id, user_email, user, status, " -"created, modified, buy_time, random. Præfiks med '-' for faldende rækkefølge " -"(f.eks. '-buy_time')." +"created, modified, buy_time, random. Præfiks med '-' for faldende rækkefølge" +" (f.eks. '-buy_time')." #: engine/core/docs/drf/viewsets.py:336 msgid "retrieve a single order (detailed view)" @@ -594,7 +598,8 @@ msgstr "Fjern et produkt fra ønskelisten" #: engine/core/docs/drf/viewsets.py:524 msgid "removes a product from an wishlist using the provided `product_uuid`" msgstr "" -"Fjerner et produkt fra en ønskeliste ved hjælp af den angivne `product_uuid`." +"Fjerner et produkt fra en ønskeliste ved hjælp af den angivne " +"`product_uuid`." #: engine/core/docs/drf/viewsets.py:532 msgid "add many products to wishlist" @@ -621,28 +626,18 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "Filtrer efter et eller flere attributnavn/værdipar. \n" "- **Syntaks**: `attr_name=method-value[;attr2=method2-value2]...`.\n" -"- **Metoder** (standard er `icontains`, hvis udeladt): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`.\n" -"- Værdiindtastning**: JSON forsøges først (så du kan sende lister/dikter), " -"`true`/`false` for booleans, heltal, floats; ellers behandles de som " -"strenge. \n" -"- **Base64**: præfiks med `b64-` for URL-sikker base64-kodning af den rå " -"værdi. \n" +"- **Metoder** (standard er `icontains`, hvis udeladt): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`.\n" +"- Værdiindtastning**: JSON forsøges først (så du kan sende lister/dikter), `true`/`false` for booleans, heltal, floats; ellers behandles de som strenge. \n" +"- **Base64**: præfiks med `b64-` for URL-sikker base64-kodning af den rå værdi. \n" "Eksempler på dette: \n" "`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`,\n" "`b64-description=icontains-aGVhdC1jb2xk`." @@ -657,12 +652,10 @@ msgstr "(præcis) Produkt-UUID" #: engine/core/docs/drf/viewsets.py:581 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Kommasepareret liste over felter, der skal sorteres efter. Præfiks med `-` " -"for faldende. \n" +"Kommasepareret liste over felter, der skal sorteres efter. Præfiks med `-` for faldende. \n" "**Tilladt:** uuid, vurdering, navn, slug, oprettet, ændret, pris, tilfældig" #: engine/core/docs/drf/viewsets.py:598 engine/core/docs/drf/viewsets.py:599 @@ -1131,7 +1124,7 @@ msgstr "Cachelagrede data" msgid "camelized JSON data from the requested URL" msgstr "Cameliserede JSON-data fra den ønskede URL" -#: engine/core/graphene/mutations.py:67 engine/core/views.py:256 +#: engine/core/graphene/mutations.py:67 engine/core/views.py:257 msgid "only URLs starting with http(s):// are allowed" msgstr "Kun URL'er, der starter med http(s)://, er tilladt." @@ -1215,11 +1208,11 @@ msgstr "Køb en ordre" #: engine/core/graphene/mutations.py:516 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "" -"Send venligst attributterne som en streng formateret som attr1=værdi1," -"attr2=værdi2" +"Send venligst attributterne som en streng formateret som " +"attr1=værdi1,attr2=værdi2" #: engine/core/graphene/mutations.py:549 msgid "add or delete a feedback for orderproduct" @@ -1291,10 +1284,12 @@ msgstr "Markup-procentdel" #: 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." #: engine/core/graphene/object_types.py:203 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" "Minimums- og maksimumspriser for produkter i denne kategori, hvis de er " "tilgængelige." @@ -1602,12 +1597,12 @@ msgid "" msgstr "" "Repræsenterer en vendor-enhed, der er i stand til at lagre oplysninger om " "eksterne leverandører og deres interaktionskrav. Vendor-klassen bruges til " -"at definere og administrere oplysninger om en ekstern leverandør. Den gemmer " -"leverandørens navn, godkendelsesoplysninger, der kræves til kommunikation, " +"at definere og administrere oplysninger om en ekstern leverandør. Den gemmer" +" leverandørens navn, godkendelsesoplysninger, der kræves til kommunikation, " "og den procentvise markering, der anvendes på produkter, der hentes fra " "leverandøren. Denne model vedligeholder også yderligere metadata og " -"begrænsninger, hvilket gør den velegnet til brug i systemer, der interagerer " -"med tredjepartsleverandører." +"begrænsninger, hvilket gør den velegnet til brug i systemer, der interagerer" +" med tredjepartsleverandører." #: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" @@ -1663,8 +1658,8 @@ msgstr "" "identificere produkter. ProductTag-klassen er designet til entydigt at " "identificere og klassificere produkter gennem en kombination af en intern " "tag-identifikator og et brugervenligt visningsnavn. Den understøtter " -"operationer, der eksporteres gennem mixins, og giver mulighed for tilpasning " -"af metadata til administrative formål." +"operationer, der eksporteres gennem mixins, og giver mulighed for tilpasning" +" af metadata til administrative formål." #: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" @@ -1723,9 +1718,9 @@ msgstr "" "Klassen indeholder felter til metadata og visuel repræsentation, som " "fungerer som et fundament for kategorirelaterede funktioner. Denne klasse " "bruges typisk til at definere og administrere produktkategorier eller andre " -"lignende grupperinger i en applikation, så brugere eller administratorer kan " -"angive navn, beskrivelse og hierarki for kategorier samt tildele attributter " -"som billeder, tags eller prioritet." +"lignende grupperinger i en applikation, så brugere eller administratorer kan" +" angive navn, beskrivelse og hierarki for kategorier samt tildele " +"attributter som billeder, tags eller prioritet." #: engine/core/models.py:274 msgid "upload an image representing this category" @@ -1776,12 +1771,13 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" -"Repræsenterer et brand-objekt i systemet. Denne klasse håndterer oplysninger " -"og attributter relateret til et brand, herunder dets navn, logoer, " -"beskrivelse, tilknyttede kategorier, en unik slug og prioriteret rækkefølge. " -"Den gør det muligt at organisere og repræsentere brand-relaterede data i " +"Repræsenterer et brand-objekt i systemet. Denne klasse håndterer oplysninger" +" og attributter relateret til et brand, herunder dets navn, logoer, " +"beskrivelse, tilknyttede kategorier, en unik slug og prioriteret rækkefølge." +" Den gør det muligt at organisere og repræsentere brand-relaterede data i " "applikationen." #: engine/core/models.py:448 @@ -1826,8 +1822,8 @@ msgstr "Kategorier" #: engine/core/models.py:508 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 " @@ -1835,8 +1831,8 @@ msgid "" msgstr "" "Repræsenterer lageret af et produkt, der administreres i systemet. Denne " "klasse giver detaljer om forholdet mellem leverandører, produkter og deres " -"lageroplysninger samt lagerrelaterede egenskaber som pris, købspris, mængde, " -"SKU og digitale aktiver. Den er en del af lagerstyringssystemet for at " +"lageroplysninger samt lagerrelaterede egenskaber som pris, købspris, mængde," +" SKU og digitale aktiver. Den er en del af lagerstyringssystemet for at " "muliggøre sporing og evaluering af produkter, der er tilgængelige fra " "forskellige leverandører." @@ -1921,8 +1917,8 @@ msgstr "" "egenskaber til at hente vurderinger, antal tilbagemeldinger, pris, antal og " "samlede ordrer. Designet til brug i et system, der håndterer e-handel eller " "lagerstyring. Denne klasse interagerer med relaterede modeller (såsom " -"Category, Brand og ProductTag) og administrerer caching for hyppigt anvendte " -"egenskaber for at forbedre ydeevnen. Den bruges til at definere og " +"Category, Brand og ProductTag) og administrerer caching for hyppigt anvendte" +" egenskaber for at forbedre ydeevnen. Den bruges til at definere og " "manipulere produktdata og tilhørende oplysninger i en applikation." #: engine/core/models.py:585 @@ -1978,13 +1974,13 @@ 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." @@ -2040,7 +2036,8 @@ msgstr "er filtrerbar" #: engine/core/models.py:759 msgid "designates whether this attribute can be used for filtering or not" msgstr "" -"Hvilke attributter og værdier, der kan bruges til at filtrere denne kategori." +"Hvilke attributter og værdier, der kan bruges til at filtrere denne " +"kategori." #: engine/core/models.py:771 engine/core/models.py:789 #: engine/core/templates/digital_order_delivered_email.html:134 @@ -2049,9 +2046,9 @@ msgstr "Attribut" #: engine/core/models.py:777 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 " @@ -2073,8 +2070,8 @@ msgstr "Den specifikke værdi for denne attribut" #: engine/core/models.py:815 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" @@ -2122,8 +2119,8 @@ msgid "" "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 " @@ -2199,8 +2196,8 @@ msgid "" "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 " @@ -2223,14 +2220,14 @@ msgstr "Uafklaret" #: engine/core/models.py:1014 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 " @@ -2305,9 +2302,9 @@ msgid "" msgstr "" "Repræsenterer en kampagnekode, der kan bruges til rabatter, og styrer dens " "gyldighed, rabattype og anvendelse. PromoCode-klassen gemmer oplysninger om " -"en kampagnekode, herunder dens unikke identifikator, rabattegenskaber (beløb " -"eller procent), gyldighedsperiode, tilknyttet bruger (hvis nogen) og status " -"for dens brug. Den indeholder funktionalitet til at validere og anvende " +"en kampagnekode, herunder dens unikke identifikator, rabattegenskaber (beløb" +" eller procent), gyldighedsperiode, tilknyttet bruger (hvis nogen) og status" +" for dens brug. Den indeholder funktionalitet til at validere og anvende " "kampagnekoden på en ordre og samtidig sikre, at begrænsningerne er opfyldt." #: engine/core/models.py:1087 @@ -2396,8 +2393,8 @@ msgstr "Ugyldig rabattype for promokode {self.uuid}!" msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" @@ -2405,8 +2402,8 @@ msgstr "" "ordre i applikationen, herunder dens forskellige attributter såsom " "fakturerings- og forsendelsesoplysninger, status, tilknyttet bruger, " "notifikationer og relaterede operationer. Ordrer kan have tilknyttede " -"produkter, kampagner kan anvendes, adresser kan indstilles, og forsendelses- " -"eller faktureringsoplysninger kan opdateres. Ligeledes understøtter " +"produkter, kampagner kan anvendes, adresser kan indstilles, og forsendelses-" +" eller faktureringsoplysninger kan opdateres. Ligeledes understøtter " "funktionaliteten håndtering af produkterne i ordrens livscyklus." #: engine/core/models.py:1213 @@ -2440,8 +2437,8 @@ msgstr "Bestillingsstatus" #: engine/core/models.py:1243 engine/core/models.py:1769 msgid "json structure of notifications to display to users" msgstr "" -"JSON-struktur af meddelelser, der skal vises til brugerne, i admin UI bruges " -"tabelvisningen" +"JSON-struktur af meddelelser, der skal vises til brugerne, i admin UI bruges" +" tabelvisningen" #: engine/core/models.py:1249 msgid "json representation of order attributes for this order" @@ -2495,7 +2492,8 @@ msgstr "Du kan ikke tilføje flere produkter, end der er på lager" #: engine/core/models.py:1428 msgid "you cannot remove products from an order that is not a pending one" msgstr "" -"Du kan ikke fjerne produkter fra en ordre, der ikke er en igangværende ordre." +"Du kan ikke fjerne produkter fra en ordre, der ikke er en igangværende " +"ordre." #: engine/core/models.py:1416 #, python-brace-format @@ -2529,7 +2527,8 @@ msgstr "Du kan ikke købe en tom ordre!" #: engine/core/models.py:1522 msgid "you cannot buy an order without a user" msgstr "" -"Du kan ikke fjerne produkter fra en ordre, der ikke er en igangværende ordre." +"Du kan ikke fjerne produkter fra en ordre, der ikke er en igangværende " +"ordre." #: engine/core/models.py:1536 msgid "a user without a balance cannot buy with balance" @@ -2578,9 +2577,11 @@ msgid "feedback comments" msgstr "Kommentarer til feedback" #: engine/core/models.py:1719 -msgid "references the specific product in an order that this feedback is about" +msgid "" +"references the specific product in an order that this feedback is about" msgstr "" -"Henviser til det specifikke produkt i en ordre, som denne feedback handler om" +"Henviser til det specifikke produkt i en ordre, som denne feedback handler " +"om" #: engine/core/models.py:1720 msgid "related order product" @@ -2607,8 +2608,8 @@ msgid "" "Product models and stores a reference to them." msgstr "" "Repræsenterer produkter forbundet med ordrer og deres attributter. " -"OrderProduct-modellen vedligeholder oplysninger om et produkt, der er en del " -"af en ordre, herunder detaljer som købspris, antal, produktattributter og " +"OrderProduct-modellen vedligeholder oplysninger om et produkt, der er en del" +" af en ordre, herunder detaljer som købspris, antal, produktattributter og " "status. Den administrerer notifikationer til brugeren og administratorer og " "håndterer operationer som f.eks. at returnere produktsaldoen eller tilføje " "feedback. Modellen indeholder også metoder og egenskaber, der understøtter " @@ -2684,7 +2685,8 @@ msgstr "Forkert handling angivet for feedback: {action}!" #: engine/core/models.py:1888 msgid "you cannot feedback an order which is not received" msgstr "" -"Du kan ikke fjerne produkter fra en ordre, der ikke er en igangværende ordre." +"Du kan ikke fjerne produkter fra en ordre, der ikke er en igangværende " +"ordre." #: engine/core/models.py:1894 msgid "name" @@ -2723,9 +2725,9 @@ msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" "Repræsenterer downloadfunktionen for digitale aktiver, der er forbundet med " "ordrer. DigitalAssetDownload-klassen giver mulighed for at administrere og " @@ -2779,8 +2781,8 @@ msgid "No customer activity in the last 30 days." msgstr "Ingen kundeaktivitet i de sidste 30 dage." #: engine/core/templates/admin/dashboard/_daily_sales.html:5 -msgid "Daily sales (30d)" -msgstr "Dagligt salg (30d)" +msgid "Daily sales" +msgstr "Dagligt salg" #: engine/core/templates/admin/dashboard/_daily_sales.html:59 msgid "Orders (FINISHED)" @@ -2791,6 +2793,7 @@ msgid "Gross revenue" msgstr "Bruttoindtægter" #: engine/core/templates/admin/dashboard/_daily_sales.html:106 +#: engine/core/templates/admin/dashboard/_kpis.html:20 msgid "Orders" msgstr "Bestillinger" @@ -2798,6 +2801,10 @@ msgstr "Bestillinger" msgid "Gross" msgstr "Brutto" +#: engine/core/templates/admin/dashboard/_header.html:3 +msgid "Dashboard" +msgstr "Dashboard" + #: engine/core/templates/admin/dashboard/_income_overview.html:7 msgid "Income overview" msgstr "Oversigt over indtægter" @@ -2826,20 +2833,32 @@ msgid "No data" msgstr "Ingen dato" #: engine/core/templates/admin/dashboard/_kpis.html:6 -msgid "Revenue (gross, 30d)" -msgstr "Indtægter (brutto, 30d)" +msgid "GMV" +msgstr "GMV" -#: engine/core/templates/admin/dashboard/_kpis.html:15 -msgid "Revenue (net, 30d)" -msgstr "Indtægter (netto, 30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:34 +msgid "AOV" +msgstr "AOV" -#: engine/core/templates/admin/dashboard/_kpis.html:24 -msgid "Returns (30d)" -msgstr "Returnerer (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:48 +msgid "Net revenue" +msgstr "Nettoomsætning" -#: engine/core/templates/admin/dashboard/_kpis.html:33 -msgid "Processed orders (30d)" -msgstr "Behandlede ordrer (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:62 +msgid "Refund rate" +msgstr "Tilbagebetalingssats" + +#: engine/core/templates/admin/dashboard/_kpis.html:73 +msgid "returned" +msgstr "Returneret" + +#: engine/core/templates/admin/dashboard/_low_stock.html:5 +msgid "Low stock" +msgstr "Lavt lager" + +#: engine/core/templates/admin/dashboard/_low_stock.html:29 +msgid "No low stock items." +msgstr "Ingen varer på lavt lager." #: engine/core/templates/admin/dashboard/_most_returned.html:5 msgid "Most returned products (30d)" @@ -2854,11 +2873,11 @@ msgid "Most wished product" msgstr "Mest ønskede produkt" #: engine/core/templates/admin/dashboard/_product_lists.html:33 -#: engine/core/templates/admin/dashboard/_product_lists.html:67 +#: engine/core/templates/admin/dashboard/_product_lists.html:68 msgid "No data yet." msgstr "Ingen data endnu." -#: engine/core/templates/admin/dashboard/_product_lists.html:40 +#: engine/core/templates/admin/dashboard/_product_lists.html:41 msgid "Most popular product" msgstr "Mest populære produkt" @@ -2894,10 +2913,6 @@ msgstr "Ingen kategorisalg inden for de sidste 30 dage." msgid "Django site admin" msgstr "Django site-administrator" -#: engine/core/templates/admin/index.html:20 -msgid "Dashboard" -msgstr "Dashboard" - #: 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 @@ -2927,8 +2942,7 @@ msgstr "Hej %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" "Tak for din ordre #%(order.pk)s! Vi er glade for at kunne informere dig om, " @@ -3042,8 +3056,7 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" "Tak for din bestilling! Vi er glade for at kunne bekræfte dit køb. Nedenfor " @@ -3114,9 +3127,10 @@ msgstr "Parameteren NOMINATIM_URL skal være konfigureret!" #, python-brace-format msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "" -"Billedets dimensioner bør ikke overstige w{max_width} x h{max_height} pixels." +"Billedets dimensioner bør ikke overstige w{max_width} x h{max_height} " +"pixels." -#: engine/core/views.py:90 +#: engine/core/views.py:91 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." @@ -3124,7 +3138,7 @@ msgstr "" "Håndterer anmodningen om sitemap-indekset og returnerer et XML-svar. Den " "sikrer, at svaret indeholder den passende indholdstypeheader for XML." -#: engine/core/views.py:105 +#: engine/core/views.py:106 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " @@ -3134,17 +3148,17 @@ msgstr "" "behandler anmodningen, henter det relevante sitemap-detaljesvar og " "indstiller Content-Type-headeren til XML." -#: engine/core/views.py:140 +#: engine/core/views.py:141 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "" "Returnerer en liste over understøttede sprog og de tilhørende oplysninger." -#: engine/core/views.py:172 +#: engine/core/views.py:173 msgid "Returns the parameters of the website as a JSON object." msgstr "Returnerer hjemmesidens parametre som et JSON-objekt." -#: engine/core/views.py:191 +#: engine/core/views.py:192 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." @@ -3152,11 +3166,11 @@ msgstr "" "Håndterer cache-operationer som f.eks. læsning og indstilling af cachedata " "med en specificeret nøgle og timeout." -#: engine/core/views.py:218 +#: engine/core/views.py:219 msgid "Handles `contact us` form submissions." msgstr "Håndterer indsendelser af `kontakt os`-formularer." -#: engine/core/views.py:239 +#: engine/core/views.py:240 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." @@ -3164,66 +3178,58 @@ msgstr "" "Håndterer anmodninger om behandling og validering af URL'er fra indgående " "POST-anmodninger." -#: engine/core/views.py:279 +#: engine/core/views.py:280 msgid "Handles global search queries." msgstr "Håndterer globale søgeforespørgsler." -#: engine/core/views.py:294 +#: engine/core/views.py:295 msgid "Handles the logic of buying as a business without registration." msgstr "Håndterer logikken i at købe som en virksomhed uden registrering." -#: engine/core/views.py:331 +#: engine/core/views.py:332 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Håndterer download af et digitalt aktiv, der er knyttet til en ordre.\n" -"Denne funktion forsøger at betjene den digitale aktivfil, der ligger i " -"projektets lagermappe. Hvis filen ikke findes, udløses en HTTP 404-fejl som " -"tegn på, at ressourcen ikke er tilgængelig." +"Denne funktion forsøger at betjene den digitale aktivfil, der ligger i projektets lagermappe. Hvis filen ikke findes, udløses en HTTP 404-fejl som tegn på, at ressourcen ikke er tilgængelig." -#: engine/core/views.py:342 +#: engine/core/views.py:343 msgid "order_product_uuid is required" msgstr "order_product_uuid er påkrævet" -#: engine/core/views.py:349 +#: engine/core/views.py:350 msgid "order product does not exist" msgstr "Bestil produkt findes ikke" -#: engine/core/views.py:352 +#: engine/core/views.py:353 msgid "you can only download the digital asset once" msgstr "Du kan kun downloade det digitale aktiv én gang" -#: engine/core/views.py:355 +#: engine/core/views.py:356 msgid "the order must be paid before downloading the digital asset" msgstr "Ordren skal betales, før det digitale aktiv downloades." -#: engine/core/views.py:361 +#: engine/core/views.py:362 msgid "the order product does not have a product" msgstr "Ordreproduktet har ikke et produkt" -#: engine/core/views.py:398 +#: engine/core/views.py:399 msgid "favicon not found" msgstr "Favicon ikke fundet" -#: engine/core/views.py:403 +#: engine/core/views.py:404 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Håndterer anmodninger om et websteds favicon.\n" -"Denne funktion forsøger at servere favicon-filen, der ligger i projektets " -"statiske mappe. Hvis favicon-filen ikke findes, udløses en HTTP 404-fejl for " -"at angive, at ressourcen ikke er tilgængelig." +"Denne funktion forsøger at servere favicon-filen, der ligger i projektets statiske mappe. Hvis favicon-filen ikke findes, udløses en HTTP 404-fejl for at angive, at ressourcen ikke er tilgængelig." -#: engine/core/views.py:415 +#: engine/core/views.py:416 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 " @@ -3231,11 +3237,11 @@ msgstr "" "administratorinterfacets indeksside. Den bruger Djangos `redirect`-funktion " "til at håndtere HTTP-omdirigeringen." -#: engine/core/views.py:428 +#: engine/core/views.py:429 msgid "Returns current version of the eVibes. " msgstr "Returnerer den aktuelle version af eVibes." -#: engine/core/views.py:637 +#: engine/core/views.py:793 msgid "Returns custom variables for Dashboard. " msgstr "Returnerer brugerdefinerede variabler til Dashboard." @@ -3255,10 +3261,11 @@ msgstr "" #: engine/core/viewsets.py:156 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, " @@ -3287,11 +3294,11 @@ msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" -"Et visningssæt til håndtering af AttributeValue-objekter. Dette viewet giver " -"funktionalitet til at liste, hente, oprette, opdatere og slette " +"Et visningssæt til håndtering af AttributeValue-objekter. Dette viewet giver" +" funktionalitet til at liste, hente, oprette, opdatere og slette " "AttributeValue-objekter. Det integreres med Django REST Framework's viewset-" "mekanismer og bruger passende serializers til forskellige handlinger. " "Filtreringsfunktioner leveres gennem DjangoFilterBackend." @@ -3317,8 +3324,8 @@ msgid "" "uses Django's ViewSet framework to simplify the implementation of API " "endpoints for Brand objects." msgstr "" -"Repræsenterer et visningssæt til håndtering af Brand-instanser. Denne klasse " -"giver funktionalitet til at forespørge, filtrere og serialisere Brand-" +"Repræsenterer et visningssæt til håndtering af Brand-instanser. Denne klasse" +" giver funktionalitet til at forespørge, filtrere og serialisere Brand-" "objekter. Den bruger Djangos ViewSet-rammeværk til at forenkle " "implementeringen af API-slutpunkter for Brand-objekter." @@ -3335,9 +3342,9 @@ 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." #: engine/core/viewsets.py:574 @@ -3348,9 +3355,9 @@ msgid "" "actions. The purpose of this class is to provide streamlined access to " "Vendor-related resources through the Django REST framework." msgstr "" -"Repræsenterer et visningssæt til håndtering af Vendor-objekter. Dette viewet " -"gør det muligt at hente, filtrere og serialisere Vendor-data. Det definerer " -"queryset, filterkonfigurationer og serializer-klasser, der bruges til at " +"Repræsenterer et visningssæt til håndtering af Vendor-objekter. Dette viewet" +" gør det muligt at hente, filtrere og serialisere Vendor-data. Det definerer" +" queryset, filterkonfigurationer og serializer-klasser, der bruges til at " "håndtere forskellige handlinger. Formålet med denne klasse er at give " "strømlinet adgang til Vendor-relaterede ressourcer gennem Django REST-" "frameworket." @@ -3360,16 +3367,16 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `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." #: engine/core/viewsets.py:621 @@ -3377,14 +3384,14 @@ msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" "ViewSet til håndtering af ordrer og relaterede operationer. Denne klasse " -"indeholder funktionalitet til at hente, ændre og administrere ordreobjekter. " -"Den indeholder forskellige endpoints til håndtering af ordreoperationer " +"indeholder funktionalitet til at hente, ændre og administrere ordreobjekter." +" Den indeholder forskellige endpoints til håndtering af ordreoperationer " "såsom tilføjelse eller fjernelse af produkter, udførelse af køb for " "registrerede såvel som uregistrerede brugere og hentning af den aktuelle " "godkendte brugers afventende ordrer. ViewSet bruger flere serializers " @@ -3395,13 +3402,13 @@ msgstr "" msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "Indeholder et visningssæt til håndtering af OrderProduct-enheder. Dette " -"visningssæt muliggør CRUD-operationer og brugerdefinerede handlinger, der er " -"specifikke for OrderProduct-modellen. Det omfatter filtrering, kontrol af " +"visningssæt muliggør CRUD-operationer og brugerdefinerede handlinger, der er" +" specifikke for OrderProduct-modellen. Det omfatter filtrering, kontrol af " "tilladelser og skift af serializer baseret på den ønskede handling. " "Derudover indeholder det en detaljeret handling til håndtering af feedback " "på OrderProduct-instanser." @@ -3430,8 +3437,8 @@ msgstr "Håndterer operationer relateret til lagerdata i systemet." msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." @@ -3452,11 +3459,11 @@ msgid "" "different HTTP methods, serializer overrides, and permission handling based " "on the request context." msgstr "" -"Denne klasse giver viewset-funktionalitet til håndtering af `Address`-" -"objekter. AddressViewSet-klassen muliggør CRUD-operationer, filtrering og " -"brugerdefinerede handlinger relateret til adresseenheder. Den omfatter " -"specialiseret adfærd for forskellige HTTP-metoder, tilsidesættelse af " -"serializer og håndtering af tilladelser baseret på anmodningskonteksten." +"Denne klasse giver viewset-funktionalitet til håndtering af " +"`Address`-objekter. AddressViewSet-klassen muliggør CRUD-operationer, " +"filtrering og brugerdefinerede handlinger relateret til adresseenheder. Den " +"omfatter specialiseret adfærd for forskellige HTTP-metoder, tilsidesættelse " +"af serializer og håndtering af tilladelser baseret på anmodningskonteksten." #: engine/core/viewsets.py:1123 #, python-brace-format diff --git a/engine/core/locale/de_DE/LC_MESSAGES/django.mo b/engine/core/locale/de_DE/LC_MESSAGES/django.mo index da74cdf72a5222525d2bed17c99657497b974fe2..484d3724e70c6ce245ff9ae22c52f920eb3ef50e 100644 GIT binary patch delta 14903 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 diff --git a/engine/core/locale/de_DE/LC_MESSAGES/django.po b/engine/core/locale/de_DE/LC_MESSAGES/django.po index 72c7b1b5..baa2cd91 100644 --- a/engine/core/locale/de_DE/LC_MESSAGES/django.po +++ b/engine/core/locale/de_DE/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -29,7 +29,8 @@ msgstr "Ist aktiv" #: engine/core/abstract.py: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." @@ -156,7 +157,8 @@ msgstr "Geliefert" msgid "canceled" msgstr "Abgesagt" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Gescheitert" @@ -207,10 +209,8 @@ msgid "" "apply only a key to read permitted data from cache.\n" "apply key, data and timeout with authentication to write data to cache." msgstr "" -"Wenden Sie nur einen Schlüssel an, um erlaubte Daten aus dem Cache zu " -"lesen.\n" -"Schlüssel, Daten und Timeout mit Authentifizierung anwenden, um Daten in den " -"Cache zu schreiben." +"Wenden Sie nur einen Schlüssel an, um erlaubte Daten aus dem Cache zu lesen.\n" +"Schlüssel, Daten und Timeout mit Authentifizierung anwenden, um Daten in den Cache zu schreiben." #: engine/core/docs/drf/views.py:62 msgid "get a list of supported languages" @@ -276,7 +276,8 @@ msgstr "" "Editierbarkeit" #: engine/core/docs/drf/viewsets.py:96 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Umschreiben einiger Felder einer bestehenden Attributgruppe, wobei nicht " "editierbare Felder gespeichert werden" @@ -306,8 +307,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:141 msgid "rewrite some fields of an existing attribute saving non-editables" msgstr "" -"Umschreiben einiger Felder eines vorhandenen Attributs, um nicht editierbare " -"Daten zu speichern" +"Umschreiben einiger Felder eines vorhandenen Attributs, um nicht editierbare" +" Daten zu speichern" #: engine/core/docs/drf/viewsets.py:151 msgid "list all attribute values (simple view)" @@ -332,7 +333,8 @@ msgstr "" "Editierbarkeit" #: engine/core/docs/drf/viewsets.py:186 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" "Umschreiben einiger Felder eines vorhandenen Attributwerts, wobei nicht " "bearbeitbare Daten gespeichert werden" @@ -365,8 +367,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:244 engine/core/docs/drf/viewsets.py:245 msgid "rewrite some fields of an existing category saving non-editables" msgstr "" -"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare " -"Daten zu speichern" +"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare" +" Daten zu speichern" #: engine/core/docs/drf/viewsets.py:252 engine/core/docs/drf/viewsets.py:704 #: engine/core/docs/drf/viewsets.py:988 @@ -391,12 +393,12 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:281 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" "Groß- und Kleinschreibung unempfindliche Teilstringsuche über " -"human_readable_id, order_products.product.name und order_products.product." -"partnumber" +"human_readable_id, order_products.product.name und " +"order_products.product.partnumber" #: engine/core/docs/drf/viewsets.py:288 msgid "Filter orders with buy_time >= this ISO 8601 datetime" @@ -432,9 +434,9 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:324 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "Sortierung nach einem von: uuid, human_readable_id, user_email, user, " "status, created, modified, buy_time, random. Präfix mit '-' für absteigend " @@ -468,8 +470,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:373 msgid "rewrite some fields of an existing order saving non-editables" msgstr "" -"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare " -"Daten zu speichern" +"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare" +" Daten zu speichern" #: engine/core/docs/drf/viewsets.py:380 msgid "purchase an order" @@ -502,7 +504,8 @@ msgstr "eine Bestellung kaufen, ohne ein Konto anzulegen" #: engine/core/docs/drf/viewsets.py:409 msgid "finalizes the order purchase for a non-registered user." msgstr "" -"schließt den Kauf einer Bestellung für einen nicht registrierten Benutzer ab." +"schließt den Kauf einer Bestellung für einen nicht registrierten Benutzer " +"ab." #: engine/core/docs/drf/viewsets.py:420 msgid "add product to order" @@ -519,8 +522,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:429 msgid "add a list of products to order, quantities will not count" msgstr "" -"Fügen Sie eine Liste der zu bestellenden Produkte hinzu, Mengen werden nicht " -"gezählt" +"Fügen Sie eine Liste der zu bestellenden Produkte hinzu, Mengen werden nicht" +" gezählt" #: engine/core/docs/drf/viewsets.py:430 msgid "" @@ -589,8 +592,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:496 msgid "rewrite some fields of an existing wishlist saving non-editables" msgstr "" -"Umschreiben einiger Felder eines vorhandenen Attributs, um nicht editierbare " -"Daten zu speichern" +"Umschreiben einiger Felder eines vorhandenen Attributs, um nicht editierbare" +" Daten zu speichern" #: engine/core/docs/drf/viewsets.py:503 msgid "retrieve current pending wishlist of a user" @@ -599,8 +602,8 @@ msgstr "Abruf der aktuellen Wunschliste eines Benutzers" #: engine/core/docs/drf/viewsets.py:504 msgid "retrieves a current pending wishlist of an authenticated user" msgstr "" -"ruft eine aktuelle ausstehende Wunschliste eines authentifizierten Benutzers " -"ab" +"ruft eine aktuelle ausstehende Wunschliste eines authentifizierten Benutzers" +" ab" #: engine/core/docs/drf/viewsets.py:514 msgid "add product to wishlist" @@ -647,29 +650,18 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "Filtern Sie nach einem oder mehreren Attributnamen/Wertpaaren. \n" "- **Syntax**: `attr_name=Methode-Wert[;attr2=Methode2-Wert2]...`\n" -"- **Methoden** (Standardwert ist \"icontains\", wenn nicht angegeben): " -"`iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, " -"`istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, " -"`gt`, `gte`, `in`\n" -"- **Wert-Typisierung**: JSON wird zuerst versucht (damit man Listen/Dicts " -"übergeben kann), `true`/`false` für Booleans, Integers, Floats; ansonsten " -"als String behandelt. \n" -"- Base64**: Präfix \"b64-\" für URL-sichere Base64-Kodierung des " -"Rohwertes. \n" +"- **Methoden** (Standardwert ist \"icontains\", wenn nicht angegeben): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" +"- **Wert-Typisierung**: JSON wird zuerst versucht (damit man Listen/Dicts übergeben kann), `true`/`false` für Booleans, Integers, Floats; ansonsten als String behandelt. \n" +"- Base64**: Präfix \"b64-\" für URL-sichere Base64-Kodierung des Rohwertes. \n" "Beispiele: \n" "`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\", \"bluetooth\"]`,\n" "`b64-description=icontains-aGVhdC1jb2xk`" @@ -684,12 +676,10 @@ msgstr "(genaue) Produkt-UUID" #: engine/core/docs/drf/viewsets.py:581 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Durch Kommata getrennte Liste der Felder, nach denen sortiert werden soll. " -"Präfix mit \"-\" für absteigend. \n" +"Durch Kommata getrennte Liste der Felder, nach denen sortiert werden soll. Präfix mit \"-\" für absteigend. \n" "**Erlaubt:** uuid, rating, name, slug, created, modified, price, random" #: engine/core/docs/drf/viewsets.py:598 engine/core/docs/drf/viewsets.py:599 @@ -712,8 +702,8 @@ msgstr "Ein Produkt erstellen" #: engine/core/docs/drf/viewsets.py:628 engine/core/docs/drf/viewsets.py:629 msgid "rewrite an existing product, preserving non-editable fields" msgstr "" -"Umschreiben eines bestehenden Produkts unter Beibehaltung nicht editierbarer " -"Felder" +"Umschreiben eines bestehenden Produkts unter Beibehaltung nicht editierbarer" +" Felder" #: engine/core/docs/drf/viewsets.py:647 engine/core/docs/drf/viewsets.py:648 msgid "" @@ -765,10 +755,10 @@ msgstr "Autovervollständigung der Adresseingabe" #: engine/core/docs/drf/viewsets.py:794 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "" -"docker compose exec app poetry run python manage.py deepl_translate -l en-gb " -"-l ar-ar -l cs-cz -l da-dk -l de-de -l en-us -l es-es -l fr-fr -l hi-in -l " -"it-it -l ja-jp -l kk-kz -l nl-nl -l pl -l pt-br -l ro-ro -l ru-ru -l zh-hans " -"-a core -a geo -a payments -a vibes_auth -a blog" +"docker compose exec app poetry run python manage.py deepl_translate -l en-gb" +" -l ar-ar -l cs-cz -l da-dk -l de-de -l en-us -l es-es -l fr-fr -l hi-in -l " +"it-it -l ja-jp -l kk-kz -l nl-nl -l pl -l pt-br -l ro-ro -l ru-ru -l zh-hans" +" -a core -a geo -a payments -a vibes_auth -a blog" #: engine/core/docs/drf/viewsets.py:800 msgid "limit the results amount, 1 < limit < 10, default: 5" @@ -798,8 +788,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:851 msgid "rewrite some fields of an existing feedback saving non-editables" msgstr "" -"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare " -"Daten zu speichern" +"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare" +" Daten zu speichern" #: engine/core/docs/drf/viewsets.py:861 msgid "list all order–product relations (simple view)" @@ -858,8 +848,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:981 msgid "rewrite some fields of an existing brand saving non-editables" msgstr "" -"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare " -"Daten zu speichern" +"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare" +" Daten zu speichern" #: engine/core/docs/drf/viewsets.py:1006 msgid "list all vendors (simple view)" @@ -885,8 +875,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1041 msgid "rewrite some fields of an existing vendor saving non-editables" msgstr "" -"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare " -"Daten zu speichern" +"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare" +" Daten zu speichern" #: engine/core/docs/drf/viewsets.py:1051 msgid "list all product images (simple view)" @@ -912,8 +902,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1086 msgid "rewrite some fields of an existing product image saving non-editables" msgstr "" -"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare " -"Daten zu speichern" +"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare" +" Daten zu speichern" #: engine/core/docs/drf/viewsets.py:1096 msgid "list all promo codes (simple view)" @@ -939,8 +929,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1131 msgid "rewrite some fields of an existing promo code saving non-editables" msgstr "" -"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare " -"Daten zu speichern" +"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare" +" Daten zu speichern" #: engine/core/docs/drf/viewsets.py:1141 msgid "list all promotions (simple view)" @@ -966,8 +956,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1176 msgid "rewrite some fields of an existing promotion saving non-editables" msgstr "" -"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare " -"Daten zu speichern" +"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare" +" Daten zu speichern" #: engine/core/docs/drf/viewsets.py:1186 msgid "list all stocks (simple view)" @@ -993,8 +983,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1221 msgid "rewrite some fields of an existing stock record saving non-editables" msgstr "" -"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare " -"Daten zu speichern" +"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare" +" Daten zu speichern" #: engine/core/docs/drf/viewsets.py:1231 msgid "list all product tags (simple view)" @@ -1020,8 +1010,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1266 msgid "rewrite some fields of an existing product tag saving non-editables" msgstr "" -"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare " -"Daten zu speichern" +"Umschreiben einiger Felder einer bestehenden Kategorie, um nicht editierbare" +" Daten zu speichern" #: engine/core/elasticsearch/__init__.py:122 #: engine/core/elasticsearch/__init__.py:570 @@ -1104,8 +1094,8 @@ msgstr "SKU" #: 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" #: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" @@ -1173,7 +1163,7 @@ msgstr "Zwischengespeicherte Daten" msgid "camelized JSON data from the requested URL" msgstr "Camelized JSON-Daten aus der angeforderten URL" -#: engine/core/graphene/mutations.py:67 engine/core/views.py:256 +#: engine/core/graphene/mutations.py:67 engine/core/views.py:257 msgid "only URLs starting with http(s):// are allowed" msgstr "Nur URLs, die mit http(s):// beginnen, sind zulässig" @@ -1224,7 +1214,8 @@ msgstr "Aktion muss entweder \"Hinzufügen\" oder \"Entfernen\" sein!" #: engine/core/graphene/mutations.py:293 msgid "perform an action on a list of products in the wishlist" -msgstr "Ausführen einer Aktion für eine Liste von Produkten in der Wunschliste" +msgstr "" +"Ausführen einer Aktion für eine Liste von Produkten in der Wunschliste" #: engine/core/graphene/mutations.py:311 msgid "please provide wishlist_uuid value" @@ -1259,8 +1250,8 @@ msgstr "Eine Bestellung kaufen" #: engine/core/graphene/mutations.py:516 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" @@ -1339,9 +1330,11 @@ msgstr "" "verwendet werden." #: engine/core/graphene/object_types.py:203 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" -"Mindest- und Höchstpreise für Produkte in dieser Kategorie, sofern verfügbar." +"Mindest- und Höchstpreise für Produkte in dieser Kategorie, sofern " +"verfügbar." #: engine/core/graphene/object_types.py:205 msgid "tags for this category" @@ -1611,11 +1604,11 @@ msgid "" "parent group, forming a hierarchical structure. This can be useful for " "categorizing and managing attributes more effectively in acomplex system." msgstr "" -"Stellt eine Gruppe von Attributen dar, die hierarchisch aufgebaut sein kann. " -"Diese Klasse wird verwendet, um Attributgruppen zu verwalten und zu " +"Stellt eine Gruppe von Attributen dar, die hierarchisch aufgebaut sein kann." +" Diese Klasse wird verwendet, um Attributgruppen zu verwalten und zu " "organisieren. Eine Attributgruppe kann eine übergeordnete Gruppe haben, die " -"eine hierarchische Struktur bildet. Dies kann nützlich sein, um Attribute in " -"einem komplexen System effektiver zu kategorisieren und zu verwalten." +"eine hierarchische Struktur bildet. Dies kann nützlich sein, um Attribute in" +" einem komplexen System effektiver zu kategorisieren und zu verwalten." #: engine/core/models.py:91 msgid "parent of this group" @@ -1645,9 +1638,9 @@ msgid "" msgstr "" "Stellt eine Verkäuferentität dar, die Informationen über externe Verkäufer " "und deren Interaktionsanforderungen speichern kann. Die Klasse Vendor wird " -"zur Definition und Verwaltung von Informationen über einen externen Anbieter " -"verwendet. Sie speichert den Namen des Anbieters, die für die Kommunikation " -"erforderlichen Authentifizierungsdaten und den prozentualen Aufschlag, der " +"zur Definition und Verwaltung von Informationen über einen externen Anbieter" +" verwendet. Sie speichert den Namen des Anbieters, die für die Kommunikation" +" erforderlichen Authentifizierungsdaten und den prozentualen Aufschlag, der " "auf die vom Anbieter abgerufenen Produkte angewendet wird. Dieses Modell " "verwaltet auch zusätzliche Metadaten und Einschränkungen, wodurch es sich " "für die Verwendung in Systemen eignet, die mit Drittanbietern interagieren." @@ -1704,10 +1697,10 @@ msgid "" "display name. It supports operations exported through mixins and provides " "metadata customization for administrative purposes." msgstr "" -"Stellt ein Produkt-Tag dar, das zur Klassifizierung oder Identifizierung von " -"Produkten verwendet wird. Die Klasse ProductTag dient der eindeutigen " -"Identifizierung und Klassifizierung von Produkten durch eine Kombination aus " -"einem internen Tag-Bezeichner und einem benutzerfreundlichen Anzeigenamen. " +"Stellt ein Produkt-Tag dar, das zur Klassifizierung oder Identifizierung von" +" Produkten verwendet wird. Die Klasse ProductTag dient der eindeutigen " +"Identifizierung und Klassifizierung von Produkten durch eine Kombination aus" +" einem internen Tag-Bezeichner und einem benutzerfreundlichen Anzeigenamen. " "Sie unterstützt Operationen, die über Mixins exportiert werden, und " "ermöglicht die Anpassung von Metadaten für Verwaltungszwecke." @@ -1768,9 +1761,9 @@ msgstr "" "Beziehungen unterstützen. Die Klasse enthält Felder für Metadaten und " "visuelle Darstellung, die als Grundlage für kategoriebezogene Funktionen " "dienen. Diese Klasse wird in der Regel verwendet, um Produktkategorien oder " -"andere ähnliche Gruppierungen innerhalb einer Anwendung zu definieren und zu " -"verwalten. Sie ermöglicht es Benutzern oder Administratoren, den Namen, die " -"Beschreibung und die Hierarchie von Kategorien festzulegen sowie Attribute " +"andere ähnliche Gruppierungen innerhalb einer Anwendung zu definieren und zu" +" verwalten. Sie ermöglicht es Benutzern oder Administratoren, den Namen, die" +" Beschreibung und die Hierarchie von Kategorien festzulegen sowie Attribute " "wie Bilder, Tags oder Priorität zuzuweisen." #: engine/core/models.py:274 @@ -1824,7 +1817,8 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" "Stellt ein Markenobjekt im System dar. Diese Klasse verwaltet Informationen " "und Attribute in Bezug auf eine Marke, einschließlich ihres Namens, Logos, " @@ -1875,16 +1869,16 @@ msgstr "Kategorien" #: engine/core/models.py:508 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." @@ -1940,7 +1934,8 @@ msgstr "SKU des Verkäufers" #: engine/core/models.py:556 msgid "digital file associated with this stock if applicable" -msgstr "Digitale Datei, die mit diesem Bestand verbunden ist, falls zutreffend" +msgstr "" +"Digitale Datei, die mit diesem Bestand verbunden ist, falls zutreffend" #: engine/core/models.py:557 msgid "digital file" @@ -1968,12 +1963,12 @@ msgstr "" "Stellt ein Produkt mit Attributen wie Kategorie, Marke, Tags, digitalem " "Status, Name, Beschreibung, Teilenummer und Slug dar. Bietet verwandte " "Hilfseigenschaften zum Abrufen von Bewertungen, Feedback-Zahlen, Preis, " -"Menge und Gesamtbestellungen. Konzipiert für die Verwendung in einem System, " -"das den elektronischen Handel oder die Bestandsverwaltung verwaltet. Diese " +"Menge und Gesamtbestellungen. Konzipiert für die Verwendung in einem System," +" das den elektronischen Handel oder die Bestandsverwaltung verwaltet. Diese " "Klasse interagiert mit verwandten Modellen (wie Category, Brand und " -"ProductTag) und verwaltet die Zwischenspeicherung von Eigenschaften, auf die " -"häufig zugegriffen wird, um die Leistung zu verbessern. Sie wird verwendet, " -"um Produktdaten und die damit verbundenen Informationen innerhalb einer " +"ProductTag) und verwaltet die Zwischenspeicherung von Eigenschaften, auf die" +" häufig zugegriffen wird, um die Leistung zu verbessern. Sie wird verwendet," +" um Produktdaten und die damit verbundenen Informationen innerhalb einer " "Anwendung zu definieren und zu manipulieren." #: engine/core/models.py:585 @@ -1998,7 +1993,8 @@ msgstr "Ist das Produkt digital" #: engine/core/models.py:612 msgid "provide a clear identifying name for the product" -msgstr "Geben Sie einen eindeutigen Namen zur Identifizierung des Produkts an." +msgstr "" +"Geben Sie einen eindeutigen Namen zur Identifizierung des Produkts an." #: engine/core/models.py:613 msgid "product name" @@ -2029,12 +2025,12 @@ 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, " @@ -2102,9 +2098,9 @@ msgstr "Attribut" #: engine/core/models.py:777 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\" " @@ -2127,16 +2123,16 @@ msgstr "Der spezifische Wert für dieses Attribut" #: engine/core/models.py:815 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" "Stellt ein Produktbild dar, das mit einem Produkt im System verbunden ist. " "Diese Klasse dient der Verwaltung von Bildern für Produkte, einschließlich " "der Funktionen zum Hochladen von Bilddateien, der Zuordnung zu bestimmten " -"Produkten und der Festlegung ihrer Anzeigereihenfolge. Sie enthält auch eine " -"Funktion zur Barrierefreiheit mit alternativem Text für die Bilder." +"Produkten und der Festlegung ihrer Anzeigereihenfolge. Sie enthält auch eine" +" Funktion zur Barrierefreiheit mit alternativem Text für die Bilder." #: engine/core/models.py:826 msgid "provide alternative text for the image for accessibility" @@ -2178,16 +2174,16 @@ msgid "" "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" -"Repräsentiert eine Werbekampagne für Produkte mit einem Rabatt. Diese Klasse " -"wird verwendet, um Werbekampagnen zu definieren und zu verwalten, die einen " -"prozentualen Rabatt für Produkte anbieten. Die Klasse enthält Attribute zum " -"Festlegen des Rabattsatzes, zum Bereitstellen von Details über die " +"Repräsentiert eine Werbekampagne für Produkte mit einem Rabatt. Diese Klasse" +" wird verwendet, um Werbekampagnen zu definieren und zu verwalten, die einen" +" prozentualen Rabatt für Produkte anbieten. Die Klasse enthält Attribute zum" +" Festlegen des Rabattsatzes, zum Bereitstellen von Details über die " "Werbeaktion und zum Verknüpfen der Aktion mit den entsprechenden Produkten. " -"Sie ist mit dem Produktkatalog integriert, um die betroffenen Artikel in der " -"Kampagne zu bestimmen." +"Sie ist mit dem Produktkatalog integriert, um die betroffenen Artikel in der" +" Kampagne zu bestimmen." #: engine/core/models.py:880 msgid "percentage discount for the selected products" @@ -2231,8 +2227,8 @@ msgstr "" "Stellt die Wunschliste eines Benutzers zum Speichern und Verwalten " "gewünschter Produkte dar. Die Klasse bietet Funktionen zur Verwaltung einer " "Sammlung von Produkten und unterstützt Vorgänge wie das Hinzufügen und " -"Entfernen von Produkten sowie das Hinzufügen und Entfernen mehrerer Produkte " -"gleichzeitig." +"Entfernen von Produkten sowie das Hinzufügen und Entfernen mehrerer Produkte" +" gleichzeitig." #: engine/core/models.py:926 msgid "products that the user has marked as wanted" @@ -2256,15 +2252,15 @@ msgid "" "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." msgstr "" "Stellt einen dokumentarischen Datensatz dar, der an ein Produkt gebunden " "ist. Diese Klasse wird verwendet, um Informationen über Dokumentationen zu " "bestimmten Produkten zu speichern, einschließlich Datei-Uploads und deren " "Metadaten. Sie enthält Methoden und Eigenschaften zur Handhabung des " -"Dateityps und des Speicherpfads für die Dokumentationsdateien. Sie erweitert " -"die Funktionalität von bestimmten Mixins und bietet zusätzliche " +"Dateityps und des Speicherpfads für die Dokumentationsdateien. Sie erweitert" +" die Funktionalität von bestimmten Mixins und bietet zusätzliche " "benutzerdefinierte Funktionen." #: engine/core/models.py:998 @@ -2281,14 +2277,14 @@ msgstr "Ungelöst" #: engine/core/models.py:1014 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 " @@ -2383,7 +2379,8 @@ msgstr "Kennung des Promo-Codes" #: engine/core/models.py:1095 msgid "fixed discount amount applied if percent is not used" msgstr "" -"Fester Rabattbetrag, der angewandt wird, wenn kein Prozentsatz verwendet wird" +"Fester Rabattbetrag, der angewandt wird, wenn kein Prozentsatz verwendet " +"wird" #: engine/core/models.py:1096 msgid "fixed discount amount" @@ -2460,8 +2457,8 @@ msgstr "Ungültiger Rabatttyp für den Promocode {self.uuid}!" 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 "" @@ -2635,8 +2632,8 @@ msgid "" "fields to effectively model and manage feedback data." msgstr "" "Verwaltet Benutzerfeedback für Produkte. Diese Klasse dient der Erfassung " -"und Speicherung von Benutzerfeedback für bestimmte Produkte, die sie gekauft " -"haben. Sie enthält Attribute zum Speichern von Benutzerkommentaren, einen " +"und Speicherung von Benutzerfeedback für bestimmte Produkte, die sie gekauft" +" haben. Sie enthält Attribute zum Speichern von Benutzerkommentaren, einen " "Verweis auf das entsprechende Produkt in der Bestellung und eine vom " "Benutzer zugewiesene Bewertung. Die Klasse verwendet Datenbankfelder, um " "Feedbackdaten effektiv zu modellieren und zu verwalten." @@ -2650,10 +2647,11 @@ msgid "feedback comments" msgstr "Kommentare zum Feedback" #: engine/core/models.py:1719 -msgid "references the specific product in an order that this feedback is about" +msgid "" +"references the specific product in an order that this feedback is about" msgstr "" -"Verweist auf das spezifische Produkt in einer Bestellung, auf das sich diese " -"Rückmeldung bezieht" +"Verweist auf das spezifische Produkt in einer Bestellung, auf das sich diese" +" Rückmeldung bezieht" #: engine/core/models.py:1720 msgid "related order product" @@ -2679,14 +2677,14 @@ 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." @@ -2800,16 +2798,16 @@ msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" "Stellt die Download-Funktionalität für digitale Assets in Verbindung mit " "Bestellungen dar. Die Klasse DigitalAssetDownload ermöglicht die Verwaltung " "und den Zugriff auf Downloads im Zusammenhang mit Auftragsprodukten. Sie " "verwaltet Informationen über das zugehörige Auftragsprodukt, die Anzahl der " -"Downloads und ob das Asset öffentlich sichtbar ist. Sie enthält eine Methode " -"zur Generierung einer URL für das Herunterladen des Assets, wenn sich die " +"Downloads und ob das Asset öffentlich sichtbar ist. Sie enthält eine Methode" +" zur Generierung einer URL für das Herunterladen des Assets, wenn sich die " "zugehörige Bestellung in einem abgeschlossenen Status befindet." #: engine/core/models.py:1961 @@ -2856,8 +2854,8 @@ msgid "No customer activity in the last 30 days." msgstr "Keine Kundenaktivität in den letzten 30 Tagen." #: engine/core/templates/admin/dashboard/_daily_sales.html:5 -msgid "Daily sales (30d)" -msgstr "Tägliche Verkäufe (30d)" +msgid "Daily sales" +msgstr "Tägliche Verkäufe" #: engine/core/templates/admin/dashboard/_daily_sales.html:59 msgid "Orders (FINISHED)" @@ -2868,6 +2866,7 @@ msgid "Gross revenue" msgstr "Bruttoeinnahmen" #: engine/core/templates/admin/dashboard/_daily_sales.html:106 +#: engine/core/templates/admin/dashboard/_kpis.html:20 msgid "Orders" msgstr "Bestellungen" @@ -2875,6 +2874,10 @@ msgstr "Bestellungen" msgid "Gross" msgstr "Brutto" +#: engine/core/templates/admin/dashboard/_header.html:3 +msgid "Dashboard" +msgstr "Dashboard" + #: engine/core/templates/admin/dashboard/_income_overview.html:7 msgid "Income overview" msgstr "Einkommensübersicht" @@ -2903,20 +2906,32 @@ msgid "No data" msgstr "Kein Datum" #: engine/core/templates/admin/dashboard/_kpis.html:6 -msgid "Revenue (gross, 30d)" -msgstr "Einkommen (gross, 30d)" +msgid "GMV" +msgstr "GMV" -#: engine/core/templates/admin/dashboard/_kpis.html:15 -msgid "Revenue (net, 30d)" -msgstr "Einnahmen (netto, 30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:34 +msgid "AOV" +msgstr "AOV" -#: engine/core/templates/admin/dashboard/_kpis.html:24 -msgid "Returns (30d)" -msgstr "Rückgaben (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:48 +msgid "Net revenue" +msgstr "Nettoeinkommen" -#: engine/core/templates/admin/dashboard/_kpis.html:33 -msgid "Processed orders (30d)" -msgstr "Bearbeitete Aufträge (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:62 +msgid "Refund rate" +msgstr "Erstattungssatz" + +#: engine/core/templates/admin/dashboard/_kpis.html:73 +msgid "returned" +msgstr "Zurückgeschickt" + +#: engine/core/templates/admin/dashboard/_low_stock.html:5 +msgid "Low stock" +msgstr "Niedriger Bestand" + +#: engine/core/templates/admin/dashboard/_low_stock.html:29 +msgid "No low stock items." +msgstr "Keine Artikel mit geringem Lagerbestand." #: engine/core/templates/admin/dashboard/_most_returned.html:5 msgid "Most returned products (30d)" @@ -2931,11 +2946,11 @@ msgid "Most wished product" msgstr "Meistgewünschtes Produkt" #: engine/core/templates/admin/dashboard/_product_lists.html:33 -#: engine/core/templates/admin/dashboard/_product_lists.html:67 +#: engine/core/templates/admin/dashboard/_product_lists.html:68 msgid "No data yet." msgstr "Noch keine Daten." -#: engine/core/templates/admin/dashboard/_product_lists.html:40 +#: engine/core/templates/admin/dashboard/_product_lists.html:41 msgid "Most popular product" msgstr "Beliebtestes Produkt" @@ -2971,10 +2986,6 @@ msgstr "Keine Kategorieverkäufe in den letzten 30 Tagen." msgid "Django site admin" msgstr "Django-Website-Administrator" -#: engine/core/templates/admin/index.html:20 -msgid "Dashboard" -msgstr "Dashboard" - #: 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 @@ -3004,8 +3015,7 @@ msgstr "Hallo %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" "Vielen Dank für Ihre Bestellung #%(order.pk)s! Wir freuen uns, Ihnen " @@ -3120,8 +3130,7 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" "Vielen Dank für Ihre Bestellung! Wir freuen uns, Ihren Kauf zu bestätigen. " @@ -3158,7 +3167,8 @@ msgstr "Sowohl Daten als auch Timeout sind erforderlich" #: 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" #: engine/core/utils/emailing.py:27 #, python-brace-format @@ -3195,7 +3205,7 @@ msgstr "" "Die Bildabmessungen sollten w{max_width} x h{max_height} Pixel nicht " "überschreiten" -#: engine/core/views.py:90 +#: engine/core/views.py:91 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." @@ -3204,7 +3214,7 @@ msgstr "" "zurück. Sie stellt sicher, dass die Antwort den entsprechenden Content-Type-" "Header für XML enthält." -#: engine/core/views.py:105 +#: engine/core/views.py:106 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " @@ -3214,18 +3224,18 @@ msgstr "" "Funktion verarbeitet die Anfrage, holt die entsprechende Sitemap-" "Detailantwort ab und setzt den Content-Type-Header für XML." -#: engine/core/views.py:140 +#: engine/core/views.py:141 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." -#: engine/core/views.py:172 +#: engine/core/views.py:173 msgid "Returns the parameters of the website as a JSON object." msgstr "Gibt die Parameter der Website als JSON-Objekt zurück." -#: engine/core/views.py:191 +#: engine/core/views.py:192 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." @@ -3233,11 +3243,11 @@ msgstr "" "Erledigt Cache-Operationen wie das Lesen und Setzen von Cache-Daten mit " "einem bestimmten Schlüssel und Timeout." -#: engine/core/views.py:218 +#: engine/core/views.py:219 msgid "Handles `contact us` form submissions." msgstr "Verarbeitet Übermittlungen des Formulars \"Kontaktieren Sie uns\"." -#: engine/core/views.py:239 +#: engine/core/views.py:240 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." @@ -3245,70 +3255,60 @@ msgstr "" "Bearbeitet Anfragen zur Verarbeitung und Validierung von URLs aus " "eingehenden POST-Anfragen." -#: engine/core/views.py:279 +#: engine/core/views.py:280 msgid "Handles global search queries." msgstr "Bearbeitet globale Suchanfragen." -#: engine/core/views.py:294 +#: engine/core/views.py:295 msgid "Handles the logic of buying as a business without registration." msgstr "Behandelt die Logik des Kaufs als Unternehmen ohne Registrierung." -#: engine/core/views.py:331 +#: engine/core/views.py:332 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" -"Bearbeitet das Herunterladen eines digitalen Assets, das mit einem Auftrag " -"verbunden ist.\n" -"Diese Funktion versucht, die Datei des digitalen Assets, die sich im " -"Speicherverzeichnis des Projekts befindet, bereitzustellen. Wenn die Datei " -"nicht gefunden wird, wird ein HTTP 404-Fehler ausgelöst, um anzuzeigen, dass " -"die Ressource nicht verfügbar ist." +"Bearbeitet das Herunterladen eines digitalen Assets, das mit einem Auftrag verbunden ist.\n" +"Diese Funktion versucht, die Datei des digitalen Assets, die sich im Speicherverzeichnis des Projekts befindet, bereitzustellen. Wenn die Datei nicht gefunden wird, wird ein HTTP 404-Fehler ausgelöst, um anzuzeigen, dass die Ressource nicht verfügbar ist." -#: engine/core/views.py:342 +#: engine/core/views.py:343 msgid "order_product_uuid is required" msgstr "order_product_uuid ist erforderlich" -#: engine/core/views.py:349 +#: engine/core/views.py:350 msgid "order product does not exist" msgstr "Produkt bestellen existiert nicht" -#: engine/core/views.py:352 +#: engine/core/views.py:353 msgid "you can only download the digital asset once" msgstr "Sie können das digitale Asset nur einmal herunterladen" -#: engine/core/views.py:355 +#: engine/core/views.py:356 msgid "the order must be paid before downloading the digital asset" msgstr "" -"die Bestellung muss vor dem Herunterladen des digitalen Assets bezahlt werden" +"die Bestellung muss vor dem Herunterladen des digitalen Assets bezahlt " +"werden" -#: engine/core/views.py:361 +#: engine/core/views.py:362 msgid "the order product does not have a product" msgstr "Das Bestellprodukt hat kein Produkt" -#: engine/core/views.py:398 +#: engine/core/views.py:399 msgid "favicon not found" msgstr "Favicon nicht gefunden" -#: engine/core/views.py:403 +#: engine/core/views.py:404 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Bearbeitet Anfragen nach dem Favicon einer Website.\n" -"Diese Funktion versucht, die Favicon-Datei, die sich im statischen " -"Verzeichnis des Projekts befindet, bereitzustellen. Wenn die Favicon-Datei " -"nicht gefunden wird, wird ein HTTP 404-Fehler ausgegeben, um anzuzeigen, " -"dass die Ressource nicht verfügbar ist." +"Diese Funktion versucht, die Favicon-Datei, die sich im statischen Verzeichnis des Projekts befindet, bereitzustellen. Wenn die Favicon-Datei nicht gefunden wird, wird ein HTTP 404-Fehler ausgegeben, um anzuzeigen, dass die Ressource nicht verfügbar ist." -#: engine/core/views.py:415 +#: engine/core/views.py:416 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 " @@ -3316,11 +3316,11 @@ msgstr "" "Administrationsoberfläche um. Sie verwendet die Funktion `redirect` von " "Django für die Bearbeitung der HTTP-Umleitung." -#: engine/core/views.py:428 +#: engine/core/views.py:429 msgid "Returns current version of the eVibes. " msgstr "Gibt die aktuelle Version von eVibes zurück." -#: engine/core/views.py:637 +#: engine/core/views.py:793 msgid "Returns custom variables for Dashboard. " msgstr "Gibt benutzerdefinierte Variablen für das Dashboard zurück." @@ -3333,22 +3333,23 @@ 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." #: engine/core/viewsets.py:156 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" "Stellt ein Viewset für die Verwaltung von AttributeGroup-Objekten dar. " "Bearbeitet Vorgänge im Zusammenhang mit AttributeGroup, einschließlich " -"Filterung, Serialisierung und Abruf von Daten. Diese Klasse ist Teil der API-" -"Schicht der Anwendung und bietet eine standardisierte Methode zur " +"Filterung, Serialisierung und Abruf von Daten. Diese Klasse ist Teil der " +"API-Schicht der Anwendung und bietet eine standardisierte Methode zur " "Verarbeitung von Anfragen und Antworten für AttributeGroup-Daten." #: engine/core/viewsets.py:175 @@ -3373,14 +3374,14 @@ msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" "Ein Viewset für die Verwaltung von AttributeValue-Objekten. Dieses Viewset " "bietet Funktionen zum Auflisten, Abrufen, Erstellen, Aktualisieren und " "Löschen von AttributeValue-Objekten. Es integriert sich in die Viewset-" -"Mechanismen des Django REST Frameworks und verwendet geeignete Serialisierer " -"für verschiedene Aktionen. Filterfunktionen werden über das " +"Mechanismen des Django REST Frameworks und verwendet geeignete Serialisierer" +" für verschiedene Aktionen. Filterfunktionen werden über das " "DjangoFilterBackend bereitgestellt." #: engine/core/viewsets.py:213 @@ -3392,8 +3393,8 @@ msgid "" "can access specific data." msgstr "" "Verwaltet Ansichten für kategoriebezogene Operationen. Die Klasse " -"CategoryViewSet ist für die Handhabung von Vorgängen im Zusammenhang mit dem " -"Kategoriemodell im System verantwortlich. Sie unterstützt das Abrufen, " +"CategoryViewSet ist für die Handhabung von Vorgängen im Zusammenhang mit dem" +" Kategoriemodell im System verantwortlich. Sie unterstützt das Abrufen, " "Filtern und Serialisieren von Kategoriedaten. Das Viewset erzwingt auch " "Berechtigungen, um sicherzustellen, dass nur autorisierte Benutzer auf " "bestimmte Daten zugreifen können." @@ -3422,8 +3423,8 @@ 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 " @@ -3449,15 +3450,15 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `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." @@ -3466,16 +3467,16 @@ msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" -"ViewSet zur Verwaltung von Aufträgen und zugehörigen Vorgängen. Diese Klasse " -"bietet Funktionen zum Abrufen, Ändern und Verwalten von Bestellobjekten. Sie " -"enthält verschiedene Endpunkte für die Handhabung von Bestellvorgängen wie " -"das Hinzufügen oder Entfernen von Produkten, die Durchführung von Käufen für " -"registrierte und nicht registrierte Benutzer und das Abrufen der " +"ViewSet zur Verwaltung von Aufträgen und zugehörigen Vorgängen. Diese Klasse" +" bietet Funktionen zum Abrufen, Ändern und Verwalten von Bestellobjekten. " +"Sie enthält verschiedene Endpunkte für die Handhabung von Bestellvorgängen " +"wie das Hinzufügen oder Entfernen von Produkten, die Durchführung von Käufen" +" für registrierte und nicht registrierte Benutzer und das Abrufen der " "ausstehenden Bestellungen des aktuell authentifizierten Benutzers. Das " "ViewSet verwendet mehrere Serialisierer, die auf der spezifischen Aktion " "basieren, die durchgeführt wird, und erzwingt die entsprechenden " @@ -3485,16 +3486,16 @@ msgstr "" msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "Bietet ein Viewset für die Verwaltung von OrderProduct-Entitäten. Dieses " "Viewset ermöglicht CRUD-Vorgänge und benutzerdefinierte Aktionen speziell " "für das OrderProduct-Modell. Es umfasst Filterung, Berechtigungsprüfungen " "und Serializer-Umschaltung auf der Grundlage der angeforderten Aktion. " -"Außerdem bietet es eine detaillierte Aktion für die Bearbeitung von Feedback " -"zu OrderProduct-Instanzen" +"Außerdem bietet es eine detaillierte Aktion für die Bearbeitung von Feedback" +" zu OrderProduct-Instanzen" #: engine/core/viewsets.py:879 msgid "Manages operations related to Product images in the application. " @@ -3521,15 +3522,15 @@ msgstr "Erledigt Vorgänge im Zusammenhang mit Bestandsdaten im System." msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." msgstr "" "ViewSet für die Verwaltung von Wishlist-Vorgängen. Das WishlistViewSet " -"bietet Endpunkte für die Interaktion mit der Wunschliste eines Benutzers und " -"ermöglicht das Abrufen, Ändern und Anpassen von Produkten innerhalb der " +"bietet Endpunkte für die Interaktion mit der Wunschliste eines Benutzers und" +" ermöglicht das Abrufen, Ändern und Anpassen von Produkten innerhalb der " "Wunschliste. Dieses ViewSet erleichtert Funktionen wie das Hinzufügen, " "Entfernen und Massenaktionen für Produkte auf der Wunschliste. " "Berechtigungsprüfungen sind integriert, um sicherzustellen, dass Benutzer " @@ -3545,8 +3546,8 @@ msgid "" "on the request context." msgstr "" "Diese Klasse bietet Viewset-Funktionalität für die Verwaltung von " -"\"Address\"-Objekten. Die Klasse AddressViewSet ermöglicht CRUD-Operationen, " -"Filterung und benutzerdefinierte Aktionen im Zusammenhang mit " +"\"Address\"-Objekten. Die Klasse AddressViewSet ermöglicht CRUD-Operationen," +" Filterung und benutzerdefinierte Aktionen im Zusammenhang mit " "Adressentitäten. Sie umfasst spezielle Verhaltensweisen für verschiedene " "HTTP-Methoden, Serialisierungsüberschreibungen und die Behandlung von " "Berechtigungen auf der Grundlage des Anfragekontexts." @@ -3567,6 +3568,6 @@ msgstr "" "Bearbeitet Vorgänge im Zusammenhang mit Produkt-Tags innerhalb der " "Anwendung. Diese Klasse bietet Funktionen zum Abrufen, Filtern und " "Serialisieren von Produkt-Tag-Objekten. Sie unterstützt die flexible " -"Filterung nach bestimmten Attributen unter Verwendung des angegebenen Filter-" -"Backends und verwendet dynamisch verschiedene Serialisierer auf der " +"Filterung nach bestimmten Attributen unter Verwendung des angegebenen " +"Filter-Backends und verwendet dynamisch verschiedene Serialisierer auf der " "Grundlage der durchgeführten Aktion." diff --git a/engine/core/locale/en_GB/LC_MESSAGES/django.mo b/engine/core/locale/en_GB/LC_MESSAGES/django.mo index 1f32402b030959cbf802b5cfe22f6e051b9f1a5e..b85a659ee046d1407ad8db94ef406cdf79ecb558 100644 GIT binary patch delta 14875 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 delta 14887 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 Hck=uXYp9aC diff --git a/engine/core/locale/en_GB/LC_MESSAGES/django.po b/engine/core/locale/en_GB/LC_MESSAGES/django.po index 50ad97f1..c496e9bd 100644 --- a/engine/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 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -31,9 +31,11 @@ msgstr "Is Active" #: engine/core/abstract.py: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" #: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" @@ -157,7 +159,8 @@ msgstr "Delivered" msgid "canceled" msgstr "Canceled" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Failed" @@ -272,7 +275,8 @@ msgid "rewrite an existing attribute group saving non-editables" msgstr "Rewrite an existing attribute group saving non-editables" #: engine/core/docs/drf/viewsets.py:96 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Rewrite some fields of an existing attribute group saving non-editables" @@ -321,7 +325,8 @@ msgid "rewrite an existing attribute value saving non-editables" msgstr "Rewrite an existing attribute value saving non-editables" #: engine/core/docs/drf/viewsets.py:186 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" "Rewrite some fields of an existing attribute value saving non-editables" @@ -375,11 +380,11 @@ msgstr "For non-staff users, only their own orders are returned." #: engine/core/docs/drf/viewsets.py:281 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" #: engine/core/docs/drf/viewsets.py:288 msgid "Filter orders with buy_time >= this ISO 8601 datetime" @@ -411,13 +416,13 @@ msgstr "Filter by order status (case-insensitive substring match)" #: engine/core/docs/drf/viewsets.py:324 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." #: engine/core/docs/drf/viewsets.py:336 msgid "retrieve a single order (detailed view)" @@ -603,30 +608,20 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" #: engine/core/docs/drf/viewsets.py:568 engine/core/docs/drf/viewsets.py:569 @@ -639,12 +634,10 @@ msgstr "(exact) Product UUID" #: engine/core/docs/drf/viewsets.py:581 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" #: engine/core/docs/drf/viewsets.py:598 engine/core/docs/drf/viewsets.py:599 @@ -1094,7 +1087,7 @@ msgstr "Cached data" msgid "camelized JSON data from the requested URL" msgstr "Camelized JSON data from the requested URL" -#: engine/core/graphene/mutations.py:67 engine/core/views.py:256 +#: engine/core/graphene/mutations.py:67 engine/core/views.py:257 msgid "only URLs starting with http(s):// are allowed" msgstr "Only URLs starting with http(s):// are allowed" @@ -1178,11 +1171,11 @@ msgstr "Buy an order" #: engine/core/graphene/mutations.py:516 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "" -"Please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"Please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" #: engine/core/graphene/mutations.py:549 msgid "add or delete a feedback for orderproduct" @@ -1256,7 +1249,8 @@ msgid "which attributes and values can be used for filtering this category." msgstr "Which attributes and values can be used for filtering this category." #: engine/core/graphene/object_types.py:203 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" "Minimum and maximum prices for products in this category, if available." @@ -1729,12 +1723,14 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." #: engine/core/models.py:448 msgid "name of this brand" @@ -1778,15 +1774,15 @@ msgstr "Categories" #: engine/core/models.py:508 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 " @@ -1930,15 +1926,15 @@ msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." #: engine/core/models.py:733 @@ -2000,13 +1996,13 @@ msgstr "Attribute" #: engine/core/models.py:777 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." #: engine/core/models.py:788 msgid "attribute of this value" @@ -2023,14 +2019,14 @@ msgstr "The specific value for this attribute" #: engine/core/models.py:815 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." @@ -2072,15 +2068,15 @@ msgid "" "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." #: engine/core/models.py:880 msgid "percentage discount for the selected products" @@ -2148,15 +2144,15 @@ msgid "" "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." msgstr "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." #: engine/core/models.py:998 msgid "documentary" @@ -2172,23 +2168,23 @@ msgstr "Unresolved" #: engine/core/models.py:1014 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." #: engine/core/models.py:1029 msgid "address line for the customer" @@ -2343,15 +2339,15 @@ msgstr "Invalid discount type for promocode {self.uuid}!" 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." @@ -2522,7 +2518,8 @@ msgid "feedback comments" msgstr "Feedback comments" #: engine/core/models.py:1719 -msgid "references the specific product in an order that this feedback is about" +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" @@ -2666,16 +2663,16 @@ msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." #: engine/core/models.py:1961 msgid "download" @@ -2720,8 +2717,8 @@ msgid "No customer activity in the last 30 days." msgstr "No customer activity in the last 30 days." #: engine/core/templates/admin/dashboard/_daily_sales.html:5 -msgid "Daily sales (30d)" -msgstr "Daily sales (30d)" +msgid "Daily sales" +msgstr "Daily sales" #: engine/core/templates/admin/dashboard/_daily_sales.html:59 msgid "Orders (FINISHED)" @@ -2732,6 +2729,7 @@ msgid "Gross revenue" msgstr "Gross revenue" #: engine/core/templates/admin/dashboard/_daily_sales.html:106 +#: engine/core/templates/admin/dashboard/_kpis.html:20 msgid "Orders" msgstr "Orders" @@ -2739,6 +2737,10 @@ msgstr "Orders" msgid "Gross" msgstr "Gross" +#: engine/core/templates/admin/dashboard/_header.html:3 +msgid "Dashboard" +msgstr "Dashboard" + #: engine/core/templates/admin/dashboard/_income_overview.html:7 msgid "Income overview" msgstr "Income overview" @@ -2767,20 +2769,32 @@ msgid "No data" msgstr "No data" #: engine/core/templates/admin/dashboard/_kpis.html:6 -msgid "Revenue (gross, 30d)" -msgstr "Revenue (gross, 30d)" +msgid "GMV" +msgstr "GMV" -#: engine/core/templates/admin/dashboard/_kpis.html:15 -msgid "Revenue (net, 30d)" -msgstr "Revenue (net, 30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:34 +msgid "AOV" +msgstr "AOV" -#: engine/core/templates/admin/dashboard/_kpis.html:24 -msgid "Returns (30d)" -msgstr "Returns (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:48 +msgid "Net revenue" +msgstr "Net revenue" -#: engine/core/templates/admin/dashboard/_kpis.html:33 -msgid "Processed orders (30d)" -msgstr "Processed orders (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:62 +msgid "Refund rate" +msgstr "Refund rate" + +#: engine/core/templates/admin/dashboard/_kpis.html:73 +msgid "returned" +msgstr "Returned" + +#: engine/core/templates/admin/dashboard/_low_stock.html:5 +msgid "Low stock" +msgstr "Low stock" + +#: engine/core/templates/admin/dashboard/_low_stock.html:29 +msgid "No low stock items." +msgstr "No low stock items." #: engine/core/templates/admin/dashboard/_most_returned.html:5 msgid "Most returned products (30d)" @@ -2795,11 +2809,11 @@ msgid "Most wished product" msgstr "Most wished products" #: engine/core/templates/admin/dashboard/_product_lists.html:33 -#: engine/core/templates/admin/dashboard/_product_lists.html:67 +#: engine/core/templates/admin/dashboard/_product_lists.html:68 msgid "No data yet." msgstr "No data yet." -#: engine/core/templates/admin/dashboard/_product_lists.html:40 +#: engine/core/templates/admin/dashboard/_product_lists.html:41 msgid "Most popular product" msgstr "Most popular products" @@ -2835,10 +2849,6 @@ msgstr "No category sales in the last 30 days." msgid "Django site admin" msgstr "Django site admin" -#: engine/core/templates/admin/index.html:20 -msgid "Dashboard" -msgstr "Dashboard" - #: 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 @@ -2868,12 +2878,11 @@ msgstr "Hello %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" -"Thank you for your order #%(order.pk)s! We are pleased to inform you that we " -"have taken your order into work. Below are the details of your order:" +"Thank you for your order #%(order.pk)s! We are pleased to inform you that we" +" have taken your order into work. Below are the details of your order:" #: engine/core/templates/digital_order_created_email.html:112 #: engine/core/templates/digital_order_delivered_email.html:110 @@ -2983,12 +2992,11 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" -"Thank you for your order! We are pleased to confirm your purchase. Below are " -"the details of your order:" +"Thank you for your order! We are pleased to confirm your purchase. Below are" +" the details of your order:" #: engine/core/templates/shipped_order_created_email.html:123 #: engine/core/templates/shipped_order_delivered_email.html:123 @@ -3057,7 +3065,7 @@ 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!" -#: engine/core/views.py:90 +#: engine/core/views.py:91 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." @@ -3065,7 +3073,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." -#: engine/core/views.py:105 +#: engine/core/views.py:106 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " @@ -3075,17 +3083,17 @@ msgstr "" "the request, fetches the appropriate sitemap detail response, and sets the " "Content-Type header for XML." -#: engine/core/views.py:140 +#: engine/core/views.py:141 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "" "Returns a list of supported languages and their corresponding information." -#: engine/core/views.py:172 +#: engine/core/views.py:173 msgid "Returns the parameters of the website as a JSON object." msgstr "Returns the parameters of the website as a JSON object." -#: engine/core/views.py:191 +#: engine/core/views.py:192 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." @@ -3093,11 +3101,11 @@ msgstr "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." -#: engine/core/views.py:218 +#: engine/core/views.py:219 msgid "Handles `contact us` form submissions." msgstr "Handles `contact us` form submissions." -#: engine/core/views.py:239 +#: engine/core/views.py:240 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." @@ -3105,77 +3113,69 @@ msgstr "" "Handles requests for processing and validating URLs from incoming POST " "requests." -#: engine/core/views.py:279 +#: engine/core/views.py:280 msgid "Handles global search queries." msgstr "Handles global search queries." -#: engine/core/views.py:294 +#: engine/core/views.py:295 msgid "Handles the logic of buying as a business without registration." msgstr "Handles the logic of buying as a business without registration." -#: engine/core/views.py:331 +#: engine/core/views.py:332 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." -#: engine/core/views.py:342 +#: engine/core/views.py:343 msgid "order_product_uuid is required" msgstr "order_product_uuid is required" -#: engine/core/views.py:349 +#: engine/core/views.py:350 msgid "order product does not exist" msgstr "order product does not exist" -#: engine/core/views.py:352 +#: engine/core/views.py:353 msgid "you can only download the digital asset once" msgstr "You can only download the digital asset once" -#: engine/core/views.py:355 +#: engine/core/views.py:356 msgid "the order must be paid before downloading the digital asset" msgstr "the order must be paid before downloading the digital asset" -#: engine/core/views.py:361 +#: engine/core/views.py:362 msgid "the order product does not have a product" msgstr "The order product does not have a product" -#: engine/core/views.py:398 +#: engine/core/views.py:399 msgid "favicon not found" msgstr "favicon not found" -#: engine/core/views.py:403 +#: engine/core/views.py:404 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." -#: engine/core/views.py:415 +#: engine/core/views.py:416 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." -#: engine/core/views.py:428 +#: engine/core/views.py:429 msgid "Returns current version of the eVibes. " msgstr "Returns current version of the eVibes." -#: engine/core/views.py:637 +#: engine/core/views.py:793 msgid "Returns custom variables for Dashboard. " msgstr "Returns custom variables for Dashboard." @@ -3195,15 +3195,17 @@ msgstr "" #: engine/core/viewsets.py:156 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." #: engine/core/viewsets.py:175 msgid "" @@ -3226,14 +3228,14 @@ msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." #: engine/core/viewsets.py:213 msgid "" @@ -3298,15 +3300,15 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `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." #: engine/core/viewsets.py:621 @@ -3314,31 +3316,31 @@ msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." #: engine/core/viewsets.py:825 msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" #: engine/core/viewsets.py:879 @@ -3365,16 +3367,16 @@ msgstr "Handles operations related to Stock data in the system." msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." msgstr "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." diff --git a/engine/core/locale/en_US/LC_MESSAGES/django.mo b/engine/core/locale/en_US/LC_MESSAGES/django.mo index 1a3a0b25b059213247d378b1624506ef1dadc272..e3d455fbaf6384fa627677909db238a49593e237 100644 GIT binary patch delta 14884 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 G2mTLbwVa6n delta 14882 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 DALWim diff --git a/engine/core/locale/en_US/LC_MESSAGES/django.po b/engine/core/locale/en_US/LC_MESSAGES/django.po index 781a67ff..2508f976 100644 --- a/engine/core/locale/en_US/LC_MESSAGES/django.po +++ b/engine/core/locale/en_US/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -27,9 +27,11 @@ msgstr "Is Active" #: engine/core/abstract.py: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" #: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" @@ -153,7 +155,8 @@ msgstr "Delivered" msgid "canceled" msgstr "Canceled" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Failed" @@ -268,7 +271,8 @@ msgid "rewrite an existing attribute group saving non-editables" msgstr "Rewrite an existing attribute group saving non-editables" #: engine/core/docs/drf/viewsets.py:96 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Rewrite some fields of an existing attribute group saving non-editables" @@ -317,7 +321,8 @@ msgid "rewrite an existing attribute value saving non-editables" msgstr "Rewrite an existing attribute value saving non-editables" #: engine/core/docs/drf/viewsets.py:186 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" "Rewrite some fields of an existing attribute value saving non-editables" @@ -371,11 +376,11 @@ msgstr "For non-staff users, only their own orders are returned." #: engine/core/docs/drf/viewsets.py:281 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" #: engine/core/docs/drf/viewsets.py:288 msgid "Filter orders with buy_time >= this ISO 8601 datetime" @@ -407,13 +412,13 @@ msgstr "Filter by order status (case-insensitive substring match)" #: engine/core/docs/drf/viewsets.py:324 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." #: engine/core/docs/drf/viewsets.py:336 msgid "retrieve a single order (detailed view)" @@ -599,26 +604,17 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…`\n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" "`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`,\n" @@ -634,12 +630,10 @@ msgstr "(exact) Product UUID" #: engine/core/docs/drf/viewsets.py:581 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" #: engine/core/docs/drf/viewsets.py:598 engine/core/docs/drf/viewsets.py:599 @@ -1089,7 +1083,7 @@ msgstr "Cached data" msgid "camelized JSON data from the requested URL" msgstr "Camelized JSON data from the requested URL" -#: engine/core/graphene/mutations.py:67 engine/core/views.py:256 +#: engine/core/graphene/mutations.py:67 engine/core/views.py:257 msgid "only URLs starting with http(s):// are allowed" msgstr "Only URLs starting with http(s):// are allowed" @@ -1173,11 +1167,11 @@ msgstr "Buy an order" #: engine/core/graphene/mutations.py:516 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "" -"Please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"Please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" #: engine/core/graphene/mutations.py:549 msgid "add or delete a feedback for orderproduct" @@ -1251,7 +1245,8 @@ msgid "which attributes and values can be used for filtering this category." msgstr "Which attributes and values can be used for filtering this category." #: engine/core/graphene/object_types.py:203 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" "Minimum and maximum prices for products in this category, if available." @@ -1724,12 +1719,14 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." #: engine/core/models.py:448 msgid "name of this brand" @@ -1773,15 +1770,15 @@ msgstr "Categories" #: engine/core/models.py:508 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 " @@ -1925,15 +1922,15 @@ msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." #: engine/core/models.py:733 @@ -1995,13 +1992,13 @@ msgstr "Attribute" #: engine/core/models.py:777 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." #: engine/core/models.py:788 msgid "attribute of this value" @@ -2018,14 +2015,14 @@ msgstr "The specific value for this attribute" #: engine/core/models.py:815 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." @@ -2067,15 +2064,15 @@ msgid "" "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" "Represents a promotional campaign for products with a discount. This class " "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." #: engine/core/models.py:880 msgid "percentage discount for the selected products" @@ -2143,15 +2140,15 @@ msgid "" "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." msgstr "" "Represents a documentary record tied to a product. This class is used to " "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." #: engine/core/models.py:998 msgid "documentary" @@ -2167,23 +2164,23 @@ msgstr "Unresolved" #: engine/core/models.py:1014 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." #: engine/core/models.py:1029 msgid "address line for the customer" @@ -2338,15 +2335,15 @@ msgstr "Invalid discount type for promocode {self.uuid}!" 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." @@ -2517,7 +2514,8 @@ msgid "feedback comments" msgstr "Feedback comments" #: engine/core/models.py:1719 -msgid "references the specific product in an order that this feedback is about" +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" @@ -2661,16 +2659,16 @@ msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." #: engine/core/models.py:1961 msgid "download" @@ -2715,8 +2713,8 @@ msgid "No customer activity in the last 30 days." msgstr "No customer activity in the last 30 days." #: engine/core/templates/admin/dashboard/_daily_sales.html:5 -msgid "Daily sales (30d)" -msgstr "Daily sales (30d)" +msgid "Daily sales" +msgstr "Daily sales" #: engine/core/templates/admin/dashboard/_daily_sales.html:59 msgid "Orders (FINISHED)" @@ -2727,6 +2725,7 @@ msgid "Gross revenue" msgstr "Gross revenue" #: engine/core/templates/admin/dashboard/_daily_sales.html:106 +#: engine/core/templates/admin/dashboard/_kpis.html:20 msgid "Orders" msgstr "Orders" @@ -2734,6 +2733,10 @@ msgstr "Orders" msgid "Gross" msgstr "Gross" +#: engine/core/templates/admin/dashboard/_header.html:3 +msgid "Dashboard" +msgstr "Dashboard" + #: engine/core/templates/admin/dashboard/_income_overview.html:7 msgid "Income overview" msgstr "Income overview" @@ -2762,20 +2765,32 @@ msgid "No data" msgstr "No date" #: engine/core/templates/admin/dashboard/_kpis.html:6 -msgid "Revenue (gross, 30d)" -msgstr "Revenue (gross, 30d)" +msgid "GMV" +msgstr "GMV" -#: engine/core/templates/admin/dashboard/_kpis.html:15 -msgid "Revenue (net, 30d)" -msgstr "Revenue (net, 30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:34 +msgid "AOV" +msgstr "AOV" -#: engine/core/templates/admin/dashboard/_kpis.html:24 -msgid "Returns (30d)" -msgstr "Returns (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:48 +msgid "Net revenue" +msgstr "Net revenue" -#: engine/core/templates/admin/dashboard/_kpis.html:33 -msgid "Processed orders (30d)" -msgstr "Processed orders (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:62 +msgid "Refund rate" +msgstr "Refund rate" + +#: engine/core/templates/admin/dashboard/_kpis.html:73 +msgid "returned" +msgstr "Returned" + +#: engine/core/templates/admin/dashboard/_low_stock.html:5 +msgid "Low stock" +msgstr "Low stock" + +#: engine/core/templates/admin/dashboard/_low_stock.html:29 +msgid "No low stock items." +msgstr "No low stock items." #: engine/core/templates/admin/dashboard/_most_returned.html:5 msgid "Most returned products (30d)" @@ -2790,11 +2805,11 @@ msgid "Most wished product" msgstr "Most wished products" #: engine/core/templates/admin/dashboard/_product_lists.html:33 -#: engine/core/templates/admin/dashboard/_product_lists.html:67 +#: engine/core/templates/admin/dashboard/_product_lists.html:68 msgid "No data yet." msgstr "No data yet." -#: engine/core/templates/admin/dashboard/_product_lists.html:40 +#: engine/core/templates/admin/dashboard/_product_lists.html:41 msgid "Most popular product" msgstr "Most popular products" @@ -2830,10 +2845,6 @@ msgstr "No category sales in the last 30 days." msgid "Django site admin" msgstr "Django site admin" -#: engine/core/templates/admin/index.html:20 -msgid "Dashboard" -msgstr "Dashboard" - #: 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 @@ -2863,12 +2874,11 @@ msgstr "Hello %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" -"Thank you for your order #%(order.pk)s! We are pleased to inform you that we " -"have taken your order into work. Below are the details of your order:" +"Thank you for your order #%(order.pk)s! We are pleased to inform you that we" +" have taken your order into work. Below are the details of your order:" #: engine/core/templates/digital_order_created_email.html:112 #: engine/core/templates/digital_order_delivered_email.html:110 @@ -2978,12 +2988,11 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" -"Thank you for your order! We are pleased to confirm your purchase. Below are " -"the details of your order:" +"Thank you for your order! We are pleased to confirm your purchase. Below are" +" the details of your order:" #: engine/core/templates/shipped_order_created_email.html:123 #: engine/core/templates/shipped_order_delivered_email.html:123 @@ -3052,7 +3061,7 @@ 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!" -#: engine/core/views.py:90 +#: engine/core/views.py:91 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." @@ -3060,7 +3069,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." -#: engine/core/views.py:105 +#: engine/core/views.py:106 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " @@ -3070,17 +3079,17 @@ msgstr "" "the request, fetches the appropriate sitemap detail response, and sets the " "Content-Type header for XML." -#: engine/core/views.py:140 +#: engine/core/views.py:141 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "" "Returns a list of supported languages and their corresponding information." -#: engine/core/views.py:172 +#: engine/core/views.py:173 msgid "Returns the parameters of the website as a JSON object." msgstr "Returns the parameters of the website as a JSON object." -#: engine/core/views.py:191 +#: engine/core/views.py:192 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." @@ -3088,11 +3097,11 @@ msgstr "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." -#: engine/core/views.py:218 +#: engine/core/views.py:219 msgid "Handles `contact us` form submissions." msgstr "Handles `contact us` form submissions." -#: engine/core/views.py:239 +#: engine/core/views.py:240 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." @@ -3100,77 +3109,69 @@ msgstr "" "Handles requests for processing and validating URLs from incoming POST " "requests." -#: engine/core/views.py:279 +#: engine/core/views.py:280 msgid "Handles global search queries." msgstr "Handles global search queries." -#: engine/core/views.py:294 +#: engine/core/views.py:295 msgid "Handles the logic of buying as a business without registration." msgstr "Handles the logic of buying as a business without registration." -#: engine/core/views.py:331 +#: engine/core/views.py:332 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." -#: engine/core/views.py:342 +#: engine/core/views.py:343 msgid "order_product_uuid is required" msgstr "order_product_uuid is required" -#: engine/core/views.py:349 +#: engine/core/views.py:350 msgid "order product does not exist" msgstr "order product does not exist" -#: engine/core/views.py:352 +#: engine/core/views.py:353 msgid "you can only download the digital asset once" msgstr "You can only download the digital asset once" -#: engine/core/views.py:355 +#: engine/core/views.py:356 msgid "the order must be paid before downloading the digital asset" msgstr "the order must be paid before downloading the digital asset" -#: engine/core/views.py:361 +#: engine/core/views.py:362 msgid "the order product does not have a product" msgstr "The order product does not have a product" -#: engine/core/views.py:398 +#: engine/core/views.py:399 msgid "favicon not found" msgstr "favicon not found" -#: engine/core/views.py:403 +#: engine/core/views.py:404 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." -#: engine/core/views.py:415 +#: engine/core/views.py:416 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." -#: engine/core/views.py:428 +#: engine/core/views.py:429 msgid "Returns current version of the eVibes. " msgstr "Returns current version of the eVibes." -#: engine/core/views.py:637 +#: engine/core/views.py:793 msgid "Returns custom variables for Dashboard. " msgstr "Returns custom variables for Dashboard." @@ -3190,15 +3191,17 @@ msgstr "" #: engine/core/viewsets.py:156 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." #: engine/core/viewsets.py:175 msgid "" @@ -3221,14 +3224,14 @@ msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." #: engine/core/viewsets.py:213 msgid "" @@ -3293,15 +3296,15 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `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." #: engine/core/viewsets.py:621 @@ -3309,31 +3312,31 @@ msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." #: engine/core/viewsets.py:825 msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" #: engine/core/viewsets.py:879 @@ -3360,16 +3363,16 @@ msgstr "Handles operations related to Stock data in the system." msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." msgstr "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." diff --git a/engine/core/locale/es_ES/LC_MESSAGES/django.mo b/engine/core/locale/es_ES/LC_MESSAGES/django.mo index 907238b911748e6f9af6e5ff90914267bd3e48db..4ab855fabc3fa0a27cf430071696910e28e7c4f4 100644 GIT binary patch delta 14891 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 M*>^wAm0JA&00xrB9RL6T delta 14873 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\n" "Language-Team: BRITISH ENGLISH \n" @@ -29,7 +29,8 @@ msgstr "Está activo" #: 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" @@ -156,7 +157,8 @@ msgstr "Entregado" msgid "canceled" msgstr "Cancelado" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Fallido" @@ -208,8 +210,7 @@ msgid "" "apply key, data and timeout with authentication to write data to cache." msgstr "" "Aplicar sólo una clave para leer datos permitidos de la caché.\n" -"Aplicar clave, datos y tiempo de espera con autenticación para escribir " -"datos en la caché." +"Aplicar clave, datos y tiempo de espera con autenticación para escribir datos en la caché." #: engine/core/docs/drf/views.py:62 msgid "get a list of supported languages" @@ -245,8 +246,8 @@ msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." msgstr "" -"Compra un pedido como empresa, utilizando los `productos` proporcionados con " -"`product_uuid` y `attributes`." +"Compra un pedido como empresa, utilizando los `productos` proporcionados con" +" `product_uuid` y `attributes`." #: engine/core/docs/drf/views.py:164 msgid "download a digital asset from purchased digital order" @@ -273,7 +274,8 @@ msgid "rewrite an existing attribute group saving non-editables" msgstr "Reescribir un grupo de atributos existente guardando los no editables" #: engine/core/docs/drf/viewsets.py:96 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Reescribir algunos campos de un grupo de atributos existente guardando los " "no editables" @@ -301,7 +303,8 @@ msgstr "Reescribir un atributo existente guardando los no editables" #: engine/core/docs/drf/viewsets.py:141 msgid "rewrite some fields of an existing attribute saving non-editables" msgstr "" -"Reescribir algunos campos de un atributo existente guardando los no editables" +"Reescribir algunos campos de un atributo existente guardando los no " +"editables" #: engine/core/docs/drf/viewsets.py:151 msgid "list all attribute values (simple view)" @@ -324,10 +327,11 @@ msgid "rewrite an existing attribute value saving non-editables" msgstr "Reescribir un valor de atributo existente guardando los no editables" #: engine/core/docs/drf/viewsets.py:186 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" -"Reescribir algunos campos de un valor de atributo existente guardando los no " -"editables" +"Reescribir algunos campos de un valor de atributo existente guardando los no" +" editables" #: engine/core/docs/drf/viewsets.py:196 engine/core/docs/drf/viewsets.py:197 msgid "list all categories (simple view)" @@ -383,12 +387,12 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:281 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" "Búsqueda de subcadenas sin distinción entre mayúsculas y minúsculas en " -"human_readable_id, order_products.product.name y order_products.product." -"partnumber" +"human_readable_id, order_products.product.name y " +"order_products.product.partnumber" #: engine/core/docs/drf/viewsets.py:288 msgid "Filter orders with buy_time >= this ISO 8601 datetime" @@ -409,8 +413,8 @@ msgstr "Filtrar por ID de pedido exacto legible por el ser humano" #: engine/core/docs/drf/viewsets.py:308 msgid "Filter by user's email (case-insensitive exact match)" msgstr "" -"Filtrar por correo electrónico del usuario (coincidencia exacta insensible a " -"mayúsculas y minúsculas)" +"Filtrar por correo electrónico del usuario (coincidencia exacta insensible a" +" mayúsculas y minúsculas)" #: engine/core/docs/drf/viewsets.py:313 msgid "Filter by user's UUID" @@ -424,9 +428,9 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:324 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "Ordenar por: uuid, human_readable_id, user_email, user, status, created, " "modified, buy_time, random. Utilice el prefijo '-' para orden descendente " @@ -573,7 +577,8 @@ msgstr "Reescribir un atributo existente guardando los no editables" #: engine/core/docs/drf/viewsets.py:496 msgid "rewrite some fields of an existing wishlist saving non-editables" msgstr "" -"Reescribir algunos campos de un atributo existente guardando los no editables" +"Reescribir algunos campos de un atributo existente guardando los no " +"editables" #: engine/core/docs/drf/viewsets.py:503 msgid "retrieve current pending wishlist of a user" @@ -628,31 +633,20 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "Filtrar por uno o varios pares nombre/valor de atributo. \n" "- Sintaxis**: `nombre_attr=método-valor[;attr2=método2-valor2]...`.\n" -"- Métodos** (por defecto `icontiene` si se omite): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`.\n" -"- Tipificación de valores**: Se intenta primero JSON (para poder pasar " -"listas/dictos), `true`/`false` para booleanos, enteros, flotantes; en caso " -"contrario se trata como cadena. \n" -"- Base64**: prefiérelo con `b64-` para codificar en base64 el valor sin " -"procesar. \n" +"- Métodos** (por defecto `icontiene` si se omite): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`.\n" +"- Tipificación de valores**: Se intenta primero JSON (para poder pasar listas/dictos), `true`/`false` para booleanos, enteros, flotantes; en caso contrario se trata como cadena. \n" +"- Base64**: prefiérelo con `b64-` para codificar en base64 el valor sin procesar. \n" "Ejemplos: \n" -"`color=rojo exacto`, `tamaño=gt-10`, `características=en-[\"wifi\", " -"\"bluetooth\"]`,\n" +"`color=rojo exacto`, `tamaño=gt-10`, `características=en-[\"wifi\", \"bluetooth\"]`,\n" "`b64-description=icontains-aGVhdC1jb2xk`." #: engine/core/docs/drf/viewsets.py:568 engine/core/docs/drf/viewsets.py:569 @@ -665,12 +659,10 @@ msgstr "UUID (exacto) del producto" #: engine/core/docs/drf/viewsets.py:581 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Lista separada por comas de campos por los que ordenar. Prefiérela con `-` " -"para que sea descendente. \n" +"Lista separada por comas de campos por los que ordenar. Prefiérela con `-` para que sea descendente. \n" "**Permitido:** uuid, rating, name, slug, created, modified, price, random" #: engine/core/docs/drf/viewsets.py:598 engine/core/docs/drf/viewsets.py:599 @@ -879,7 +871,8 @@ msgstr "Eliminar la imagen de un producto" #: engine/core/docs/drf/viewsets.py:1079 msgid "rewrite an existing product image saving non-editables" -msgstr "Reescribir una imagen de producto existente guardando los no editables" +msgstr "" +"Reescribir una imagen de producto existente guardando los no editables" #: engine/core/docs/drf/viewsets.py:1086 msgid "rewrite some fields of an existing product image saving non-editables" @@ -1073,7 +1066,8 @@ msgstr "SKU" #: 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" #: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" @@ -1141,7 +1135,7 @@ msgstr "Datos en caché" msgid "camelized JSON data from the requested URL" msgstr "Datos JSON camelizados de la URL solicitada" -#: engine/core/graphene/mutations.py:67 engine/core/views.py:256 +#: engine/core/graphene/mutations.py:67 engine/core/views.py:257 msgid "only URLs starting with http(s):// are allowed" msgstr "Sólo se permiten URL que empiecen por http(s)://." @@ -1174,7 +1168,8 @@ msgstr "Indique order_uuid o order_hr_id, ¡se excluyen mutuamente!" #: engine/core/graphene/mutations.py:236 engine/core/graphene/mutations.py:501 #: engine/core/graphene/mutations.py:543 engine/core/viewsets.py:712 msgid "wrong type came from order.buy() method: {type(instance)!s}" -msgstr "Tipo incorrecto proveniente del método order.buy(): {type(instance)!s}" +msgstr "" +"Tipo incorrecto proveniente del método order.buy(): {type(instance)!s}" #: engine/core/graphene/mutations.py:245 msgid "perform an action on a list of products in the order" @@ -1225,11 +1220,11 @@ msgstr "Comprar un pedido" #: engine/core/graphene/mutations.py:516 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "" -"Por favor, envíe los atributos como una cadena formateada como attr1=valor1," -"attr2=valor2" +"Por favor, envíe los atributos como una cadena formateada como " +"attr1=valor1,attr2=valor2" #: engine/core/graphene/mutations.py:549 msgid "add or delete a feedback for orderproduct" @@ -1304,7 +1299,8 @@ msgstr "" "Qué atributos y valores se pueden utilizar para filtrar esta categoría." #: engine/core/graphene/object_types.py:203 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" "Precios mínimo y máximo de los productos de esta categoría, si están " "disponibles." @@ -1337,7 +1333,8 @@ msgstr "Cómo" #: 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." #: engine/core/graphene/object_types.py:366 msgid "represents feedback from a user." @@ -1580,8 +1577,8 @@ msgstr "" "Representa un grupo de atributos, que puede ser jerárquico. Esta clase se " "utiliza para gestionar y organizar grupos de atributos. Un grupo de " "atributos puede tener un grupo padre, formando una estructura jerárquica. " -"Esto puede ser útil para categorizar y gestionar los atributos de manera más " -"eficaz en un sistema complejo." +"Esto puede ser útil para categorizar y gestionar los atributos de manera más" +" eficaz en un sistema complejo." #: engine/core/models.py:91 msgid "parent of this group" @@ -1611,11 +1608,11 @@ msgid "" msgstr "" "Representa una entidad de proveedor capaz de almacenar información sobre " "proveedores externos y sus requisitos de interacción. La clase Proveedor se " -"utiliza para definir y gestionar la información relacionada con un proveedor " -"externo. Almacena el nombre del vendedor, los detalles de autenticación " +"utiliza para definir y gestionar la información relacionada con un proveedor" +" externo. Almacena el nombre del vendedor, los detalles de autenticación " "necesarios para la comunicación y el porcentaje de marcado aplicado a los " -"productos recuperados del vendedor. Este modelo también mantiene metadatos y " -"restricciones adicionales, lo que lo hace adecuado para su uso en sistemas " +"productos recuperados del vendedor. Este modelo también mantiene metadatos y" +" restricciones adicionales, lo que lo hace adecuado para su uso en sistemas " "que interactúan con proveedores externos." #: engine/core/models.py:124 @@ -1788,7 +1785,8 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" "Representa un objeto Marca en el sistema. Esta clase maneja información y " "atributos relacionados con una marca, incluyendo su nombre, logotipos, " @@ -1838,8 +1836,8 @@ msgstr "Categorías" #: engine/core/models.py:508 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 " @@ -1848,8 +1846,8 @@ msgstr "" "Representa el stock de un producto gestionado en el sistema. Esta clase " "proporciona detalles sobre la relación entre vendedores, productos y su " "información de existencias, así como propiedades relacionadas con el " -"inventario como precio, precio de compra, cantidad, SKU y activos digitales. " -"Forma parte del sistema de gestión de inventario para permitir el " +"inventario como precio, precio de compra, cantidad, SKU y activos digitales." +" Forma parte del sistema de gestión de inventario para permitir el " "seguimiento y la evaluación de los productos disponibles de varios " "vendedores." @@ -1932,13 +1930,13 @@ msgstr "" "Representa un producto con atributos como categoría, marca, etiquetas, " "estado digital, nombre, descripción, número de pieza y babosa. Proporciona " "propiedades de utilidad relacionadas para recuperar valoraciones, recuentos " -"de comentarios, precio, cantidad y total de pedidos. Diseñado para su uso en " -"un sistema que gestiona el comercio electrónico o la gestión de inventarios. " -"Esta clase interactúa con modelos relacionados (como Category, Brand y " -"ProductTag) y gestiona el almacenamiento en caché de las propiedades a las " -"que se accede con frecuencia para mejorar el rendimiento. Se utiliza para " -"definir y manipular datos de productos y su información asociada dentro de " -"una aplicación." +"de comentarios, precio, cantidad y total de pedidos. Diseñado para su uso en" +" un sistema que gestiona el comercio electrónico o la gestión de " +"inventarios. Esta clase interactúa con modelos relacionados (como Category, " +"Brand y ProductTag) y gestiona el almacenamiento en caché de las propiedades" +" a las que se accede con frecuencia para mejorar el rendimiento. Se utiliza " +"para definir y manipular datos de productos y su información asociada dentro" +" de una aplicación." #: engine/core/models.py:585 msgid "category this product belongs to" @@ -1993,14 +1991,14 @@ 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." @@ -2064,9 +2062,9 @@ msgstr "Atributo" #: engine/core/models.py:777 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 " @@ -2087,8 +2085,8 @@ msgstr "El valor específico de este atributo" #: engine/core/models.py:815 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 "" @@ -2137,8 +2135,8 @@ msgid "" "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 " @@ -2214,8 +2212,8 @@ msgid "" "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 " @@ -2238,14 +2236,14 @@ msgstr "Sin resolver" #: engine/core/models.py:1014 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 " @@ -2254,8 +2252,8 @@ msgstr "" "información detallada sobre direcciones, incluidos componentes como calle, " "ciudad, región, país y geolocalización (longitud y latitud). Admite la " "integración con API de geocodificación, permitiendo el almacenamiento de " -"respuestas API sin procesar para su posterior procesamiento o inspección. La " -"clase también permite asociar una dirección a un usuario, facilitando el " +"respuestas API sin procesar para su posterior procesamiento o inspección. La" +" clase también permite asociar una dirección a un usuario, facilitando el " "manejo personalizado de los datos." #: engine/core/models.py:1029 @@ -2413,8 +2411,8 @@ msgstr "¡Tipo de descuento no válido para el código promocional {self.uuid}!" 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 "" @@ -2422,9 +2420,9 @@ msgstr "" "dentro de la aplicación, incluyendo sus diversos atributos como información " "de facturación y envío, estado, usuario asociado, notificaciones y " "operaciones relacionadas. Los pedidos pueden tener productos asociados, se " -"pueden aplicar promociones, establecer direcciones y actualizar los datos de " -"envío o facturación. Del mismo modo, la funcionalidad permite gestionar los " -"productos en el ciclo de vida del pedido." +"pueden aplicar promociones, establecer direcciones y actualizar los datos de" +" envío o facturación. Del mismo modo, la funcionalidad permite gestionar los" +" productos en el ciclo de vida del pedido." #: engine/core/models.py:1213 msgid "the billing address used for this order" @@ -2597,7 +2595,8 @@ msgid "feedback comments" msgstr "Comentarios" #: engine/core/models.py:1719 -msgid "references the specific product in an order that this feedback is about" +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" @@ -2632,8 +2631,8 @@ 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." @@ -2745,16 +2744,17 @@ msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" "Representa la funcionalidad de descarga de activos digitales asociados a " -"pedidos. La clase DigitalAssetDownload proporciona la capacidad de gestionar " -"y acceder a descargas relacionadas con productos de pedidos. Mantiene " +"pedidos. La clase DigitalAssetDownload proporciona la capacidad de gestionar" +" y acceder a descargas relacionadas con productos de pedidos. Mantiene " "información sobre el producto del pedido asociado, el número de descargas y " -"si el activo es visible públicamente. Incluye un método para generar una URL " -"para descargar el activo cuando el pedido asociado está en estado completado." +"si el activo es visible públicamente. Incluye un método para generar una URL" +" para descargar el activo cuando el pedido asociado está en estado " +"completado." #: engine/core/models.py:1961 msgid "download" @@ -2800,8 +2800,8 @@ msgid "No customer activity in the last 30 days." msgstr "Sin actividad de clientes en los últimos 30 días." #: engine/core/templates/admin/dashboard/_daily_sales.html:5 -msgid "Daily sales (30d)" -msgstr "Ventas diarias (30d)" +msgid "Daily sales" +msgstr "Ventas diarias" #: engine/core/templates/admin/dashboard/_daily_sales.html:59 msgid "Orders (FINISHED)" @@ -2812,6 +2812,7 @@ msgid "Gross revenue" msgstr "Ingresos brutos" #: engine/core/templates/admin/dashboard/_daily_sales.html:106 +#: engine/core/templates/admin/dashboard/_kpis.html:20 msgid "Orders" msgstr "Pedidos" @@ -2819,6 +2820,10 @@ msgstr "Pedidos" msgid "Gross" msgstr "Bruto" +#: engine/core/templates/admin/dashboard/_header.html:3 +msgid "Dashboard" +msgstr "Cuadro de mandos" + #: engine/core/templates/admin/dashboard/_income_overview.html:7 msgid "Income overview" msgstr "Resumen de ingresos" @@ -2847,20 +2852,32 @@ msgid "No data" msgstr "Sin fecha" #: engine/core/templates/admin/dashboard/_kpis.html:6 -msgid "Revenue (gross, 30d)" -msgstr "Ingresos (brutos, 30d)" +msgid "GMV" +msgstr "GMV" -#: engine/core/templates/admin/dashboard/_kpis.html:15 -msgid "Revenue (net, 30d)" -msgstr "Ingresos (netos, 30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:34 +msgid "AOV" +msgstr "AOV" -#: engine/core/templates/admin/dashboard/_kpis.html:24 -msgid "Returns (30d)" -msgstr "Devoluciones (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:48 +msgid "Net revenue" +msgstr "Ingresos netos" -#: engine/core/templates/admin/dashboard/_kpis.html:33 -msgid "Processed orders (30d)" -msgstr "Pedidos procesados (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:62 +msgid "Refund rate" +msgstr "Tasa de devolución" + +#: engine/core/templates/admin/dashboard/_kpis.html:73 +msgid "returned" +msgstr "Devuelto" + +#: engine/core/templates/admin/dashboard/_low_stock.html:5 +msgid "Low stock" +msgstr "Pocas existencias" + +#: engine/core/templates/admin/dashboard/_low_stock.html:29 +msgid "No low stock items." +msgstr "No hay artículos de bajo stock." #: engine/core/templates/admin/dashboard/_most_returned.html:5 msgid "Most returned products (30d)" @@ -2875,11 +2892,11 @@ msgid "Most wished product" msgstr "Producto más deseado" #: engine/core/templates/admin/dashboard/_product_lists.html:33 -#: engine/core/templates/admin/dashboard/_product_lists.html:67 +#: engine/core/templates/admin/dashboard/_product_lists.html:68 msgid "No data yet." msgstr "Aún no hay datos." -#: engine/core/templates/admin/dashboard/_product_lists.html:40 +#: engine/core/templates/admin/dashboard/_product_lists.html:41 msgid "Most popular product" msgstr "Producto más popular" @@ -2915,10 +2932,6 @@ msgstr "Ninguna venta de categoría en los últimos 30 días." msgid "Django site admin" msgstr "Administrador del sitio Django" -#: engine/core/templates/admin/index.html:20 -msgid "Dashboard" -msgstr "Cuadro de mandos" - #: 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 @@ -2948,8 +2961,7 @@ msgstr "Hola %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" "¡Gracias por su pedido #%(order.pk)s! Nos complace informarle de que hemos " @@ -3063,8 +3075,7 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" "Gracias por su pedido. Nos complace confirmarle su compra. A continuación " @@ -3139,16 +3150,16 @@ msgstr "" "Las dimensiones de la imagen no deben superar w{max_width} x h{max_height} " "píxeles." -#: engine/core/views.py:90 +#: engine/core/views.py:91 msgid "" "Handles the request for the sitemap index and returns an XML response. It " "ensures the response includes the appropriate content type header for XML." msgstr "" -"Gestiona la solicitud del índice del mapa del sitio y devuelve una respuesta " -"XML. Se asegura de que la respuesta incluya el encabezado de tipo de " +"Gestiona la solicitud del índice del mapa del sitio y devuelve una respuesta" +" XML. Se asegura de que la respuesta incluya el encabezado de tipo de " "contenido apropiado para XML." -#: engine/core/views.py:105 +#: engine/core/views.py:106 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " @@ -3158,17 +3169,18 @@ msgstr "" "función procesa la solicitud, obtiene la respuesta detallada del mapa del " "sitio y establece el encabezado Content-Type para XML." -#: engine/core/views.py:140 +#: engine/core/views.py:141 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "" -"Devuelve una lista de los idiomas admitidos y su información correspondiente." +"Devuelve una lista de los idiomas admitidos y su información " +"correspondiente." -#: engine/core/views.py:172 +#: engine/core/views.py:173 msgid "Returns the parameters of the website as a JSON object." msgstr "Devuelve los parámetros del sitio web como un objeto JSON." -#: engine/core/views.py:191 +#: engine/core/views.py:192 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." @@ -3176,11 +3188,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." -#: engine/core/views.py:218 +#: engine/core/views.py:219 msgid "Handles `contact us` form submissions." msgstr "Gestiona los formularios de contacto." -#: engine/core/views.py:239 +#: engine/core/views.py:240 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." @@ -3188,78 +3200,70 @@ msgstr "" "Gestiona las solicitudes de procesamiento y validación de URL de las " "solicitudes POST entrantes." -#: engine/core/views.py:279 +#: engine/core/views.py:280 msgid "Handles global search queries." msgstr "Gestiona las consultas de búsqueda global." -#: engine/core/views.py:294 +#: engine/core/views.py:295 msgid "Handles the logic of buying as a business without registration." msgstr "Maneja la lógica de la compra como empresa sin registro." -#: engine/core/views.py:331 +#: engine/core/views.py:332 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Gestiona la descarga de un activo digital asociado a un pedido.\n" -"Esta función intenta servir el archivo del activo digital ubicado en el " -"directorio de almacenamiento del proyecto. Si no se encuentra el archivo, se " -"genera un error HTTP 404 para indicar que el recurso no está disponible." +"Esta función intenta servir el archivo del activo digital ubicado en el directorio de almacenamiento del proyecto. Si no se encuentra el archivo, se genera un error HTTP 404 para indicar que el recurso no está disponible." -#: engine/core/views.py:342 +#: engine/core/views.py:343 msgid "order_product_uuid is required" msgstr "order_product_uuid es obligatorio" -#: engine/core/views.py:349 +#: engine/core/views.py:350 msgid "order product does not exist" msgstr "pedir producto no existe" -#: engine/core/views.py:352 +#: engine/core/views.py:353 msgid "you can only download the digital asset once" msgstr "Sólo puede descargar el activo digital una vez" -#: engine/core/views.py:355 +#: engine/core/views.py:356 msgid "the order must be paid before downloading the digital asset" msgstr "el pedido debe pagarse antes de descargar el activo digital" -#: engine/core/views.py:361 +#: engine/core/views.py:362 msgid "the order product does not have a product" msgstr "El producto del pedido no tiene un producto" -#: engine/core/views.py:398 +#: engine/core/views.py:399 msgid "favicon not found" msgstr "favicon no encontrado" -#: engine/core/views.py:403 +#: engine/core/views.py:404 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Gestiona las peticiones del favicon de un sitio web.\n" -"Esta función intenta servir el archivo favicon ubicado en el directorio " -"estático del proyecto. Si no se encuentra el archivo favicon, se genera un " -"error HTTP 404 para indicar que el recurso no está disponible." +"Esta función intenta servir el archivo favicon ubicado en el directorio estático del proyecto. Si no se encuentra el archivo favicon, se genera un error HTTP 404 para indicar que el recurso no está disponible." -#: engine/core/views.py:415 +#: engine/core/views.py:416 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" "Redirige la petición a la página índice de administración. La función " "gestiona las peticiones HTTP entrantes y las redirige a la página de índice " -"de la interfaz de administración de Django. Utiliza la función `redirect` de " -"Django para gestionar la redirección HTTP." +"de la interfaz de administración de Django. Utiliza la función `redirect` de" +" Django para gestionar la redirección HTTP." -#: engine/core/views.py:428 +#: engine/core/views.py:429 msgid "Returns current version of the eVibes. " msgstr "Devuelve la versión actual del eVibes." -#: engine/core/views.py:637 +#: engine/core/views.py:793 msgid "Returns custom variables for Dashboard. " msgstr "Devuelve variables personalizadas para Dashboard." @@ -3279,15 +3283,16 @@ msgstr "" #: engine/core/viewsets.py:156 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" "Representa un conjunto de vistas para gestionar objetos AttributeGroup. " "Maneja operaciones relacionadas con AttributeGroup, incluyendo filtrado, " -"serialización y recuperación de datos. Esta clase forma parte de la capa API " -"de la aplicación y proporciona una forma estandarizada de procesar las " +"serialización y recuperación de datos. Esta clase forma parte de la capa API" +" de la aplicación y proporciona una forma estandarizada de procesar las " "solicitudes y respuestas de los datos de AttributeGroup." #: engine/core/viewsets.py:175 @@ -3299,10 +3304,10 @@ msgid "" "specific fields or retrieving detailed versus simplified information " "depending on the request." msgstr "" -"Gestiona las operaciones relacionadas con los objetos Attribute dentro de la " -"aplicación. Proporciona un conjunto de puntos finales de la API para " -"interactuar con los datos de los atributos. Esta clase gestiona la consulta, " -"el filtrado y la serialización de objetos Attribute, lo que permite un " +"Gestiona las operaciones relacionadas con los objetos Attribute dentro de la" +" aplicación. Proporciona un conjunto de puntos finales de la API para " +"interactuar con los datos de los atributos. Esta clase gestiona la consulta," +" el filtrado y la serialización de objetos Attribute, lo que permite un " "control dinámico de los datos devueltos, como el filtrado por campos " "específicos o la recuperación de información detallada o simplificada en " "función de la solicitud." @@ -3312,12 +3317,12 @@ msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" "Conjunto de vistas para gestionar objetos AttributeValue. Este conjunto de " -"vistas proporciona funcionalidad para listar, recuperar, crear, actualizar y " -"eliminar objetos AttributeValue. Se integra con los mecanismos viewset de " +"vistas proporciona funcionalidad para listar, recuperar, crear, actualizar y" +" eliminar objetos AttributeValue. Se integra con los mecanismos viewset de " "Django REST Framework y utiliza serializadores apropiados para diferentes " "acciones. Las capacidades de filtrado se proporcionan a través de " "DjangoFilterBackend." @@ -3333,8 +3338,8 @@ msgstr "" "Gestiona vistas para operaciones relacionadas con Categorías. La clase " "CategoryViewSet se encarga de gestionar las operaciones relacionadas con el " "modelo Category del sistema. Permite recuperar, filtrar y serializar datos " -"de categorías. El conjunto de vistas también aplica permisos para garantizar " -"que sólo los usuarios autorizados puedan acceder a datos específicos." +"de categorías. El conjunto de vistas también aplica permisos para garantizar" +" que sólo los usuarios autorizados puedan acceder a datos específicos." #: engine/core/viewsets.py:326 msgid "" @@ -3344,9 +3349,9 @@ msgid "" "endpoints for Brand objects." msgstr "" "Representa un conjunto de vistas para gestionar instancias de Brand. Esta " -"clase proporciona funcionalidad para consultar, filtrar y serializar objetos " -"Brand. Utiliza el marco ViewSet de Django para simplificar la implementación " -"de puntos finales de API para objetos Brand." +"clase proporciona funcionalidad para consultar, filtrar y serializar objetos" +" Brand. Utiliza el marco ViewSet de Django para simplificar la " +"implementación de puntos finales de API para objetos Brand." #: engine/core/viewsets.py:438 msgid "" @@ -3360,11 +3365,12 @@ 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." #: engine/core/viewsets.py:574 msgid "" @@ -3386,8 +3392,8 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `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 " @@ -3395,34 +3401,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." #: engine/core/viewsets.py:621 msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" "ViewSet para la gestión de pedidos y operaciones relacionadas. Esta clase " "proporciona funcionalidad para recuperar, modificar y gestionar objetos de " -"pedido. Incluye varios puntos finales para gestionar operaciones de pedidos, " -"como añadir o eliminar productos, realizar compras para usuarios registrados " -"y no registrados, y recuperar los pedidos pendientes del usuario autenticado " -"actual. ViewSet utiliza varios serializadores en función de la acción " -"específica que se esté realizando y aplica los permisos correspondientes al " -"interactuar con los datos del pedido." +"pedido. Incluye varios puntos finales para gestionar operaciones de pedidos," +" como añadir o eliminar productos, realizar compras para usuarios " +"registrados y no registrados, y recuperar los pedidos pendientes del usuario" +" autenticado actual. ViewSet utiliza varios serializadores en función de la " +"acción específica que se esté realizando y aplica los permisos " +"correspondientes al interactuar con los datos del pedido." #: engine/core/viewsets.py:825 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. " @@ -3459,8 +3465,8 @@ msgstr "" msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." @@ -3485,8 +3491,8 @@ msgstr "" "Esta clase proporciona la funcionalidad viewset para la gestión de objetos " "`Address`. La clase AddressViewSet permite operaciones CRUD, filtrado y " "acciones personalizadas relacionadas con entidades de direcciones. Incluye " -"comportamientos especializados para diferentes métodos HTTP, anulaciones del " -"serializador y gestión de permisos basada en el contexto de la solicitud." +"comportamientos especializados para diferentes métodos HTTP, anulaciones del" +" serializador y gestión de permisos basada en el contexto de la solicitud." #: engine/core/viewsets.py:1123 #, python-brace-format diff --git a/engine/core/locale/fa_IR/LC_MESSAGES/django.po b/engine/core/locale/fa_IR/LC_MESSAGES/django.po index d4d9aab1..690a1825 100644 --- a/engine/core/locale/fa_IR/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-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1049,7 +1049,7 @@ msgstr "" msgid "camelized JSON data from the requested URL" msgstr "" -#: engine/core/graphene/mutations.py:67 engine/core/views.py:256 +#: engine/core/graphene/mutations.py:67 engine/core/views.py:257 msgid "only URLs starting with http(s):// are allowed" msgstr "" @@ -2543,7 +2543,7 @@ msgid "No customer activity in the last 30 days." msgstr "" #: engine/core/templates/admin/dashboard/_daily_sales.html:5 -msgid "Daily sales (30d)" +msgid "Daily sales" msgstr "" #: engine/core/templates/admin/dashboard/_daily_sales.html:59 @@ -2555,6 +2555,7 @@ msgid "Gross revenue" msgstr "" #: engine/core/templates/admin/dashboard/_daily_sales.html:106 +#: engine/core/templates/admin/dashboard/_kpis.html:20 msgid "Orders" msgstr "" @@ -2562,6 +2563,10 @@ msgstr "" msgid "Gross" msgstr "" +#: engine/core/templates/admin/dashboard/_header.html:3 +msgid "Dashboard" +msgstr "" + #: engine/core/templates/admin/dashboard/_income_overview.html:7 msgid "Income overview" msgstr "" @@ -2590,19 +2595,31 @@ msgid "No data" msgstr "" #: engine/core/templates/admin/dashboard/_kpis.html:6 -msgid "Revenue (gross, 30d)" +msgid "GMV" msgstr "" -#: engine/core/templates/admin/dashboard/_kpis.html:15 -msgid "Revenue (net, 30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:34 +msgid "AOV" msgstr "" -#: engine/core/templates/admin/dashboard/_kpis.html:24 -msgid "Returns (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:48 +msgid "Net revenue" msgstr "" -#: engine/core/templates/admin/dashboard/_kpis.html:33 -msgid "Processed orders (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:62 +msgid "Refund rate" +msgstr "" + +#: engine/core/templates/admin/dashboard/_kpis.html:73 +msgid "returned" +msgstr "" + +#: engine/core/templates/admin/dashboard/_low_stock.html:5 +msgid "Low stock" +msgstr "" + +#: engine/core/templates/admin/dashboard/_low_stock.html:29 +msgid "No low stock items." msgstr "" #: engine/core/templates/admin/dashboard/_most_returned.html:5 @@ -2618,11 +2635,11 @@ msgid "Most wished product" msgstr "" #: engine/core/templates/admin/dashboard/_product_lists.html:33 -#: engine/core/templates/admin/dashboard/_product_lists.html:67 +#: engine/core/templates/admin/dashboard/_product_lists.html:68 msgid "No data yet." msgstr "" -#: engine/core/templates/admin/dashboard/_product_lists.html:40 +#: engine/core/templates/admin/dashboard/_product_lists.html:41 msgid "Most popular product" msgstr "" @@ -2658,10 +2675,6 @@ msgstr "" msgid "Django site admin" msgstr "" -#: engine/core/templates/admin/index.html:20 -msgid "Dashboard" -msgstr "" - #: 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 @@ -2863,53 +2876,53 @@ msgstr "" msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "" -#: engine/core/views.py:90 +#: engine/core/views.py:91 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 "" -#: engine/core/views.py:105 +#: engine/core/views.py:106 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 "" -#: engine/core/views.py:140 +#: engine/core/views.py:141 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "" -#: engine/core/views.py:172 +#: engine/core/views.py:173 msgid "Returns the parameters of the website as a JSON object." msgstr "" -#: engine/core/views.py:191 +#: engine/core/views.py:192 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." msgstr "" -#: engine/core/views.py:218 +#: engine/core/views.py:219 msgid "Handles `contact us` form submissions." msgstr "" -#: engine/core/views.py:239 +#: engine/core/views.py:240 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." msgstr "" -#: engine/core/views.py:279 +#: engine/core/views.py:280 msgid "Handles global search queries." msgstr "" -#: engine/core/views.py:294 +#: engine/core/views.py:295 msgid "Handles the logic of buying as a business without registration." msgstr "" -#: engine/core/views.py:331 +#: engine/core/views.py:332 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 " @@ -2917,31 +2930,31 @@ msgid "" "error is raised to indicate the resource is unavailable." msgstr "" -#: engine/core/views.py:342 +#: engine/core/views.py:343 msgid "order_product_uuid is required" msgstr "" -#: engine/core/views.py:349 +#: engine/core/views.py:350 msgid "order product does not exist" msgstr "" -#: engine/core/views.py:352 +#: engine/core/views.py:353 msgid "you can only download the digital asset once" msgstr "" -#: engine/core/views.py:355 +#: engine/core/views.py:356 msgid "the order must be paid before downloading the digital asset" msgstr "" -#: engine/core/views.py:361 +#: engine/core/views.py:362 msgid "the order product does not have a product" msgstr "" -#: engine/core/views.py:398 +#: engine/core/views.py:399 msgid "favicon not found" msgstr "" -#: engine/core/views.py:403 +#: engine/core/views.py:404 msgid "" "Handles requests for the favicon of a website.\n" "This function attempts to serve the favicon file located in the static " @@ -2949,18 +2962,18 @@ msgid "" "error is raised to indicate the resource is unavailable." msgstr "" -#: engine/core/views.py:415 +#: engine/core/views.py:416 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 "" -#: engine/core/views.py:428 +#: engine/core/views.py:429 msgid "Returns current version of the eVibes. " msgstr "" -#: engine/core/views.py:637 +#: engine/core/views.py:793 msgid "Returns custom variables for Dashboard. " msgstr "" diff --git a/engine/core/locale/fr_FR/LC_MESSAGES/django.mo b/engine/core/locale/fr_FR/LC_MESSAGES/django.mo index 4cafb91e18c381c8487674dee657cbe41b582ae8..e83e8f6cd73bd225d5392e8bc2391f73a5c84473 100644 GIT binary patch delta 14886 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 aJ}T(>_y4y!Thj}9;u~)Lv%TkJ*#7|sbIvOO diff --git a/engine/core/locale/fr_FR/LC_MESSAGES/django.po b/engine/core/locale/fr_FR/LC_MESSAGES/django.po index ada9f5bd..5894ed4d 100644 --- a/engine/core/locale/fr_FR/LC_MESSAGES/django.po +++ b/engine/core/locale/fr_FR/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -29,7 +29,8 @@ msgstr "Est actif" #: engine/core/abstract.py: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." @@ -156,7 +157,8 @@ msgstr "Livré" msgid "canceled" msgstr "Annulé" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Échec" @@ -207,10 +209,8 @@ msgid "" "apply only a key to read permitted data from cache.\n" "apply key, data and timeout with authentication to write data to cache." msgstr "" -"Appliquer uniquement une clé pour lire les données autorisées dans la " -"mémoire cache.\n" -"Appliquer une clé, des données et un délai d'attente avec authentification " -"pour écrire des données dans la mémoire cache." +"Appliquer uniquement une clé pour lire les données autorisées dans la mémoire cache.\n" +"Appliquer une clé, des données et un délai d'attente avec authentification pour écrire des données dans la mémoire cache." #: engine/core/docs/drf/views.py:62 msgid "get a list of supported languages" @@ -277,7 +277,8 @@ msgstr "" "modifiables" #: engine/core/docs/drf/viewsets.py:96 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Réécrire certains champs d'un groupe d'attributs existant en sauvegardant " "les non-éditables" @@ -306,8 +307,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:141 msgid "rewrite some fields of an existing attribute saving non-editables" msgstr "" -"Réécrire certains champs d'un attribut existant en sauvegardant les éléments " -"non modifiables" +"Réécrire certains champs d'un attribut existant en sauvegardant les éléments" +" non modifiables" #: engine/core/docs/drf/viewsets.py:151 msgid "list all attribute values (simple view)" @@ -332,7 +333,8 @@ msgstr "" "modifiables" #: engine/core/docs/drf/viewsets.py:186 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" "Réécrire certains champs d'une valeur d'attribut existante en sauvegardant " "les éléments non modifiables" @@ -391,11 +393,11 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:281 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" -"Recherche insensible à la casse dans human_readable_id, order_products." -"product.name, et order_products.product.partnumber" +"Recherche insensible à la casse dans human_readable_id, " +"order_products.product.name, et order_products.product.partnumber" #: engine/core/docs/drf/viewsets.py:288 msgid "Filter orders with buy_time >= this ISO 8601 datetime" @@ -431,13 +433,13 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:324 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "Ordonner par l'un des éléments suivants : uuid, human_readable_id, " -"user_email, user, status, created, modified, buy_time, random. Préfixer avec " -"'-' pour l'ordre décroissant (par exemple '-buy_time')." +"user_email, user, status, created, modified, buy_time, random. Préfixer avec" +" '-' pour l'ordre décroissant (par exemple '-buy_time')." #: engine/core/docs/drf/viewsets.py:336 msgid "retrieve a single order (detailed view)" @@ -479,8 +481,8 @@ msgid "" "completed using the user's balance; if `force_payment` is used, a " "transaction is initiated." msgstr "" -"Finalise l'achat de la commande. Si `force_balance` est utilisé, l'achat est " -"complété en utilisant le solde de l'utilisateur ; Si `force_payment` est " +"Finalise l'achat de la commande. Si `force_balance` est utilisé, l'achat est" +" complété en utilisant le solde de l'utilisateur ; Si `force_payment` est " "utilisé, une transaction est initiée." #: engine/core/docs/drf/viewsets.py:397 @@ -548,8 +550,8 @@ msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" msgstr "" -"Supprime une liste de produits d'une commande en utilisant le `product_uuid` " -"et les `attributs` fournis." +"Supprime une liste de produits d'une commande en utilisant le `product_uuid`" +" et les `attributs` fournis." #: engine/core/docs/drf/viewsets.py:459 msgid "list all wishlists (simple view)" @@ -585,8 +587,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:496 msgid "rewrite some fields of an existing wishlist saving non-editables" msgstr "" -"Réécrire certains champs d'un attribut existant en sauvegardant les éléments " -"non modifiables" +"Réécrire certains champs d'un attribut existant en sauvegardant les éléments" +" non modifiables" #: engine/core/docs/drf/viewsets.py:503 msgid "retrieve current pending wishlist of a user" @@ -642,29 +644,18 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "Filtre sur une ou plusieurs paires nom/valeur d'attribut. \n" "- **Syntaxe** : `nom_attr=méthode-valeur[;attr2=méthode2-valeur2]...`\n" -"- **Méthodes** (la valeur par défaut est `icontains` si elle est omise) : " -"`iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, " -"`istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, " -"`gt`, `gte`, `in`\n" -"- **Type de valeur** : JSON est essayé en premier (pour que vous puissiez " -"passer des listes/dicts), `true`/`false` pour les booléens, les entiers, les " -"flottants ; sinon traité comme une chaîne de caractères. \n" -"- **Base64** : préfixe avec `b64-` pour encoder la valeur brute en base64 de " -"manière sûre pour l'URL. \n" +"- **Méthodes** (la valeur par défaut est `icontains` si elle est omise) : `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" +"- **Type de valeur** : JSON est essayé en premier (pour que vous puissiez passer des listes/dicts), `true`/`false` pour les booléens, les entiers, les flottants ; sinon traité comme une chaîne de caractères. \n" +"- **Base64** : préfixe avec `b64-` pour encoder la valeur brute en base64 de manière sûre pour l'URL. \n" "Exemples : \n" "`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\", \"bluetooth\"]`,\n" "`b64-description=icontains-aGVhdC1jb2xk`" @@ -679,12 +670,10 @@ msgstr "UUID (exact) du produit" #: engine/core/docs/drf/viewsets.py:581 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Liste de champs séparés par des virgules à trier. Préfixer avec `-` pour un " -"tri descendant. \n" +"Liste de champs séparés par des virgules à trier. Préfixer avec `-` pour un tri descendant. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" #: engine/core/docs/drf/viewsets.py:598 engine/core/docs/drf/viewsets.py:599 @@ -952,7 +941,8 @@ msgstr "Supprimer une promotion" #: engine/core/docs/drf/viewsets.py:1169 msgid "rewrite an existing promotion saving non-editables" msgstr "" -"Réécrire une promotion existante en sauvegardant les éléments non modifiables" +"Réécrire une promotion existante en sauvegardant les éléments non " +"modifiables" #: engine/core/docs/drf/viewsets.py:1176 msgid "rewrite some fields of an existing promotion saving non-editables" @@ -1007,8 +997,8 @@ msgstr "Supprimer une étiquette de produit" #: engine/core/docs/drf/viewsets.py:1259 msgid "rewrite an existing product tag saving non-editables" msgstr "" -"Réécrire une étiquette de produit existante en sauvegardant les éléments non " -"modifiables" +"Réécrire une étiquette de produit existante en sauvegardant les éléments non" +" modifiables" #: engine/core/docs/drf/viewsets.py:1266 msgid "rewrite some fields of an existing product tag saving non-editables" @@ -1166,7 +1156,7 @@ msgstr "Données mises en cache" msgid "camelized JSON data from the requested URL" msgstr "Données JSON camélisées provenant de l'URL demandée" -#: engine/core/graphene/mutations.py:67 engine/core/views.py:256 +#: engine/core/graphene/mutations.py:67 engine/core/views.py:257 msgid "only URLs starting with http(s):// are allowed" msgstr "Seuls les URL commençant par http(s):// sont autorisés." @@ -1254,8 +1244,8 @@ msgstr "Acheter une commande" #: engine/core/graphene/mutations.py:516 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." @@ -1336,7 +1326,8 @@ msgstr "" "catégorie." #: engine/core/graphene/object_types.py:203 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" "Prix minimum et maximum pour les produits de cette catégorie, s'ils sont " "disponibles." @@ -1400,8 +1391,8 @@ msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" msgstr "" -"Adresse d'expédition pour cette commande, laisser vide si elle est identique " -"à l'adresse de facturation ou si elle n'est pas applicable" +"Adresse d'expédition pour cette commande, laisser vide si elle est identique" +" à l'adresse de facturation ou si elle n'est pas applicable" #: engine/core/graphene/object_types.py:414 msgid "total price of this order" @@ -1643,8 +1634,8 @@ msgid "" msgstr "" "Représente une entité fournisseur capable de stocker des informations sur " "les fournisseurs externes et leurs exigences en matière d'interaction. La " -"classe Vendeur est utilisée pour définir et gérer les informations relatives " -"à un fournisseur externe. Elle stocke le nom du fournisseur, les détails " +"classe Vendeur est utilisée pour définir et gérer les informations relatives" +" à un fournisseur externe. Elle stocke le nom du fournisseur, les détails " "d'authentification requis pour la communication et le pourcentage de " "majoration appliqué aux produits récupérés auprès du fournisseur. Ce modèle " "gère également des métadonnées et des contraintes supplémentaires, ce qui " @@ -1736,9 +1727,9 @@ msgid "" "attributes for an internal tag identifier and a user-friendly display name." msgstr "" "Représente une étiquette de catégorie utilisée pour les produits. Cette " -"classe modélise une balise de catégorie qui peut être utilisée pour associer " -"et classer des produits. Elle comprend des attributs pour un identifiant de " -"balise interne et un nom d'affichage convivial." +"classe modélise une balise de catégorie qui peut être utilisée pour associer" +" et classer des produits. Elle comprend des attributs pour un identifiant de" +" balise interne et un nom d'affichage convivial." #: engine/core/models.py:254 msgid "category tag" @@ -1765,8 +1756,8 @@ msgstr "" "avoir des relations hiérarchiques avec d'autres catégories, en prenant en " "charge les relations parent-enfant. La classe comprend des champs pour les " "métadonnées et la représentation visuelle, qui servent de base aux " -"fonctionnalités liées aux catégories. Cette classe est généralement utilisée " -"pour définir et gérer des catégories de produits ou d'autres regroupements " +"fonctionnalités liées aux catégories. Cette classe est généralement utilisée" +" pour définir et gérer des catégories de produits ou d'autres regroupements " "similaires au sein d'une application, permettant aux utilisateurs ou aux " "administrateurs de spécifier le nom, la description et la hiérarchie des " "catégories, ainsi que d'attribuer des attributs tels que des images, des " @@ -1822,13 +1813,14 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" "Représente un objet Marque dans le système. Cette classe gère les " "informations et les attributs liés à une marque, y compris son nom, ses " "logos, sa description, ses catégories associées, un nom unique et un ordre " -"de priorité. Elle permet d'organiser et de représenter les données relatives " -"à la marque dans l'application." +"de priorité. Elle permet d'organiser et de représenter les données relatives" +" à la marque dans l'application." #: engine/core/models.py:448 msgid "name of this brand" @@ -1872,8 +1864,8 @@ msgstr "Catégories" #: engine/core/models.py:508 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 " @@ -1883,8 +1875,8 @@ msgstr "" "des détails sur la relation entre les fournisseurs, les produits et leurs " "informations de stock, ainsi que des propriétés liées à l'inventaire telles " "que le prix, le prix d'achat, la quantité, l'UGS et les actifs numériques. " -"Elle fait partie du système de gestion des stocks pour permettre le suivi et " -"l'évaluation des produits disponibles auprès de différents fournisseurs." +"Elle fait partie du système de gestion des stocks pour permettre le suivi et" +" l'évaluation des produits disponibles auprès de différents fournisseurs." #: engine/core/models.py:520 msgid "the vendor supplying this product stock" @@ -1963,8 +1955,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 " @@ -2026,14 +2018,14 @@ 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." @@ -2099,13 +2091,14 @@ msgstr "Attribut" #: engine/core/models.py:777 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" -"Représente une valeur spécifique pour un attribut lié à un produit. Il relie " -"l'\"attribut\" à une \"valeur\" unique, ce qui permet une meilleure " -"organisation et une représentation dynamique des caractéristiques du produit." +"Représente une valeur spécifique pour un attribut lié à un produit. Il relie" +" l'\"attribut\" à une \"valeur\" unique, ce qui permet une meilleure " +"organisation et une représentation dynamique des caractéristiques du " +"produit." #: engine/core/models.py:788 msgid "attribute of this value" @@ -2122,16 +2115,16 @@ msgstr "La valeur spécifique de cet attribut" #: engine/core/models.py:815 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" -"Représente une image de produit associée à un produit dans le système. Cette " -"classe est conçue pour gérer les images des produits, y compris la " +"Représente une image de produit associée à un produit dans le système. Cette" +" classe est conçue pour gérer les images des produits, y compris la " "fonctionnalité de téléchargement des fichiers d'image, leur association à " -"des produits spécifiques et la détermination de leur ordre d'affichage. Elle " -"comprend également une fonction d'accessibilité avec un texte alternatif " +"des produits spécifiques et la détermination de leur ordre d'affichage. Elle" +" comprend également une fonction d'accessibilité avec un texte alternatif " "pour les images." #: engine/core/models.py:826 @@ -2172,8 +2165,8 @@ msgid "" "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 " @@ -2226,7 +2219,8 @@ msgstr "" "gestion des produits souhaités. La classe fournit des fonctionnalités " "permettant de gérer une collection de produits, en prenant en charge des " "opérations telles que l'ajout et la suppression de produits, ainsi que des " -"opérations permettant d'ajouter et de supprimer plusieurs produits à la fois." +"opérations permettant d'ajouter et de supprimer plusieurs produits à la " +"fois." #: engine/core/models.py:926 msgid "products that the user has marked as wanted" @@ -2250,11 +2244,11 @@ msgid "" "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 " @@ -2275,24 +2269,24 @@ msgstr "Non résolu" #: engine/core/models.py:1014 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." @@ -2359,8 +2353,8 @@ 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 " @@ -2368,7 +2362,8 @@ msgstr "" #: engine/core/models.py:1087 msgid "unique code used by a user to redeem a discount" -msgstr "Code unique utilisé par un utilisateur pour bénéficier d'une réduction" +msgstr "" +"Code unique utilisé par un utilisateur pour bénéficier d'une réduction" #: engine/core/models.py:1088 msgid "promo code identifier" @@ -2376,7 +2371,8 @@ msgstr "Identifiant du code promotionnel" #: engine/core/models.py:1095 msgid "fixed discount amount applied if percent is not used" -msgstr "Montant fixe de la remise appliqué si le pourcentage n'est pas utilisé" +msgstr "" +"Montant fixe de la remise appliqué si le pourcentage n'est pas utilisé" #: engine/core/models.py:1096 msgid "fixed discount amount" @@ -2384,7 +2380,8 @@ msgstr "Montant de l'escompte fixe" #: engine/core/models.py:1102 msgid "percentage discount applied if fixed amount is not used" -msgstr "Pourcentage de réduction appliqué si le montant fixe n'est pas utilisé" +msgstr "" +"Pourcentage de réduction appliqué si le montant fixe n'est pas utilisé" #: engine/core/models.py:1103 msgid "percentage discount" @@ -2409,8 +2406,8 @@ msgstr "Heure de début de validité" #: engine/core/models.py:1120 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "" -"Date à laquelle le code promotionnel a été utilisé, vide s'il n'a pas encore " -"été utilisé." +"Date à laquelle le code promotionnel a été utilisé, vide s'il n'a pas encore" +" été utilisé." #: engine/core/models.py:1121 msgid "usage timestamp" @@ -2453,18 +2450,18 @@ msgstr "Type de réduction non valide pour le code promo {self.uuid} !" msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" -"Représente une commande passée par un utilisateur. Cette classe modélise une " -"commande dans l'application, y compris ses différents attributs tels que les " -"informations de facturation et d'expédition, le statut, l'utilisateur " -"associé, les notifications et les opérations connexes. Les commandes peuvent " -"être associées à des produits, des promotions peuvent être appliquées, des " -"adresses peuvent être définies et les détails d'expédition ou de facturation " -"peuvent être mis à jour. De même, la fonctionnalité permet de gérer les " +"Représente une commande passée par un utilisateur. Cette classe modélise une" +" commande dans l'application, y compris ses différents attributs tels que " +"les informations de facturation et d'expédition, le statut, l'utilisateur " +"associé, les notifications et les opérations connexes. Les commandes peuvent" +" être associées à des produits, des promotions peuvent être appliquées, des " +"adresses peuvent être définies et les détails d'expédition ou de facturation" +" peuvent être mis à jour. De même, la fonctionnalité permet de gérer les " "produits dans le cycle de vie de la commande." #: engine/core/models.py:1213 @@ -2540,7 +2537,8 @@ msgstr "Un utilisateur ne peut avoir qu'un seul ordre en cours à la fois !" #: engine/core/models.py:1351 msgid "you cannot add products to an order that is not a pending one" msgstr "" -"Vous ne pouvez pas ajouter de produits à une commande qui n'est pas en cours." +"Vous ne pouvez pas ajouter de produits à une commande qui n'est pas en " +"cours." #: engine/core/models.py:1356 msgid "you cannot add inactive products to order" @@ -2647,7 +2645,8 @@ msgid "feedback comments" msgstr "Commentaires" #: engine/core/models.py:1719 -msgid "references the specific product in an order that this feedback is about" +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." @@ -2676,16 +2675,17 @@ msgid "" "download URL for digital products. The model integrates with the Order and " "Product models and stores a reference to them." msgstr "" -"Représente les produits associés aux commandes et leurs attributs. Le modèle " -"OrderProduct conserve les informations relatives à un produit faisant partie " -"d'une commande, y compris des détails tels que le prix d'achat, la quantité, " -"les attributs du produit et le statut. Il gère les notifications destinées à " -"l'utilisateur et aux administrateurs, ainsi que des opérations telles que le " -"renvoi du solde du produit ou l'ajout de commentaires. Ce modèle fournit " -"également des méthodes et des propriétés qui prennent en charge la logique " -"commerciale, comme le calcul du prix total ou la génération d'une URL de " -"téléchargement pour les produits numériques. Le modèle s'intègre aux modèles " -"de commande et de produit et stocke une référence à ces derniers." +"Représente les produits associés aux commandes et leurs attributs. Le modèle" +" OrderProduct conserve les informations relatives à un produit faisant " +"partie d'une commande, y compris des détails tels que le prix d'achat, la " +"quantité, les attributs du produit et le statut. Il gère les notifications " +"destinées à l'utilisateur et aux administrateurs, ainsi que des opérations " +"telles que le renvoi du solde du produit ou l'ajout de commentaires. Ce " +"modèle fournit également des méthodes et des propriétés qui prennent en " +"charge la logique commerciale, comme le calcul du prix total ou la " +"génération d'une URL de téléchargement pour les produits numériques. Le " +"modèle s'intègre aux modèles de commande et de produit et stocke une " +"référence à ces derniers." #: engine/core/models.py:1757 msgid "the price paid by the customer for this product at purchase time" @@ -2697,7 +2697,8 @@ msgstr "Prix d'achat au moment de la commande" #: engine/core/models.py:1763 msgid "internal comments for admins about this ordered product" -msgstr "Commentaires internes pour les administrateurs sur ce produit commandé" +msgstr "" +"Commentaires internes pour les administrateurs sur ce produit commandé" #: engine/core/models.py:1764 msgid "internal comments" @@ -2795,9 +2796,9 @@ msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" "Représente la fonctionnalité de téléchargement des ressources numériques " "associées aux commandes. La classe DigitalAssetDownload permet de gérer et " @@ -2851,8 +2852,8 @@ msgid "No customer activity in the last 30 days." msgstr "Pas d'activité client au cours des 30 derniers jours." #: engine/core/templates/admin/dashboard/_daily_sales.html:5 -msgid "Daily sales (30d)" -msgstr "Ventes quotidiennes (30j)" +msgid "Daily sales" +msgstr "Ventes quotidiennes" #: engine/core/templates/admin/dashboard/_daily_sales.html:59 msgid "Orders (FINISHED)" @@ -2863,6 +2864,7 @@ msgid "Gross revenue" msgstr "Recettes brutes" #: engine/core/templates/admin/dashboard/_daily_sales.html:106 +#: engine/core/templates/admin/dashboard/_kpis.html:20 msgid "Orders" msgstr "Commandes" @@ -2870,6 +2872,10 @@ msgstr "Commandes" msgid "Gross" msgstr "Brut" +#: engine/core/templates/admin/dashboard/_header.html:3 +msgid "Dashboard" +msgstr "Tableau de bord" + #: engine/core/templates/admin/dashboard/_income_overview.html:7 msgid "Income overview" msgstr "Aperçu des revenus" @@ -2898,20 +2904,32 @@ msgid "No data" msgstr "Pas de date" #: engine/core/templates/admin/dashboard/_kpis.html:6 -msgid "Revenue (gross, 30d)" -msgstr "Revenue (gross, 30d)" +msgid "GMV" +msgstr "GMV" -#: engine/core/templates/admin/dashboard/_kpis.html:15 -msgid "Revenue (net, 30d)" -msgstr "Revenue (net, 30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:34 +msgid "AOV" +msgstr "AOV" -#: engine/core/templates/admin/dashboard/_kpis.html:24 -msgid "Returns (30d)" -msgstr "Retours (30j)" +#: engine/core/templates/admin/dashboard/_kpis.html:48 +msgid "Net revenue" +msgstr "Net revenue" -#: engine/core/templates/admin/dashboard/_kpis.html:33 -msgid "Processed orders (30d)" -msgstr "Commandes traitées (30j)" +#: engine/core/templates/admin/dashboard/_kpis.html:62 +msgid "Refund rate" +msgstr "Taux de remboursement" + +#: engine/core/templates/admin/dashboard/_kpis.html:73 +msgid "returned" +msgstr "Renvoyé" + +#: engine/core/templates/admin/dashboard/_low_stock.html:5 +msgid "Low stock" +msgstr "Faible stock" + +#: engine/core/templates/admin/dashboard/_low_stock.html:29 +msgid "No low stock items." +msgstr "Pas d'articles en rupture de stock." #: engine/core/templates/admin/dashboard/_most_returned.html:5 msgid "Most returned products (30d)" @@ -2926,11 +2944,11 @@ msgid "Most wished product" msgstr "Produit le plus souhaité" #: engine/core/templates/admin/dashboard/_product_lists.html:33 -#: engine/core/templates/admin/dashboard/_product_lists.html:67 +#: engine/core/templates/admin/dashboard/_product_lists.html:68 msgid "No data yet." msgstr "Pas encore de données." -#: engine/core/templates/admin/dashboard/_product_lists.html:40 +#: engine/core/templates/admin/dashboard/_product_lists.html:41 msgid "Most popular product" msgstr "Produit le plus populaire" @@ -2966,10 +2984,6 @@ msgstr "Aucune vente par catégorie au cours des 30 derniers jours." msgid "Django site admin" msgstr "Administrateur de site Django" -#: engine/core/templates/admin/index.html:20 -msgid "Dashboard" -msgstr "Tableau de bord" - #: 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 @@ -2999,8 +3013,7 @@ msgstr "Bonjour %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" "Merci pour votre commande #%(order.pk)s ! Nous avons le plaisir de vous " @@ -3115,8 +3128,7 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" "Nous vous remercions pour votre commande ! Nous avons le plaisir de " @@ -3155,8 +3167,8 @@ msgstr "Les données et le délai d'attente sont tous deux nécessaires" #: 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." #: engine/core/utils/emailing.py:27 #, python-brace-format @@ -3193,7 +3205,7 @@ msgstr "" "Les dimensions de l'image ne doivent pas dépasser w{max_width} x " "h{max_height} pixels." -#: engine/core/views.py:90 +#: engine/core/views.py:91 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." @@ -3201,28 +3213,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." -#: engine/core/views.py:105 +#: engine/core/views.py:106 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." -#: engine/core/views.py:140 +#: engine/core/views.py:141 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "" "Renvoie une liste des langues prises en charge et des informations " "correspondantes." -#: engine/core/views.py:172 +#: engine/core/views.py:173 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." -#: engine/core/views.py:191 +#: engine/core/views.py:192 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." @@ -3230,11 +3242,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." -#: engine/core/views.py:218 +#: engine/core/views.py:219 msgid "Handles `contact us` form submissions." msgstr "Gère les soumissions du formulaire `contact us`." -#: engine/core/views.py:239 +#: engine/core/views.py:240 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." @@ -3242,79 +3254,70 @@ msgstr "" "Gère les demandes de traitement et de validation des URL à partir des " "requêtes POST entrantes." -#: engine/core/views.py:279 +#: engine/core/views.py:280 msgid "Handles global search queries." msgstr "Traite les demandes de recherche globales." -#: engine/core/views.py:294 +#: engine/core/views.py:295 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." -#: engine/core/views.py:331 +#: engine/core/views.py:332 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Gère le téléchargement d'un bien numérique associé à une commande.\n" -"Cette fonction tente de servir le fichier de ressource numérique situé dans " -"le répertoire de stockage du projet. Si le fichier n'est pas trouvé, une " -"erreur HTTP 404 est générée pour indiquer que la ressource n'est pas " -"disponible." +"Cette fonction tente de servir le fichier de ressource numérique situé dans le répertoire de stockage du projet. Si le fichier n'est pas trouvé, une erreur HTTP 404 est générée pour indiquer que la ressource n'est pas disponible." -#: engine/core/views.py:342 +#: engine/core/views.py:343 msgid "order_product_uuid is required" msgstr "order_product_uuid est obligatoire" -#: engine/core/views.py:349 +#: engine/core/views.py:350 msgid "order product does not exist" msgstr "le produit de la commande n'existe pas" -#: engine/core/views.py:352 +#: engine/core/views.py:353 msgid "you can only download the digital asset once" msgstr "Vous ne pouvez télécharger le bien numérique qu'une seule fois" -#: engine/core/views.py:355 +#: engine/core/views.py:356 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" -#: engine/core/views.py:361 +#: engine/core/views.py:362 msgid "the order product does not have a product" msgstr "Le produit de la commande n'a pas de produit" -#: engine/core/views.py:398 +#: engine/core/views.py:399 msgid "favicon not found" msgstr "favicon introuvable" -#: engine/core/views.py:403 +#: engine/core/views.py:404 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Gère les demandes de favicon d'un site web.\n" -"Cette fonction tente de servir le fichier favicon situé dans le répertoire " -"statique du projet. Si le fichier favicon n'est pas trouvé, une erreur HTTP " -"404 est générée pour indiquer que la ressource n'est pas disponible." +"Cette fonction tente de servir le fichier favicon situé dans le répertoire statique du projet. Si le fichier favicon n'est pas trouvé, une erreur HTTP 404 est générée pour indiquer que la ressource n'est pas disponible." -#: engine/core/views.py:415 +#: engine/core/views.py:416 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" "Redirige la requête vers la page d'index de l'interface d'administration. " -"Cette fonction gère les requêtes HTTP entrantes et les redirige vers la page " -"d'index de l'interface d'administration de Django. Elle utilise la fonction " -"`redirect` de Django pour gérer la redirection HTTP." +"Cette fonction gère les requêtes HTTP entrantes et les redirige vers la page" +" d'index de l'interface d'administration de Django. Elle utilise la fonction" +" `redirect` de Django pour gérer la redirection HTTP." -#: engine/core/views.py:428 +#: engine/core/views.py:429 msgid "Returns current version of the eVibes. " msgstr "Renvoie la version actuelle d'eVibes." -#: engine/core/views.py:637 +#: engine/core/views.py:793 msgid "Returns custom variables for Dashboard. " msgstr "Renvoie les variables personnalisées pour le tableau de bord." @@ -3335,10 +3338,11 @@ msgstr "" #: engine/core/viewsets.py:156 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 " @@ -3368,14 +3372,15 @@ msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" -"Un viewset pour la gestion des objets AttributeValue. Ce viewset fournit des " -"fonctionnalités pour lister, récupérer, créer, mettre à jour et supprimer " +"Un viewset pour la gestion des objets AttributeValue. Ce viewset fournit des" +" fonctionnalités pour lister, récupérer, créer, mettre à jour et supprimer " "des objets AttributeValue. Il s'intègre aux mécanismes de viewset du cadre " "REST de Django et utilise les sérialiseurs appropriés pour les différentes " -"actions. Les capacités de filtrage sont fournies par le backend DjangoFilter." +"actions. Les capacités de filtrage sont fournies par le backend " +"DjangoFilter." #: engine/core/viewsets.py:213 msgid "" @@ -3386,8 +3391,8 @@ msgid "" "can access specific data." msgstr "" "Gère les vues pour les opérations liées à la catégorie. La classe " -"CategoryViewSet est responsable de la gestion des opérations liées au modèle " -"Category dans le système. Elle permet d'extraire, de filtrer et de " +"CategoryViewSet est responsable de la gestion des opérations liées au modèle" +" Category dans le système. Elle permet d'extraire, de filtrer et de " "sérialiser les données relatives aux catégories. Le jeu de vues applique " "également des permissions pour s'assurer que seuls les utilisateurs " "autorisés peuvent accéder à des données spécifiques." @@ -3401,9 +3406,9 @@ msgid "" msgstr "" "Représente un jeu de vues pour la gestion des instances de marque. Cette " "classe fournit des fonctionnalités d'interrogation, de filtrage et de " -"sérialisation des objets Brand. Elle utilise le cadre ViewSet de Django pour " -"simplifier la mise en œuvre des points d'extrémité de l'API pour les objets " -"Brand." +"sérialisation des objets Brand. Elle utilise le cadre ViewSet de Django pour" +" simplifier la mise en œuvre des points d'extrémité de l'API pour les objets" +" Brand." #: engine/core/viewsets.py:438 msgid "" @@ -3420,8 +3425,8 @@ 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." #: engine/core/viewsets.py:574 msgid "" @@ -3431,8 +3436,8 @@ msgid "" "actions. The purpose of this class is to provide streamlined access to " "Vendor-related resources through the Django REST framework." msgstr "" -"Représente un jeu de vues pour la gestion des objets Vendeur. Ce jeu de vues " -"permet d'extraire, de filtrer et de sérialiser les données relatives aux " +"Représente un jeu de vues pour la gestion des objets Vendeur. Ce jeu de vues" +" permet d'extraire, de filtrer et de sérialiser les données relatives aux " "vendeurs. Il définit l'ensemble de requêtes, les configurations de filtrage " "et les classes de sérialisation utilisées pour gérer les différentes " "actions. L'objectif de cette classe est de fournir un accès simplifié aux " @@ -3444,8 +3449,8 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `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 " @@ -3462,9 +3467,9 @@ msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" "ViewSet pour la gestion des commandes et des opérations connexes. Cette " @@ -3481,15 +3486,15 @@ msgstr "" msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "Fournit un jeu de vues pour la gestion des entités OrderProduct. Ce jeu de " "vues permet d'effectuer des opérations CRUD et des actions personnalisées " "spécifiques au modèle OrderProduct. Il inclut le filtrage, les contrôles de " -"permission et le changement de sérialiseur en fonction de l'action demandée. " -"En outre, il fournit une action détaillée pour gérer le retour " +"permission et le changement de sérialiseur en fonction de l'action demandée." +" En outre, il fournit une action détaillée pour gérer le retour " "d'informations sur les instances OrderProduct." #: engine/core/viewsets.py:879 @@ -3516,8 +3521,8 @@ msgstr "Gère les opérations liées aux données de stock dans le système." msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." @@ -3525,9 +3530,9 @@ msgstr "" "Jeu de vues pour la gestion des opérations de la liste de souhaits. Le jeu " "de vues WishlistViewSet fournit des points d'extrémité pour interagir avec " "la liste de souhaits d'un utilisateur, permettant la récupération, la " -"modification et la personnalisation des produits de la liste de souhaits. Ce " -"jeu de vues facilite les fonctionnalités telles que l'ajout, la suppression " -"et les actions en bloc pour les produits de la liste de souhaits. Des " +"modification et la personnalisation des produits de la liste de souhaits. Ce" +" jeu de vues facilite les fonctionnalités telles que l'ajout, la suppression" +" et les actions en bloc pour les produits de la liste de souhaits. Des " "contrôles de permissions sont intégrés pour s'assurer que les utilisateurs " "ne peuvent gérer que leur propre liste de souhaits, sauf si des permissions " "explicites sont accordées." @@ -3541,11 +3546,11 @@ msgid "" "on the request context." msgstr "" "Cette classe fournit une fonctionnalité de viewset pour la gestion des " -"objets `Address`. La classe AddressViewSet permet d'effectuer des opérations " -"CRUD, des filtrages et des actions personnalisées liées aux entités adresse. " -"Elle inclut des comportements spécialisés pour différentes méthodes HTTP, " -"des dérogations au sérialiseur et une gestion des autorisations basée sur le " -"contexte de la demande." +"objets `Address`. La classe AddressViewSet permet d'effectuer des opérations" +" CRUD, des filtrages et des actions personnalisées liées aux entités " +"adresse. Elle inclut des comportements spécialisés pour différentes méthodes" +" HTTP, des dérogations au sérialiseur et une gestion des autorisations basée" +" sur le contexte de la demande." #: engine/core/viewsets.py:1123 #, python-brace-format diff --git a/engine/core/locale/he_IL/LC_MESSAGES/django.mo b/engine/core/locale/he_IL/LC_MESSAGES/django.mo index e0b98482120627ab517a4ac42bf6e19eb495327f..57c05b486c89370608b14a6fd2e526eda73e9767 100644 GIT binary patch delta 11663 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 QT~3cc)4o3kd+8Pb3*w2HTmS$7 delta 11685 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 Pc1rd%*&Cni=~?0b7dNEb diff --git a/engine/core/locale/he_IL/LC_MESSAGES/django.po b/engine/core/locale/he_IL/LC_MESSAGES/django.po index fb49f17b..da0c490a 100644 --- a/engine/core/locale/he_IL/LC_MESSAGES/django.po +++ b/engine/core/locale/he_IL/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -27,7 +27,8 @@ msgstr "פעיל" #: engine/core/abstract.py: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, אובייקט זה לא יהיה גלוי למשתמשים ללא ההרשאה הנדרשת." #: engine/core/abstract.py:23 engine/core/choices.py:18 @@ -152,7 +153,8 @@ msgstr "נמסר" msgid "canceled" msgstr "בוטל" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "נכשל" @@ -265,7 +267,8 @@ msgid "rewrite an existing attribute group saving non-editables" msgstr "שכתוב קבוצת תכונות קיימת תוך שמירת תכונות שאינן ניתנות לעריכה" #: engine/core/docs/drf/viewsets.py:96 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "שכתוב שדות מסוימים בקבוצת תכונות קיימת תוך שמירת תכונות שאינן ניתנות לעריכה" @@ -314,7 +317,8 @@ msgid "rewrite an existing attribute value saving non-editables" msgstr "שכתוב ערך תכונה קיים תוך שמירת תכונות שאינן ניתנות לעריכה" #: engine/core/docs/drf/viewsets.py:186 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" "שכתוב שדות מסוימים של ערך תכונה קיים תוך שמירת שדות שאינם ניתנים לעריכה" @@ -368,8 +372,8 @@ msgstr "למשתמשים שאינם אנשי צוות, מוצגות רק ההז #: engine/core/docs/drf/viewsets.py:281 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" "חיפוש תת-מחרוזת ללא הבחנה בין אותיות גדולות וקטנות ב-human_readable_id, " "order_products.product.name ו-order_products.product.partnumber" @@ -407,9 +411,9 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:324 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "מיין לפי אחד מהפרמטרים הבאים: uuid, human_readable_id, user_email, user, " "status, created, modified, buy_time, random. הוסף קידומת '-' עבור מיון יורד " @@ -453,8 +457,8 @@ msgid "" "completed using the user's balance; if `force_payment` is used, a " "transaction is initiated." msgstr "" -"מסיים את רכישת ההזמנה. אם נעשה שימוש ב-`force_balance`, הרכישה תושלם באמצעות " -"היתרה של המשתמש; אם נעשה שימוש ב-`force_payment`, תתבצע עסקה." +"מסיים את רכישת ההזמנה. אם נעשה שימוש ב-`force_balance`, הרכישה תושלם באמצעות" +" היתרה של המשתמש; אם נעשה שימוש ב-`force_payment`, תתבצע עסקה." #: engine/core/docs/drf/viewsets.py:397 msgid "retrieve current pending order of a user" @@ -511,7 +515,8 @@ msgstr "הסר מוצר מההזמנה, הכמויות לא ייספרו" msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" -msgstr "מסיר רשימת מוצרים מהזמנה באמצעות `product_uuid` ו-`attributes` שסופקו." +msgstr "" +"מסיר רשימת מוצרים מהזמנה באמצעות `product_uuid` ו-`attributes` שסופקו." #: engine/core/docs/drf/viewsets.py:459 msgid "list all wishlists (simple view)" @@ -590,28 +595,15 @@ msgstr "מסיר מוצרים רבים מרשימת המשאלות באמצעו msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" -"סינון לפי זוגות שם/ערך של תכונה אחת או יותר. • **תחביר**: `attr_name=method-" -"value[;attr2=method2-value2]…` • **שיטות** (ברירת המחדל היא `icontains` אם " -"לא צוין): `iexact`, `exact`, `icontains`, `contains`, `isnull`, " -"`startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, " -"`lt`, `lte`, `gt`, `gte`, `in` • **הקלדת ערכים**: תחילה מתבצע ניסיון JSON " -"(כך שניתן להעביר רשימות/מילונים), `true`/`false` עבור ערכי בוליאניים, מספרים " -"שלמים, מספרים צפים; אחרת מטופל כמחרוזת. • **Base64**: קידומת עם `b64-` כדי " -"לקודד את הערך הגולמי ב-base64 בטוח ל-URL. \n" -"דוגמאות: `color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, `b64-description=icontains-aGVhdC1jb2xk`" +"סינון לפי זוגות שם/ערך של תכונה אחת או יותר. • **תחביר**: `attr_name=method-value[;attr2=method2-value2]…` • **שיטות** (ברירת המחדל היא `icontains` אם לא צוין): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` • **הקלדת ערכים**: תחילה מתבצע ניסיון JSON (כך שניתן להעביר רשימות/מילונים), `true`/`false` עבור ערכי בוליאניים, מספרים שלמים, מספרים צפים; אחרת מטופל כמחרוזת. • **Base64**: קידומת עם `b64-` כדי לקודד את הערך הגולמי ב-base64 בטוח ל-URL. \n" +"דוגמאות: `color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, `b64-description=icontains-aGVhdC1jb2xk`" #: engine/core/docs/drf/viewsets.py:568 engine/core/docs/drf/viewsets.py:569 msgid "list all products (simple view)" @@ -623,12 +615,11 @@ msgstr "(מדויק) UUID של המוצר" #: engine/core/docs/drf/viewsets.py:581 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"רשימה של שדות למיון, מופרדים בפסיקים. קידומת `-` למיון יורד. **מותר:** uuid, " -"rating, name, slug, created, modified, price, random" +"רשימה של שדות למיון, מופרדים בפסיקים. קידומת `-` למיון יורד. **מותר:** uuid," +" rating, name, slug, created, modified, price, random" #: engine/core/docs/drf/viewsets.py:598 engine/core/docs/drf/viewsets.py:599 msgid "retrieve a single product (detailed view)" @@ -930,7 +921,8 @@ msgstr "שכתוב תגית מוצר קיימת תוך שמירת תוכן שא #: engine/core/docs/drf/viewsets.py:1266 msgid "rewrite some fields of an existing product tag saving non-editables" -msgstr "שכתוב שדות מסוימים בתגית מוצר קיימת תוך שמירת שדות שאינם ניתנים לעריכה" +msgstr "" +"שכתוב שדות מסוימים בתגית מוצר קיימת תוך שמירת שדות שאינם ניתנים לעריכה" #: engine/core/elasticsearch/__init__.py:122 #: engine/core/elasticsearch/__init__.py:570 @@ -1080,7 +1072,7 @@ msgstr "נתונים במטמון" msgid "camelized JSON data from the requested URL" msgstr "נתוני JSON שעברו קמלאיזציה מה-URL המבוקש" -#: engine/core/graphene/mutations.py:67 engine/core/views.py:256 +#: engine/core/graphene/mutations.py:67 engine/core/views.py:257 msgid "only URLs starting with http(s):// are allowed" msgstr "רק כתובות URL המתחילות ב-http(s):// מותרות" @@ -1164,8 +1156,8 @@ msgstr "קנה הזמנה" #: engine/core/graphene/mutations.py:516 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "אנא שלחו את התכונות כמחרוזת מעוצבת כך: attr1=value1,attr2=value2" #: engine/core/graphene/mutations.py:549 @@ -1240,7 +1232,8 @@ msgid "which attributes and values can be used for filtering this category." msgstr "אילו תכונות וערכים ניתן להשתמש בהם לסינון קטגוריה זו." #: engine/core/graphene/object_types.py:203 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "מחירים מינימליים ומקסימליים עבור מוצרים בקטגוריה זו, אם זמינים." #: engine/core/graphene/object_types.py:205 @@ -1594,8 +1587,8 @@ msgid "" msgstr "" "מייצג תגית מוצר המשמשת לסיווג או זיהוי מוצרים. מחלקת ProductTag נועדה לזהות " "ולסווג מוצרים באופן ייחודי באמצעות שילוב של מזהה תגית פנימי ושם תצוגה " -"ידידותי למשתמש. היא תומכת בפעולות המיוצאות באמצעות mixins ומספקת התאמה אישית " -"של מטא-נתונים למטרות ניהוליות." +"ידידותי למשתמש. היא תומכת בפעולות המיוצאות באמצעות mixins ומספקת התאמה אישית" +" של מטא-נתונים למטרות ניהוליות." #: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" @@ -1624,8 +1617,8 @@ msgid "" "attributes for an internal tag identifier and a user-friendly display name." msgstr "" "מייצג תווית קטגוריה המשמשת למוצרים. מחלקה זו מדגמת תווית קטגוריה שניתן " -"להשתמש בה כדי לקשר ולסווג מוצרים. היא כוללת תכונות עבור מזהה תווית פנימי ושם " -"תצוגה ידידותי למשתמש." +"להשתמש בה כדי לקשר ולסווג מוצרים. היא כוללת תכונות עבור מזהה תווית פנימי ושם" +" תצוגה ידידותי למשתמש." #: engine/core/models.py:254 msgid "category tag" @@ -1703,10 +1696,11 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" -"מייצג אובייקט מותג במערכת. מחלקה זו מטפלת במידע ובתכונות הקשורים למותג, כולל " -"שמו, לוגואים, תיאור, קטגוריות קשורות, סלוגן ייחודי וסדר עדיפות. היא מאפשרת " +"מייצג אובייקט מותג במערכת. מחלקה זו מטפלת במידע ובתכונות הקשורים למותג, כולל" +" שמו, לוגואים, תיאור, קטגוריות קשורות, סלוגן ייחודי וסדר עדיפות. היא מאפשרת " "ארגון וייצוג של נתונים הקשורים למותג בתוך היישום." #: engine/core/models.py:448 @@ -1751,8 +1745,8 @@ msgstr "קטגוריות" #: engine/core/models.py:508 msgid "" -"Represents the stock of a product managed in the system. This class provides " -"details about the relationship between vendors, products, and their stock " +"Represents the stock of a product managed in the system. This class provides" +" details about the relationship between vendors, products, and their stock " "information, as well as inventory-related properties like price, purchase " "price, quantity, SKU, and digital assets. It is part of the inventory " "management system to allow tracking and evaluation of products available " @@ -1840,11 +1834,11 @@ msgid "" "product data and its associated information within an application." msgstr "" "מייצג מוצר עם תכונות כגון קטגוריה, מותג, תגיות, סטטוס דיגיטלי, שם, תיאור, " -"מספר חלק ו-slug. מספק תכונות שירות נלוות לאחזור דירוגים, ספירת משובים, מחיר, " -"כמות והזמנות סה\"כ. מיועד לשימוש במערכת המטפלת במסחר אלקטרוני או בניהול " +"מספר חלק ו-slug. מספק תכונות שירות נלוות לאחזור דירוגים, ספירת משובים, מחיר," +" כמות והזמנות סה\"כ. מיועד לשימוש במערכת המטפלת במסחר אלקטרוני או בניהול " "מלאי. מחלקה זו מתקשרת עם מודלים נלווים (כגון קטגוריה, מותג ותגית מוצר) " -"ומנהלת את המטמון עבור תכונות הנגישות בתדירות גבוהה כדי לשפר את הביצועים. הוא " -"משמש להגדרה ולעיבוד נתוני מוצר והמידע הקשור אליו בתוך יישום." +"ומנהלת את המטמון עבור תכונות הנגישות בתדירות גבוהה כדי לשפר את הביצועים. הוא" +" משמש להגדרה ולעיבוד נתוני מוצר והמידע הקשור אליו בתוך יישום." #: engine/core/models.py:585 msgid "category this product belongs to" @@ -1899,14 +1893,15 @@ msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" "מייצג תכונה במערכת. מחלקה זו משמשת להגדרת תכונות ולניהולן. תכונות הן נתונים " -"הניתנים להתאמה אישית, שניתן לקשר לישויות אחרות. לתכונות יש קטגוריות, קבוצות, " -"סוגי ערכים ושמות משויכים. המודל תומך בסוגים רבים של ערכים, כולל מחרוזת, מספר " -"שלם, מספר צף, בוליאני, מערך ואובייקט. הדבר מאפשר בניית נתונים דינמית וגמישה." +"הניתנים להתאמה אישית, שניתן לקשר לישויות אחרות. לתכונות יש קטגוריות, קבוצות," +" סוגי ערכים ושמות משויכים. המודל תומך בסוגים רבים של ערכים, כולל מחרוזת, " +"מספר שלם, מספר צף, בוליאני, מערך ואובייקט. הדבר מאפשר בניית נתונים דינמית " +"וגמישה." #: engine/core/models.py:733 msgid "group of this attribute" @@ -1967,9 +1962,9 @@ msgstr "תכונה" #: engine/core/models.py:777 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 "" "מייצג ערך ספציפי עבור תכונה המקושרת למוצר. הוא מקשר את ה\"תכונה\" ל\"ערך\" " "ייחודי, ומאפשר ארגון טוב יותר וייצוג דינמי של מאפייני המוצר." @@ -1989,8 +1984,8 @@ msgstr "הערך הספציפי עבור תכונה זו" #: engine/core/models.py:815 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 "" @@ -2036,8 +2031,8 @@ msgid "" "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 "" "מייצג קמפיין קידום מכירות למוצרים בהנחה. מחלקה זו משמשת להגדרת וניהול " "קמפיינים לקידום מכירות המציעים הנחה באחוזים על מוצרים. המחלקה כוללת תכונות " @@ -2109,8 +2104,8 @@ msgid "" "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 "" "מייצג תיעוד הקשור למוצר. מחלקה זו משמשת לאחסון מידע על תיעוד הקשור למוצרים " "ספציפיים, כולל העלאת קבצים ומטא-נתונים שלהם. היא מכילה שיטות ותכונות לטיפול " @@ -2131,21 +2126,22 @@ msgstr "לא פתור" #: engine/core/models.py:1014 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" "מייצג ישות כתובת הכוללת פרטים על מיקום וקשרים עם משתמש. מספק פונקציונליות " "לאחסון נתונים גיאוגרפיים וכתובות, וכן אינטגרציה עם שירותי קידוד גיאוגרפי. " -"מחלקה זו נועדה לאחסן מידע מפורט על כתובות, כולל רכיבים כגון רחוב, עיר, אזור, " -"מדינה ומיקום גיאוגרפי (קו אורך וקו רוחב). היא תומכת באינטגרציה עם ממשקי API " -"לקידוד גיאוגרפי, ומאפשרת אחסון של תגובות API גולמיות לעיבוד או בדיקה נוספים. " -"הסוג גם מאפשר לקשר כתובת למשתמש, מה שמקל על טיפול בנתונים מותאמים אישית." +"מחלקה זו נועדה לאחסן מידע מפורט על כתובות, כולל רכיבים כגון רחוב, עיר, אזור," +" מדינה ומיקום גיאוגרפי (קו אורך וקו רוחב). היא תומכת באינטגרציה עם ממשקי API" +" לקידוד גיאוגרפי, ומאפשרת אחסון של תגובות API גולמיות לעיבוד או בדיקה " +"נוספים. הסוג גם מאפשר לקשר כתובת למשתמש, מה שמקל על טיפול בנתונים מותאמים " +"אישית." #: engine/core/models.py:1029 msgid "address line for the customer" @@ -2211,8 +2207,8 @@ msgstr "" "מייצג קוד קידום מכירות שניתן להשתמש בו לקבלת הנחות, לניהול תוקפו, סוג ההנחה " "והשימוש בו. מחלקת PromoCode מאחסנת פרטים אודות קוד קידום מכירות, כולל המזהה " "הייחודי שלו, מאפייני ההנחה (סכום או אחוז), תקופת התוקף, המשתמש המשויך (אם " -"יש) ומצב השימוש בו. היא כוללת פונקציונליות לאימות והחלת קוד הקידום על הזמנה, " -"תוך הקפדה על עמידה באילוצים." +"יש) ומצב השימוש בו. היא כוללת פונקציונליות לאימות והחלת קוד הקידום על הזמנה," +" תוך הקפדה על עמידה באילוצים." #: engine/core/models.py:1087 msgid "unique code used by a user to redeem a discount" @@ -2298,16 +2294,16 @@ msgstr "סוג הנחה לא חוקי עבור קוד קידום מכירות {s msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" "מייצג הזמנה שבוצעה על ידי משתמש. מחלקה זו מדמה הזמנה בתוך היישום, כולל " "תכונותיה השונות כגון פרטי חיוב ומשלוח, סטטוס, משתמש קשור, התראות ופעולות " "נלוות. להזמנות יכולות להיות מוצרים נלווים, ניתן להחיל עליהן מבצעים, להגדיר " -"כתובות ולעדכן פרטי משלוח או חיוב. כמו כן, הפונקציונליות תומכת בניהול המוצרים " -"במחזור החיים של ההזמנה." +"כתובות ולעדכן פרטי משלוח או חיוב. כמו כן, הפונקציונליות תומכת בניהול המוצרים" +" במחזור החיים של ההזמנה." #: engine/core/models.py:1213 msgid "the billing address used for this order" @@ -2461,8 +2457,8 @@ msgid "" msgstr "" "מנהל משוב משתמשים על מוצרים. מחלקה זו נועדה לאסוף ולאחסן משוב משתמשים על " "מוצרים ספציפיים שרכשו. היא מכילה תכונות לאחסון הערות משתמשים, הפניה למוצר " -"הקשור בהזמנה ודירוג שהוקצה על ידי המשתמש. המחלקה משתמשת בשדות מסד נתונים כדי " -"למדל ולנהל ביעילות נתוני משוב." +"הקשור בהזמנה ודירוג שהוקצה על ידי המשתמש. המחלקה משתמשת בשדות מסד נתונים כדי" +" למדל ולנהל ביעילות נתוני משוב." #: engine/core/models.py:1711 msgid "user-provided comments about their experience with the product" @@ -2473,7 +2469,8 @@ msgid "feedback comments" msgstr "הערות משוב" #: engine/core/models.py:1719 -msgid "references the specific product in an order that this feedback is about" +msgid "" +"references the specific product in an order that this feedback is about" msgstr "מתייחס למוצר הספציפי בהזמנה שעליה מתייחס משוב זה." #: engine/core/models.py:1720 @@ -2500,8 +2497,8 @@ 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 להורדה עבור מוצרים דיגיטליים. המודל משתלב עם מודלי " @@ -2613,14 +2610,14 @@ msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" "מייצג את פונקציונליות ההורדה של נכסים דיגיטליים הקשורים להזמנות. מחלקת " "DigitalAssetDownload מספקת את היכולת לנהל ולהיכנס להורדות הקשורות למוצרים " -"שהוזמנו. היא שומרת מידע על המוצר שהוזמן, מספר ההורדות והאם הנכס גלוי לציבור. " -"היא כוללת שיטה ליצירת כתובת URL להורדת הנכס כאשר ההזמנה הקשורה נמצאת במצב " +"שהוזמנו. היא שומרת מידע על המוצר שהוזמן, מספר ההורדות והאם הנכס גלוי לציבור." +" היא כוללת שיטה ליצירת כתובת URL להורדת הנכס כאשר ההזמנה הקשורה נמצאת במצב " "'הושלמה'." #: engine/core/models.py:1961 @@ -2665,8 +2662,8 @@ msgid "No customer activity in the last 30 days." msgstr "אין פעילות של לקוחות ב-30 הימים האחרונים." #: engine/core/templates/admin/dashboard/_daily_sales.html:5 -msgid "Daily sales (30d)" -msgstr "מכירות יומיות (30 יום)" +msgid "Daily sales" +msgstr "מכירות יומיות" #: engine/core/templates/admin/dashboard/_daily_sales.html:59 msgid "Orders (FINISHED)" @@ -2677,6 +2674,7 @@ msgid "Gross revenue" msgstr "הכנסות ברוטו" #: engine/core/templates/admin/dashboard/_daily_sales.html:106 +#: engine/core/templates/admin/dashboard/_kpis.html:20 msgid "Orders" msgstr "הזמנות" @@ -2684,6 +2682,10 @@ msgstr "הזמנות" msgid "Gross" msgstr "גרוס" +#: engine/core/templates/admin/dashboard/_header.html:3 +msgid "Dashboard" +msgstr "לוח מחוונים" + #: engine/core/templates/admin/dashboard/_income_overview.html:7 msgid "Income overview" msgstr "סקירת הכנסות" @@ -2712,20 +2714,32 @@ msgid "No data" msgstr "בנתונים" #: engine/core/templates/admin/dashboard/_kpis.html:6 -msgid "Revenue (gross, 30d)" -msgstr "הכנסה (ברוטו, 30 יום)" +msgid "GMV" +msgstr "GMV" -#: engine/core/templates/admin/dashboard/_kpis.html:15 -msgid "Revenue (net, 30d)" -msgstr "הכנסות (נטו, 30 יום)" +#: engine/core/templates/admin/dashboard/_kpis.html:34 +msgid "AOV" +msgstr "AOV" -#: engine/core/templates/admin/dashboard/_kpis.html:24 -msgid "Returns (30d)" -msgstr "החזרות (30 יום)" +#: engine/core/templates/admin/dashboard/_kpis.html:48 +msgid "Net revenue" +msgstr "הכנסות נטו" -#: engine/core/templates/admin/dashboard/_kpis.html:33 -msgid "Processed orders (30d)" -msgstr "הזמנות מעובדות (30 יום)" +#: engine/core/templates/admin/dashboard/_kpis.html:62 +msgid "Refund rate" +msgstr "שיעור ההחזר" + +#: engine/core/templates/admin/dashboard/_kpis.html:73 +msgid "returned" +msgstr "הוחזר" + +#: engine/core/templates/admin/dashboard/_low_stock.html:5 +msgid "Low stock" +msgstr "מלאי נמוך" + +#: engine/core/templates/admin/dashboard/_low_stock.html:29 +msgid "No low stock items." +msgstr "אין פריטים במלאי נמוך." #: engine/core/templates/admin/dashboard/_most_returned.html:5 msgid "Most returned products (30d)" @@ -2740,11 +2754,11 @@ msgid "Most wished product" msgstr "המוצר המבוקש ביותר" #: engine/core/templates/admin/dashboard/_product_lists.html:33 -#: engine/core/templates/admin/dashboard/_product_lists.html:67 +#: engine/core/templates/admin/dashboard/_product_lists.html:68 msgid "No data yet." msgstr "אין עדיין נתונים." -#: engine/core/templates/admin/dashboard/_product_lists.html:40 +#: engine/core/templates/admin/dashboard/_product_lists.html:41 msgid "Most popular product" msgstr "המוצר הפופולרי ביותר" @@ -2780,10 +2794,6 @@ msgstr "אין מכירות בקטגוריה זו ב-30 הימים האחרונ msgid "Django site admin" msgstr "מנהל אתר Django" -#: engine/core/templates/admin/index.html:20 -msgid "Dashboard" -msgstr "לוח מחוונים" - #: 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 @@ -2813,12 +2823,11 @@ msgstr "שלום %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" -"תודה על הזמנתך #%(order.pk)s! אנו שמחים להודיע לך שהזמנתך נכנסה לעיבוד. להלן " -"פרטי הזמנתך:" +"תודה על הזמנתך #%(order.pk)s! אנו שמחים להודיע לך שהזמנתך נכנסה לעיבוד. להלן" +" פרטי הזמנתך:" #: engine/core/templates/digital_order_created_email.html:112 #: engine/core/templates/digital_order_delivered_email.html:110 @@ -2919,8 +2928,7 @@ msgstr "תודה על שהייתכם איתנו! הענקנו לכם קוד קי #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "תודה על הזמנתך! אנו שמחים לאשר את רכישתך. להלן פרטי הזמנתך:" @@ -2988,15 +2996,15 @@ msgstr "יש להגדיר את הפרמטר NOMINATIM_URL!" msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "מידות התמונה לא יעלו על w{max_width} x h{max_height} פיקסלים!" -#: engine/core/views.py:90 +#: engine/core/views.py:91 msgid "" "Handles the request for the sitemap index and returns an XML response. It " "ensures the response includes the appropriate content type header for XML." msgstr "" -"מטפל בבקשה לאינדקס מפת האתר ומחזיר תגובה בפורמט XML. הוא מבטיח שהתגובה תכלול " -"את כותרת סוג התוכן המתאימה ל-XML." +"מטפל בבקשה לאינדקס מפת האתר ומחזיר תגובה בפורמט XML. הוא מבטיח שהתגובה תכלול" +" את כותרת סוג התוכן המתאימה ל-XML." -#: engine/core/views.py:105 +#: engine/core/views.py:106 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " @@ -3005,101 +3013,97 @@ msgstr "" "מטפל בתגובה לתצוגה מפורטת של מפת אתר. פונקציה זו מעבדת את הבקשה, משיגה את " "התגובה המתאימה לפרטי מפת האתר, וקובעת את כותרת Content-Type עבור XML." -#: engine/core/views.py:140 +#: engine/core/views.py:141 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "מחזיר רשימה של שפות נתמכות והמידע המתאים להן." -#: engine/core/views.py:172 +#: engine/core/views.py:173 msgid "Returns the parameters of the website as a JSON object." msgstr "מחזיר את הפרמטרים של האתר כאובייקט JSON." -#: engine/core/views.py:191 +#: engine/core/views.py:192 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." msgstr "" "מטפל בפעולות מטמון כגון קריאה והגדרת נתוני מטמון עם מפתח וזמן המתנה מוגדרים." -#: engine/core/views.py:218 +#: engine/core/views.py:219 msgid "Handles `contact us` form submissions." msgstr "מטפל בהגשת טפסי \"צור קשר\"." -#: engine/core/views.py:239 +#: engine/core/views.py:240 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." msgstr "מטפל בבקשות לעיבוד ואימות כתובות URL מבקשות POST נכנסות." -#: engine/core/views.py:279 +#: engine/core/views.py:280 msgid "Handles global search queries." msgstr "מטפל בשאילתות חיפוש גלובליות." -#: engine/core/views.py:294 +#: engine/core/views.py:295 msgid "Handles the logic of buying as a business without registration." msgstr "מטפל בהיגיון הרכישה כעסק ללא רישום." -#: engine/core/views.py:331 +#: engine/core/views.py:332 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 המציינת שהמשאב אינו זמין." -#: engine/core/views.py:342 +#: engine/core/views.py:343 msgid "order_product_uuid is required" msgstr "order_product_uuid נדרש" -#: engine/core/views.py:349 +#: engine/core/views.py:350 msgid "order product does not exist" msgstr "המוצר שהוזמן אינו קיים" -#: engine/core/views.py:352 +#: engine/core/views.py:353 msgid "you can only download the digital asset once" msgstr "ניתן להוריד את הנכס הדיגיטלי פעם אחת בלבד" -#: engine/core/views.py:355 +#: engine/core/views.py:356 msgid "the order must be paid before downloading the digital asset" msgstr "יש לשלם את ההזמנה לפני הורדת הנכס הדיגיטלי" -#: engine/core/views.py:361 +#: engine/core/views.py:362 msgid "the order product does not have a product" msgstr "למוצר ההזמנה אין מוצר" -#: engine/core/views.py:398 +#: engine/core/views.py:399 msgid "favicon not found" msgstr "לא נמצא סמל מועדף" -#: engine/core/views.py:403 +#: engine/core/views.py:404 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 המציינת שהמשאב אינו זמין." -#: engine/core/views.py:415 +#: engine/core/views.py:416 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" -"מנתב את הבקשה לדף האינדקס של המנהל. הפונקציה מטפלת בבקשות HTTP נכנסות ומנתבת " -"אותן לדף האינדקס של ממשק המנהל של Django. היא משתמשת בפונקציית `redirect` של " -"Django לטיפול בהפניה HTTP." +"מנתב את הבקשה לדף האינדקס של המנהל. הפונקציה מטפלת בבקשות HTTP נכנסות ומנתבת" +" אותן לדף האינדקס של ממשק המנהל של Django. היא משתמשת בפונקציית `redirect` " +"של Django לטיפול בהפניה HTTP." -#: engine/core/views.py:428 +#: engine/core/views.py:429 msgid "Returns current version of the eVibes. " msgstr "מחזיר את הגרסה הנוכחית של eVibes." -#: engine/core/views.py:637 +#: engine/core/views.py:793 msgid "Returns custom variables for Dashboard. " msgstr "מחזיר משתנים מותאמים אישית עבור לוח המחוונים." @@ -3111,17 +3115,18 @@ msgid "" "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" -"מגדיר קבוצת תצוגות לניהול פעולות הקשורות ל-Evibes. מחלקת EvibesViewSet יורשת " -"מ-ModelViewSet ומספקת פונקציונליות לטיפול בפעולות ובפעולות על ישויות Evibes. " -"היא כוללת תמיכה במחלוקות סריאליזציה דינמיות המבוססות על הפעולה הנוכחית, " -"הרשאות הניתנות להתאמה אישית ופורמטים של עיבוד." +"מגדיר קבוצת תצוגות לניהול פעולות הקשורות ל-Evibes. מחלקת EvibesViewSet יורשת" +" מ-ModelViewSet ומספקת פונקציונליות לטיפול בפעולות ובפעולות על ישויות " +"Evibes. היא כוללת תמיכה במחלוקות סריאליזציה דינמיות המבוססות על הפעולה " +"הנוכחית, הרשאות הניתנות להתאמה אישית ופורמטים של עיבוד." #: engine/core/viewsets.py:156 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, כולל סינון, סידור סדרתי ואחזור נתונים. מחלקה זו היא חלק " @@ -3147,8 +3152,8 @@ msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" "סט תצוגה לניהול אובייקטי AttributeValue. סט תצוגה זה מספק פונקציונליות " "לרישום, אחזור, יצירה, עדכון ומחיקה של אובייקטי AttributeValue. הוא משתלב " @@ -3189,10 +3194,10 @@ 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. כוללת שיטות לאחזור פרטי מוצר, החלת הרשאות וגישה " "למשוב הקשור למוצר." #: engine/core/viewsets.py:574 @@ -3204,8 +3209,8 @@ msgid "" "Vendor-related resources through the Django REST framework." msgstr "" "מייצג קבוצת תצוגות לניהול אובייקטי ספק. קבוצת תצוגות זו מאפשרת לאחזר, לסנן " -"ולסדר נתוני ספק. היא מגדירה את קבוצת השאילתות, תצורות המסננים ומחלקות הסידור " -"המשמשות לטיפול בפעולות שונות. מטרת מחלקה זו היא לספק גישה יעילה למשאבים " +"ולסדר נתוני ספק. היא מגדירה את קבוצת השאילתות, תצורות המסננים ומחלקות הסידור" +" המשמשות לטיפול בפעולות שונות. מטרת מחלקה זו היא לספק גישה יעילה למשאבים " "הקשורים לספק באמצעות מסגרת Django REST." #: engine/core/viewsets.py:594 @@ -3213,29 +3218,29 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `EvibesViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "ייצוג של קבוצת תצוגה המטפלת באובייקטי משוב. מחלקה זו מנהלת פעולות הקשורות " -"לאובייקטי משוב, כולל רישום, סינון ואחזור פרטים. מטרת קבוצת תצוגה זו היא לספק " -"סדרנים שונים לפעולות שונות וליישם טיפול מבוסס הרשאות באובייקטי משוב נגישים. " -"היא מרחיבה את `EvibesViewSet` הבסיסי ומשתמשת במערכת הסינון של Django לשאילתת " -"נתונים." +"לאובייקטי משוב, כולל רישום, סינון ואחזור פרטים. מטרת קבוצת תצוגה זו היא לספק" +" סדרנים שונים לפעולות שונות וליישם טיפול מבוסס הרשאות באובייקטי משוב נגישים." +" היא מרחיבה את `EvibesViewSet` הבסיסי ומשתמשת במערכת הסינון של Django " +"לשאילתת נתונים." #: engine/core/viewsets.py:621 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 משתמש במספר סדרנים " "בהתאם לפעולה הספציפית המתבצעת ומאכוף הרשאות בהתאם בעת אינטראקציה עם נתוני " "הזמנה." @@ -3244,8 +3249,8 @@ msgstr "" msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "מספק סט תצוגה לניהול ישויות OrderProduct. סט תצוגה זה מאפשר פעולות CRUD " @@ -3275,8 +3280,8 @@ msgstr "מטפל בפעולות הקשורות לנתוני המלאי במער msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." diff --git a/engine/core/locale/hi_IN/LC_MESSAGES/django.po b/engine/core/locale/hi_IN/LC_MESSAGES/django.po index b5e84ca1..95d721d3 100644 --- a/engine/core/locale/hi_IN/LC_MESSAGES/django.po +++ b/engine/core/locale/hi_IN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -1049,7 +1049,7 @@ msgstr "" msgid "camelized JSON data from the requested URL" msgstr "" -#: engine/core/graphene/mutations.py:67 engine/core/views.py:256 +#: engine/core/graphene/mutations.py:67 engine/core/views.py:257 msgid "only URLs starting with http(s):// are allowed" msgstr "" @@ -2543,7 +2543,7 @@ msgid "No customer activity in the last 30 days." msgstr "" #: engine/core/templates/admin/dashboard/_daily_sales.html:5 -msgid "Daily sales (30d)" +msgid "Daily sales" msgstr "" #: engine/core/templates/admin/dashboard/_daily_sales.html:59 @@ -2555,6 +2555,7 @@ msgid "Gross revenue" msgstr "" #: engine/core/templates/admin/dashboard/_daily_sales.html:106 +#: engine/core/templates/admin/dashboard/_kpis.html:20 msgid "Orders" msgstr "" @@ -2562,6 +2563,10 @@ msgstr "" msgid "Gross" msgstr "" +#: engine/core/templates/admin/dashboard/_header.html:3 +msgid "Dashboard" +msgstr "" + #: engine/core/templates/admin/dashboard/_income_overview.html:7 msgid "Income overview" msgstr "" @@ -2590,19 +2595,31 @@ msgid "No data" msgstr "" #: engine/core/templates/admin/dashboard/_kpis.html:6 -msgid "Revenue (gross, 30d)" +msgid "GMV" msgstr "" -#: engine/core/templates/admin/dashboard/_kpis.html:15 -msgid "Revenue (net, 30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:34 +msgid "AOV" msgstr "" -#: engine/core/templates/admin/dashboard/_kpis.html:24 -msgid "Returns (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:48 +msgid "Net revenue" msgstr "" -#: engine/core/templates/admin/dashboard/_kpis.html:33 -msgid "Processed orders (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:62 +msgid "Refund rate" +msgstr "" + +#: engine/core/templates/admin/dashboard/_kpis.html:73 +msgid "returned" +msgstr "" + +#: engine/core/templates/admin/dashboard/_low_stock.html:5 +msgid "Low stock" +msgstr "" + +#: engine/core/templates/admin/dashboard/_low_stock.html:29 +msgid "No low stock items." msgstr "" #: engine/core/templates/admin/dashboard/_most_returned.html:5 @@ -2618,11 +2635,11 @@ msgid "Most wished product" msgstr "" #: engine/core/templates/admin/dashboard/_product_lists.html:33 -#: engine/core/templates/admin/dashboard/_product_lists.html:67 +#: engine/core/templates/admin/dashboard/_product_lists.html:68 msgid "No data yet." msgstr "" -#: engine/core/templates/admin/dashboard/_product_lists.html:40 +#: engine/core/templates/admin/dashboard/_product_lists.html:41 msgid "Most popular product" msgstr "" @@ -2658,10 +2675,6 @@ msgstr "" msgid "Django site admin" msgstr "" -#: engine/core/templates/admin/index.html:20 -msgid "Dashboard" -msgstr "" - #: 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 @@ -2863,53 +2876,53 @@ msgstr "" msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "" -#: engine/core/views.py:90 +#: engine/core/views.py:91 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 "" -#: engine/core/views.py:105 +#: engine/core/views.py:106 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 "" -#: engine/core/views.py:140 +#: engine/core/views.py:141 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "" -#: engine/core/views.py:172 +#: engine/core/views.py:173 msgid "Returns the parameters of the website as a JSON object." msgstr "" -#: engine/core/views.py:191 +#: engine/core/views.py:192 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." msgstr "" -#: engine/core/views.py:218 +#: engine/core/views.py:219 msgid "Handles `contact us` form submissions." msgstr "" -#: engine/core/views.py:239 +#: engine/core/views.py:240 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." msgstr "" -#: engine/core/views.py:279 +#: engine/core/views.py:280 msgid "Handles global search queries." msgstr "" -#: engine/core/views.py:294 +#: engine/core/views.py:295 msgid "Handles the logic of buying as a business without registration." msgstr "" -#: engine/core/views.py:331 +#: engine/core/views.py:332 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 " @@ -2917,31 +2930,31 @@ msgid "" "error is raised to indicate the resource is unavailable." msgstr "" -#: engine/core/views.py:342 +#: engine/core/views.py:343 msgid "order_product_uuid is required" msgstr "" -#: engine/core/views.py:349 +#: engine/core/views.py:350 msgid "order product does not exist" msgstr "" -#: engine/core/views.py:352 +#: engine/core/views.py:353 msgid "you can only download the digital asset once" msgstr "" -#: engine/core/views.py:355 +#: engine/core/views.py:356 msgid "the order must be paid before downloading the digital asset" msgstr "" -#: engine/core/views.py:361 +#: engine/core/views.py:362 msgid "the order product does not have a product" msgstr "" -#: engine/core/views.py:398 +#: engine/core/views.py:399 msgid "favicon not found" msgstr "" -#: engine/core/views.py:403 +#: engine/core/views.py:404 msgid "" "Handles requests for the favicon of a website.\n" "This function attempts to serve the favicon file located in the static " @@ -2949,18 +2962,18 @@ msgid "" "error is raised to indicate the resource is unavailable." msgstr "" -#: engine/core/views.py:415 +#: engine/core/views.py:416 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 "" -#: engine/core/views.py:428 +#: engine/core/views.py:429 msgid "Returns current version of the eVibes. " msgstr "" -#: engine/core/views.py:637 +#: engine/core/views.py:793 msgid "Returns custom variables for Dashboard. " msgstr "" diff --git a/engine/core/locale/hr_HR/LC_MESSAGES/django.po b/engine/core/locale/hr_HR/LC_MESSAGES/django.po index d4d9aab1..690a1825 100644 --- a/engine/core/locale/hr_HR/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-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1049,7 +1049,7 @@ msgstr "" msgid "camelized JSON data from the requested URL" msgstr "" -#: engine/core/graphene/mutations.py:67 engine/core/views.py:256 +#: engine/core/graphene/mutations.py:67 engine/core/views.py:257 msgid "only URLs starting with http(s):// are allowed" msgstr "" @@ -2543,7 +2543,7 @@ msgid "No customer activity in the last 30 days." msgstr "" #: engine/core/templates/admin/dashboard/_daily_sales.html:5 -msgid "Daily sales (30d)" +msgid "Daily sales" msgstr "" #: engine/core/templates/admin/dashboard/_daily_sales.html:59 @@ -2555,6 +2555,7 @@ msgid "Gross revenue" msgstr "" #: engine/core/templates/admin/dashboard/_daily_sales.html:106 +#: engine/core/templates/admin/dashboard/_kpis.html:20 msgid "Orders" msgstr "" @@ -2562,6 +2563,10 @@ msgstr "" msgid "Gross" msgstr "" +#: engine/core/templates/admin/dashboard/_header.html:3 +msgid "Dashboard" +msgstr "" + #: engine/core/templates/admin/dashboard/_income_overview.html:7 msgid "Income overview" msgstr "" @@ -2590,19 +2595,31 @@ msgid "No data" msgstr "" #: engine/core/templates/admin/dashboard/_kpis.html:6 -msgid "Revenue (gross, 30d)" +msgid "GMV" msgstr "" -#: engine/core/templates/admin/dashboard/_kpis.html:15 -msgid "Revenue (net, 30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:34 +msgid "AOV" msgstr "" -#: engine/core/templates/admin/dashboard/_kpis.html:24 -msgid "Returns (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:48 +msgid "Net revenue" msgstr "" -#: engine/core/templates/admin/dashboard/_kpis.html:33 -msgid "Processed orders (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:62 +msgid "Refund rate" +msgstr "" + +#: engine/core/templates/admin/dashboard/_kpis.html:73 +msgid "returned" +msgstr "" + +#: engine/core/templates/admin/dashboard/_low_stock.html:5 +msgid "Low stock" +msgstr "" + +#: engine/core/templates/admin/dashboard/_low_stock.html:29 +msgid "No low stock items." msgstr "" #: engine/core/templates/admin/dashboard/_most_returned.html:5 @@ -2618,11 +2635,11 @@ msgid "Most wished product" msgstr "" #: engine/core/templates/admin/dashboard/_product_lists.html:33 -#: engine/core/templates/admin/dashboard/_product_lists.html:67 +#: engine/core/templates/admin/dashboard/_product_lists.html:68 msgid "No data yet." msgstr "" -#: engine/core/templates/admin/dashboard/_product_lists.html:40 +#: engine/core/templates/admin/dashboard/_product_lists.html:41 msgid "Most popular product" msgstr "" @@ -2658,10 +2675,6 @@ msgstr "" msgid "Django site admin" msgstr "" -#: engine/core/templates/admin/index.html:20 -msgid "Dashboard" -msgstr "" - #: 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 @@ -2863,53 +2876,53 @@ msgstr "" msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "" -#: engine/core/views.py:90 +#: engine/core/views.py:91 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 "" -#: engine/core/views.py:105 +#: engine/core/views.py:106 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 "" -#: engine/core/views.py:140 +#: engine/core/views.py:141 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "" -#: engine/core/views.py:172 +#: engine/core/views.py:173 msgid "Returns the parameters of the website as a JSON object." msgstr "" -#: engine/core/views.py:191 +#: engine/core/views.py:192 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." msgstr "" -#: engine/core/views.py:218 +#: engine/core/views.py:219 msgid "Handles `contact us` form submissions." msgstr "" -#: engine/core/views.py:239 +#: engine/core/views.py:240 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." msgstr "" -#: engine/core/views.py:279 +#: engine/core/views.py:280 msgid "Handles global search queries." msgstr "" -#: engine/core/views.py:294 +#: engine/core/views.py:295 msgid "Handles the logic of buying as a business without registration." msgstr "" -#: engine/core/views.py:331 +#: engine/core/views.py:332 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 " @@ -2917,31 +2930,31 @@ msgid "" "error is raised to indicate the resource is unavailable." msgstr "" -#: engine/core/views.py:342 +#: engine/core/views.py:343 msgid "order_product_uuid is required" msgstr "" -#: engine/core/views.py:349 +#: engine/core/views.py:350 msgid "order product does not exist" msgstr "" -#: engine/core/views.py:352 +#: engine/core/views.py:353 msgid "you can only download the digital asset once" msgstr "" -#: engine/core/views.py:355 +#: engine/core/views.py:356 msgid "the order must be paid before downloading the digital asset" msgstr "" -#: engine/core/views.py:361 +#: engine/core/views.py:362 msgid "the order product does not have a product" msgstr "" -#: engine/core/views.py:398 +#: engine/core/views.py:399 msgid "favicon not found" msgstr "" -#: engine/core/views.py:403 +#: engine/core/views.py:404 msgid "" "Handles requests for the favicon of a website.\n" "This function attempts to serve the favicon file located in the static " @@ -2949,18 +2962,18 @@ msgid "" "error is raised to indicate the resource is unavailable." msgstr "" -#: engine/core/views.py:415 +#: engine/core/views.py:416 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 "" -#: engine/core/views.py:428 +#: engine/core/views.py:429 msgid "Returns current version of the eVibes. " msgstr "" -#: engine/core/views.py:637 +#: engine/core/views.py:793 msgid "Returns custom variables for Dashboard. " msgstr "" diff --git a/engine/core/locale/id_ID/LC_MESSAGES/django.mo b/engine/core/locale/id_ID/LC_MESSAGES/django.mo index e2d54b5720b2109b6ff05f98b694953084c2c7c3..842197affa4aa54e913e615e44f8dd4fae385a6c 100644 GIT binary patch delta 14883 zcmZA72YgT0|HtwB4I!~2cFb5ogh+^zh!K0nh?yEetRP10@ug;!+MBkhy&Gy3MJcJG zTB}rzrYLQ-YW-^bU+?cZ`tbPQ$K&LAKIfc!&b{ZHd%xd^`^UT&eC6%Fo-5-*hhx2$ z;}piYypHoh2FIBhtWw9>Tg`Fu;6Ci?a-1_rwNo+DaeOcwGh-BH!Ma!gTVMe8MsJ*m zxo{fl{AHNYaoo;FWX4ml2Gv1{D96c(6_9IjYT^Qn!%TP&)$SqY#(yy@`qgk8Uo3>R zxzN(63+ol_IQ}>gi{k_=gR8M1<2z|&c60aXSe=UHwavg6FoO8LwRjy9w@2NJ08LyJdFwX2#aFd7{?jsa-0-w?k4khUB`KcirV!ZrzMWWCwK~X;+GA$ zL)r~#=s2~A$2T%FatN71r%husa0k@X_rrWR3H@*x`r;!@PF1EOjj}D63D)EVoft!w&_PThQ%Ibn z7j;;^x8sCTUaT(?$Kv0_?tYHbiFino<20tjZ~HR?#QBrW1#TVWID;r}Kg4nNP<}GS zai-ve;btb?nMRr^E{H6%Qv&sP48XFu5VbiEp{DK$YVCYRnJLYNYL^=;Vhz-iC1C*^ zidyrTs3n+d<0Z)6b2}@^^rT`9>bdn9?KpwNjmMZ>+z-{kMD)d}m<8wHG1@Q34BTPY zalA7q@4=F4@61K*r2`m-x3CiCnP8T-K928_LX`(hbR6DM zPF*aB)|uZh0&AQC)g78l#In3I0se#F)~@sXIL65PO;B_92q@+oiH!< zL7gxjwdQkC7qSLDSB|>igP0S4K)q1XZT(AIo_(sRFN#{SP}IytqAsxQROUaBOkWCu zaR!FtZq%CHwdDn;nStx0Hdk9Lft}GCC!j8DD(Zq4p$6Pw<5bKnP7r%~tsIF0$& zl)t3F2eV8!cbXgZVk&~VuyW{waj1?vqXz6_%SWQtdLnAd7olcwEo#8MsBuo%_kpff+Ci z6*t0adj3<$RHtAo>JILp?%;{lXQsL0f~YGlkGi86)Fx_=8aN4c!Q)XEya3hDr>J(H zqb@wn`V0E$`F}-5n<2+6(@_}u64%2l*aBm)BZlJ&%!X$%0*i#u^gtMUgiJbS`3-P{Og4CWHfbGu?qf$daQ!xnvc~Gj3Q3NFkFRNmHJ_6(Hx9=H9DtWm7t~;Znc`;H zfH)p?hpSODu?5vnDr!cLqb~4Y)CHGXXqF}f)h>D=^RFw7rJy`c!%$4c+;|%s<5R4O zbrzWcC!p4J2I|h1U{&0V74Q~T#+-}Ir)53Vg)~B)Hy8_{+ieS$qrMzƮa)$vO# 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 delta 14872 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\n" "Language-Team: BRITISH ENGLISH \n" @@ -19,7 +19,8 @@ msgstr "ID unik" #: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" -msgstr "ID unik digunakan untuk mengidentifikasi objek basis data secara pasti" +msgstr "" +"ID unik digunakan untuk mengidentifikasi objek basis data secara pasti" #: engine/core/abstract.py:20 msgid "is active" @@ -27,7 +28,8 @@ msgstr "Aktif" #: engine/core/abstract.py: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" @@ -154,7 +156,8 @@ msgstr "Disampaikan." msgid "canceled" msgstr "Dibatalkan" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Gagal" @@ -192,8 +195,8 @@ msgid "" "negotiation. Language can be selected with Accept-Language and query " "parameter both." msgstr "" -"Skema OpenApi3 untuk API ini. Format dapat dipilih melalui negosiasi konten. " -"Bahasa dapat dipilih dengan parameter Accept-Language dan parameter kueri." +"Skema OpenApi3 untuk API ini. Format dapat dipilih melalui negosiasi konten." +" Bahasa dapat dipilih dengan parameter Accept-Language dan parameter kueri." #: engine/core/docs/drf/views.py:44 engine/core/graphene/mutations.py:37 msgid "cache I/O" @@ -205,8 +208,7 @@ msgid "" "apply key, data and timeout with authentication to write data to cache." msgstr "" "Terapkan hanya kunci untuk membaca data yang diizinkan dari cache.\n" -"Menerapkan kunci, data, dan batas waktu dengan autentikasi untuk menulis " -"data ke cache." +"Menerapkan kunci, data, dan batas waktu dengan autentikasi untuk menulis data ke cache." #: engine/core/docs/drf/views.py:62 msgid "get a list of supported languages" @@ -272,7 +274,8 @@ msgstr "" "dapat diedit" #: engine/core/docs/drf/viewsets.py:96 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Menulis ulang beberapa bidang dari grup atribut yang sudah ada sehingga " "tidak dapat diedit" @@ -328,7 +331,8 @@ msgstr "" "dapat diedit" #: engine/core/docs/drf/viewsets.py:186 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" "Menulis ulang beberapa bidang dari nilai atribut yang sudah ada sehingga " "tidak dapat diedit" @@ -388,8 +392,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:281 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" "Pencarian substring yang tidak peka huruf besar/kecil di human_readable_id, " "order_produk.product.name, dan order_produk.product.partnumber" @@ -413,7 +417,8 @@ msgstr "Filter berdasarkan ID pesanan yang dapat dibaca manusia" #: engine/core/docs/drf/viewsets.py:308 msgid "Filter by user's email (case-insensitive exact match)" msgstr "" -"Filter berdasarkan email pengguna (pencocokan persis tanpa huruf besar-kecil)" +"Filter berdasarkan email pengguna (pencocokan persis tanpa huruf besar-" +"kecil)" #: engine/core/docs/drf/viewsets.py:313 msgid "Filter by user's UUID" @@ -427,9 +432,9 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:324 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "Urutkan berdasarkan salah satu dari: uuid, human_readable_id, user_email, " "user, status, created, modified, buy_time, random. Awalan dengan '-' untuk " @@ -638,31 +643,20 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "Memfilter berdasarkan satu atau beberapa pasangan nama/nilai atribut. \n" "- **Sintaks**: `attr_name = metode-nilai[;attr2 = metode2-nilai2]...`\n" -"- **Metode** (default ke `icontains` jika dihilangkan): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" -"- Pengetikan nilai**: JSON dicoba terlebih dahulu (sehingga Anda dapat " -"mengoper daftar/diktat), `true`/`false` untuk boolean, bilangan bulat, " -"float; jika tidak, maka akan diperlakukan sebagai string. \n" -"- **Base64**: awalan dengan `b64-` untuk menyandikan base64 yang aman bagi " -"URL untuk menyandikan nilai mentah. \n" +"- **Metode** (default ke `icontains` jika dihilangkan): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" +"- Pengetikan nilai**: JSON dicoba terlebih dahulu (sehingga Anda dapat mengoper daftar/diktat), `true`/`false` untuk boolean, bilangan bulat, float; jika tidak, maka akan diperlakukan sebagai string. \n" +"- **Base64**: awalan dengan `b64-` untuk menyandikan base64 yang aman bagi URL untuk menyandikan nilai mentah. \n" "Contoh: \n" -"`warna=merah-pasti`, `ukuran=gt-10`, `fitur=dalam-[\"wifi\", " -"\"bluetooth\"]`,\n" +"`warna=merah-pasti`, `ukuran=gt-10`, `fitur=dalam-[\"wifi\", \"bluetooth\"]`,\n" "`b64-description = berisi-aGVhdC1jb2xk`" #: engine/core/docs/drf/viewsets.py:568 engine/core/docs/drf/viewsets.py:569 @@ -675,14 +669,11 @@ msgstr "UUID Produk (persis)" #: engine/core/docs/drf/viewsets.py:581 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Daftar bidang yang dipisahkan koma untuk mengurutkan. Awalan dengan `-` " -"untuk mengurutkan. \n" -"**Diizinkan:** uuid, peringkat, nama, siput, dibuat, dimodifikasi, harga, " -"acak" +"Daftar bidang yang dipisahkan koma untuk mengurutkan. Awalan dengan `-` untuk mengurutkan. \n" +"**Diizinkan:** uuid, peringkat, nama, siput, dibuat, dimodifikasi, harga, acak" #: engine/core/docs/drf/viewsets.py:598 engine/core/docs/drf/viewsets.py:599 msgid "retrieve a single product (detailed view)" @@ -757,7 +748,8 @@ msgstr "Masukan alamat pelengkapan otomatis" #: engine/core/docs/drf/viewsets.py:794 msgid "raw data query string, please append with data from geo-IP endpoint" msgstr "" -"String kueri data mentah, harap tambahkan dengan data dari titik akhir geo-IP" +"String kueri data mentah, harap tambahkan dengan data dari titik akhir geo-" +"IP" #: engine/core/docs/drf/viewsets.py:800 msgid "limit the results amount, 1 < limit < 10, default: 5" @@ -1165,7 +1157,7 @@ msgstr "Data yang di-cache" msgid "camelized JSON data from the requested URL" msgstr "Data JSON yang di-camel dari URL yang diminta" -#: engine/core/graphene/mutations.py:67 engine/core/views.py:256 +#: engine/core/graphene/mutations.py:67 engine/core/views.py:257 msgid "only URLs starting with http(s):// are allowed" msgstr "Hanya URL yang dimulai dengan http(s):// yang diperbolehkan" @@ -1250,8 +1242,8 @@ msgstr "Beli pesanan" #: engine/core/graphene/mutations.py:516 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "" "Kirimkan atribut dalam bentuk string seperti attr1 = nilai1, attr2 = nilai2" @@ -1328,7 +1320,8 @@ msgstr "" "Atribut dan nilai mana yang dapat digunakan untuk memfilter kategori ini." #: engine/core/graphene/object_types.py:203 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" "Harga minimum dan maksimum untuk produk dalam kategori ini, jika tersedia." @@ -1541,7 +1534,8 @@ msgstr "Nomor Telepon Perusahaan" #: engine/core/graphene/object_types.py:680 msgid "email from, sometimes it must be used instead of host user value" msgstr "" -"'email from', terkadang harus digunakan sebagai pengganti nilai pengguna host" +"'email from', terkadang harus digunakan sebagai pengganti nilai pengguna " +"host" #: engine/core/graphene/object_types.py:681 msgid "email host user" @@ -1602,9 +1596,9 @@ msgid "" msgstr "" "Mewakili sekelompok atribut, yang dapat berupa hirarki. Kelas ini digunakan " "untuk mengelola dan mengatur grup atribut. Sebuah grup atribut dapat " -"memiliki grup induk, membentuk struktur hirarki. Hal ini dapat berguna untuk " -"mengkategorikan dan mengelola atribut secara lebih efektif dalam sistem yang " -"kompleks." +"memiliki grup induk, membentuk struktur hirarki. Hal ini dapat berguna untuk" +" mengkategorikan dan mengelola atribut secara lebih efektif dalam sistem " +"yang kompleks." #: engine/core/models.py:91 msgid "parent of this group" @@ -1634,8 +1628,8 @@ msgid "" msgstr "" "Mewakili entitas vendor yang mampu menyimpan informasi tentang vendor " "eksternal dan persyaratan interaksinya. Kelas Vendor digunakan untuk " -"mendefinisikan dan mengelola informasi yang terkait dengan vendor eksternal. " -"Kelas ini menyimpan nama vendor, detail otentikasi yang diperlukan untuk " +"mendefinisikan dan mengelola informasi yang terkait dengan vendor eksternal." +" Kelas ini menyimpan nama vendor, detail otentikasi yang diperlukan untuk " "komunikasi, dan persentase markup yang diterapkan pada produk yang diambil " "dari vendor. Model ini juga menyimpan metadata dan batasan tambahan, " "sehingga cocok untuk digunakan dalam sistem yang berinteraksi dengan vendor " @@ -1694,8 +1688,8 @@ msgstr "" "Merupakan tag produk yang digunakan untuk mengklasifikasikan atau " "mengidentifikasi produk. Kelas ProductTag dirancang untuk mengidentifikasi " "dan mengklasifikasikan produk secara unik melalui kombinasi pengenal tag " -"internal dan nama tampilan yang mudah digunakan. Kelas ini mendukung operasi " -"yang diekspor melalui mixin dan menyediakan penyesuaian metadata untuk " +"internal dan nama tampilan yang mudah digunakan. Kelas ini mendukung operasi" +" yang diekspor melalui mixin dan menyediakan penyesuaian metadata untuk " "tujuan administratif." #: engine/core/models.py:209 engine/core/models.py:240 @@ -1724,8 +1718,8 @@ msgid "" "tag that can be used to associate and classify products. It includes " "attributes for an internal tag identifier and a user-friendly display name." msgstr "" -"Merupakan tag kategori yang digunakan untuk produk. Kelas ini memodelkan tag " -"kategori yang dapat digunakan untuk mengaitkan dan mengklasifikasikan " +"Merupakan tag kategori yang digunakan untuk produk. Kelas ini memodelkan tag" +" kategori yang dapat digunakan untuk mengaitkan dan mengklasifikasikan " "produk. Kelas ini mencakup atribut untuk pengenal tag internal dan nama " "tampilan yang mudah digunakan." @@ -1751,9 +1745,9 @@ msgid "" msgstr "" "Merupakan entitas kategori untuk mengatur dan mengelompokkan item terkait " "dalam struktur hierarki. Kategori dapat memiliki hubungan hierarkis dengan " -"kategori lain, yang mendukung hubungan induk-anak. Kelas ini mencakup bidang " -"untuk metadata dan representasi visual, yang berfungsi sebagai fondasi untuk " -"fitur-fitur terkait kategori. Kelas ini biasanya digunakan untuk " +"kategori lain, yang mendukung hubungan induk-anak. Kelas ini mencakup bidang" +" untuk metadata dan representasi visual, yang berfungsi sebagai fondasi " +"untuk fitur-fitur terkait kategori. Kelas ini biasanya digunakan untuk " "mendefinisikan dan mengelola kategori produk atau pengelompokan serupa " "lainnya dalam aplikasi, yang memungkinkan pengguna atau administrator " "menentukan nama, deskripsi, dan hierarki kategori, serta menetapkan atribut " @@ -1808,12 +1802,13 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" -"Mewakili objek Merek dalam sistem. Kelas ini menangani informasi dan atribut " -"yang terkait dengan merek, termasuk nama, logo, deskripsi, kategori terkait, " -"siput unik, dan urutan prioritas. Kelas ini memungkinkan pengaturan dan " -"representasi data yang terkait dengan merek di dalam aplikasi." +"Mewakili objek Merek dalam sistem. Kelas ini menangani informasi dan atribut" +" yang terkait dengan merek, termasuk nama, logo, deskripsi, kategori " +"terkait, siput unik, dan urutan prioritas. Kelas ini memungkinkan pengaturan" +" dan representasi data yang terkait dengan merek di dalam aplikasi." #: engine/core/models.py:448 msgid "name of this brand" @@ -1857,8 +1852,8 @@ msgstr "Kategori" #: engine/core/models.py:508 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 " @@ -1866,10 +1861,10 @@ msgid "" msgstr "" "Mewakili stok produk yang dikelola dalam sistem. Kelas ini memberikan " "rincian tentang hubungan antara vendor, produk, dan informasi stok mereka, " -"serta properti terkait inventaris seperti harga, harga pembelian, kuantitas, " -"SKU, dan aset digital. Ini adalah bagian dari sistem manajemen inventaris " -"untuk memungkinkan pelacakan dan evaluasi produk yang tersedia dari berbagai " -"vendor." +"serta properti terkait inventaris seperti harga, harga pembelian, kuantitas," +" SKU, dan aset digital. Ini adalah bagian dari sistem manajemen inventaris " +"untuk memungkinkan pelacakan dan evaluasi produk yang tersedia dari berbagai" +" vendor." #: engine/core/models.py:520 msgid "the vendor supplying this product stock" @@ -1947,13 +1942,13 @@ msgid "" "properties to improve performance. It is used to define and manipulate " "product data and its associated information within an application." msgstr "" -"Merepresentasikan produk dengan atribut seperti kategori, merek, tag, status " -"digital, nama, deskripsi, nomor komponen, dan siput. Menyediakan properti " +"Merepresentasikan produk dengan atribut seperti kategori, merek, tag, status" +" digital, nama, deskripsi, nomor komponen, dan siput. Menyediakan properti " "utilitas terkait untuk mengambil peringkat, jumlah umpan balik, harga, " "kuantitas, dan total pesanan. Dirancang untuk digunakan dalam sistem yang " "menangani e-commerce atau manajemen inventaris. Kelas ini berinteraksi " -"dengan model terkait (seperti Kategori, Merek, dan ProductTag) dan mengelola " -"cache untuk properti yang sering diakses untuk meningkatkan kinerja. Kelas " +"dengan model terkait (seperti Kategori, Merek, dan ProductTag) dan mengelola" +" cache untuk properti yang sering diakses untuk meningkatkan kinerja. Kelas " "ini digunakan untuk mendefinisikan dan memanipulasi data produk dan " "informasi terkait di dalam aplikasi." @@ -2010,12 +2005,12 @@ msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" -"Merupakan atribut dalam sistem. Kelas ini digunakan untuk mendefinisikan dan " -"mengelola atribut, yang merupakan bagian data yang dapat disesuaikan yang " +"Merupakan atribut dalam sistem. Kelas ini digunakan untuk mendefinisikan dan" +" mengelola atribut, yang merupakan bagian data yang dapat disesuaikan yang " "dapat dikaitkan dengan entitas lain. Atribut memiliki kategori, grup, tipe " "nilai, dan nama yang terkait. Model ini mendukung berbagai jenis nilai, " "termasuk string, integer, float, boolean, array, dan objek. Hal ini " @@ -2081,9 +2076,9 @@ msgstr "Atribut" #: engine/core/models.py:777 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" "Mewakili nilai spesifik untuk atribut yang terkait dengan produk. Ini " "menghubungkan 'atribut' dengan 'nilai' yang unik, memungkinkan pengaturan " @@ -2104,14 +2099,14 @@ msgstr "Nilai spesifik untuk atribut ini" #: engine/core/models.py:815 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" "Mewakili gambar produk yang terkait dengan produk dalam sistem. Kelas ini " -"dirancang untuk mengelola gambar untuk produk, termasuk fungsionalitas untuk " -"mengunggah file gambar, mengasosiasikannya dengan produk tertentu, dan " +"dirancang untuk mengelola gambar untuk produk, termasuk fungsionalitas untuk" +" mengunggah file gambar, mengasosiasikannya dengan produk tertentu, dan " "menentukan urutan tampilannya. Kelas ini juga mencakup fitur aksesibilitas " "dengan teks alternatif untuk gambar." @@ -2153,8 +2148,8 @@ msgid "" "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" "Merupakan kampanye promosi untuk produk dengan diskon. Kelas ini digunakan " "untuk mendefinisikan dan mengelola kampanye promosi yang menawarkan diskon " @@ -2230,8 +2225,8 @@ msgid "" "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." msgstr "" "Merupakan catatan dokumenter yang terkait dengan suatu produk. Kelas ini " "digunakan untuk menyimpan informasi tentang film dokumenter yang terkait " @@ -2254,14 +2249,14 @@ msgstr "Belum terselesaikan" #: engine/core/models.py:1014 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" "Mewakili entitas alamat yang mencakup detail lokasi dan asosiasi dengan " "pengguna. Menyediakan fungsionalitas untuk penyimpanan data geografis dan " @@ -2335,8 +2330,8 @@ msgid "" "apply the promo code to an order while ensuring constraints are met." msgstr "" "Mewakili kode promosi yang dapat digunakan untuk diskon, mengelola " -"validitas, jenis diskon, dan penerapannya. Kelas PromoCode menyimpan rincian " -"tentang kode promosi, termasuk pengenal unik, properti diskon (jumlah atau " +"validitas, jenis diskon, dan penerapannya. Kelas PromoCode menyimpan rincian" +" tentang kode promosi, termasuk pengenal unik, properti diskon (jumlah atau " "persentase), masa berlaku, pengguna terkait (jika ada), dan status " "penggunaannya. Ini termasuk fungsionalitas untuk memvalidasi dan menerapkan " "kode promo ke pesanan sambil memastikan batasan terpenuhi." @@ -2427,8 +2422,8 @@ msgstr "Jenis diskon tidak valid untuk kode promo {self.uuid}!" 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 "" @@ -2471,8 +2466,8 @@ msgstr "Status pesanan" #: engine/core/models.py:1243 engine/core/models.py:1769 msgid "json structure of notifications to display to users" msgstr "" -"Struktur JSON dari notifikasi untuk ditampilkan kepada pengguna, di UI admin " -"digunakan table-view" +"Struktur JSON dari notifikasi untuk ditampilkan kepada pengguna, di UI admin" +" digunakan table-view" #: engine/core/models.py:1249 msgid "json representation of order attributes for this order" @@ -2619,7 +2614,8 @@ msgid "feedback comments" msgstr "Komentar umpan balik" #: engine/core/models.py:1719 -msgid "references the specific product in an order that this feedback is about" +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:1720 @@ -2651,8 +2647,8 @@ 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." @@ -2764,9 +2760,9 @@ 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 " @@ -2820,8 +2816,8 @@ msgid "No customer activity in the last 30 days." msgstr "Tidak ada aktivitas nasabah dalam 30 hari terakhir." #: engine/core/templates/admin/dashboard/_daily_sales.html:5 -msgid "Daily sales (30d)" -msgstr "Penjualan harian (30d)" +msgid "Daily sales" +msgstr "Penjualan harian" #: engine/core/templates/admin/dashboard/_daily_sales.html:59 msgid "Orders (FINISHED)" @@ -2832,6 +2828,7 @@ msgid "Gross revenue" msgstr "Pendapatan kotor" #: engine/core/templates/admin/dashboard/_daily_sales.html:106 +#: engine/core/templates/admin/dashboard/_kpis.html:20 msgid "Orders" msgstr "Pesanan" @@ -2839,6 +2836,10 @@ msgstr "Pesanan" msgid "Gross" msgstr "Kotor" +#: engine/core/templates/admin/dashboard/_header.html:3 +msgid "Dashboard" +msgstr "Dasbor" + #: engine/core/templates/admin/dashboard/_income_overview.html:7 msgid "Income overview" msgstr "Ikhtisar pendapatan" @@ -2867,20 +2868,32 @@ msgid "No data" msgstr "Tidak ada tanggal" #: engine/core/templates/admin/dashboard/_kpis.html:6 -msgid "Revenue (gross, 30d)" -msgstr "Pendapatan (kotor, 30d)" +msgid "GMV" +msgstr "GMV" -#: engine/core/templates/admin/dashboard/_kpis.html:15 -msgid "Revenue (net, 30d)" -msgstr "Pendapatan (bersih, 30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:34 +msgid "AOV" +msgstr "AOV" -#: engine/core/templates/admin/dashboard/_kpis.html:24 -msgid "Returns (30d)" -msgstr "Pengembalian (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:48 +msgid "Net revenue" +msgstr "Pendapatan bersih" -#: engine/core/templates/admin/dashboard/_kpis.html:33 -msgid "Processed orders (30d)" -msgstr "Pesanan yang diproses (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:62 +msgid "Refund rate" +msgstr "Tingkat pengembalian dana" + +#: engine/core/templates/admin/dashboard/_kpis.html:73 +msgid "returned" +msgstr "Kembali" + +#: engine/core/templates/admin/dashboard/_low_stock.html:5 +msgid "Low stock" +msgstr "Stok rendah" + +#: engine/core/templates/admin/dashboard/_low_stock.html:29 +msgid "No low stock items." +msgstr "Tidak ada stok barang yang rendah." #: engine/core/templates/admin/dashboard/_most_returned.html:5 msgid "Most returned products (30d)" @@ -2895,11 +2908,11 @@ msgid "Most wished product" msgstr "Produk yang paling diharapkan" #: engine/core/templates/admin/dashboard/_product_lists.html:33 -#: engine/core/templates/admin/dashboard/_product_lists.html:67 +#: engine/core/templates/admin/dashboard/_product_lists.html:68 msgid "No data yet." msgstr "Belum ada data." -#: engine/core/templates/admin/dashboard/_product_lists.html:40 +#: engine/core/templates/admin/dashboard/_product_lists.html:41 msgid "Most popular product" msgstr "Produk paling populer" @@ -2935,10 +2948,6 @@ msgstr "Tidak ada penjualan kategori dalam 30 hari terakhir." msgid "Django site admin" msgstr "Admin situs Django" -#: engine/core/templates/admin/index.html:20 -msgid "Dashboard" -msgstr "Dasbor" - #: 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 @@ -2968,8 +2977,7 @@ msgstr "Halo %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" "Terima kasih atas pesanan Anda #%(order.pk)s! Dengan senang hati kami " @@ -3078,15 +3086,13 @@ msgid "" "Thank you for staying with us! We have granted you with a promocode\n" " for " msgstr "" -"Terima kasih telah tinggal bersama kami! Kami telah memberikan Anda kode " -"promo\n" +"Terima kasih telah tinggal bersama kami! Kami telah memberikan Anda kode promo\n" " untuk" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" "Terima kasih atas pesanan Anda! Dengan senang hati kami mengkonfirmasi " @@ -3159,7 +3165,7 @@ 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!" -#: engine/core/views.py:90 +#: engine/core/views.py:91 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." @@ -3167,7 +3173,7 @@ msgstr "" "Menangani permintaan indeks peta situs dan mengembalikan respons XML. " "Memastikan respons menyertakan header jenis konten yang sesuai untuk XML." -#: engine/core/views.py:105 +#: engine/core/views.py:106 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " @@ -3177,28 +3183,28 @@ msgstr "" "permintaan, mengambil respons detail peta situs yang sesuai, dan menetapkan " "header Jenis Konten untuk XML." -#: engine/core/views.py:140 +#: engine/core/views.py:141 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "Mengembalikan daftar bahasa yang didukung dan informasi terkait." -#: engine/core/views.py:172 +#: engine/core/views.py:173 msgid "Returns the parameters of the website as a JSON object." msgstr "Mengembalikan parameter situs web sebagai objek JSON." -#: engine/core/views.py:191 +#: engine/core/views.py:192 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." msgstr "" -"Menangani operasi cache seperti membaca dan mengatur data cache dengan kunci " -"dan batas waktu tertentu." +"Menangani operasi cache seperti membaca dan mengatur data cache dengan kunci" +" dan batas waktu tertentu." -#: engine/core/views.py:218 +#: engine/core/views.py:219 msgid "Handles `contact us` form submissions." msgstr "Menangani pengiriman formulir `hubungi kami`." -#: engine/core/views.py:239 +#: engine/core/views.py:240 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." @@ -3206,66 +3212,58 @@ msgstr "" "Menangani permintaan untuk memproses dan memvalidasi URL dari permintaan " "POST yang masuk." -#: engine/core/views.py:279 +#: engine/core/views.py:280 msgid "Handles global search queries." msgstr "Menangani kueri penelusuran global." -#: engine/core/views.py:294 +#: engine/core/views.py:295 msgid "Handles the logic of buying as a business without registration." msgstr "Menangani logika pembelian sebagai bisnis tanpa registrasi." -#: engine/core/views.py:331 +#: engine/core/views.py:332 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Menangani pengunduhan aset digital yang terkait dengan pesanan.\n" -"Fungsi ini mencoba untuk menyajikan file aset digital yang terletak di " -"direktori penyimpanan proyek. Jika file tidak ditemukan, kesalahan HTTP 404 " -"akan muncul untuk mengindikasikan bahwa sumber daya tidak tersedia." +"Fungsi ini mencoba untuk menyajikan file aset digital yang terletak di direktori penyimpanan proyek. Jika file tidak ditemukan, kesalahan HTTP 404 akan muncul untuk mengindikasikan bahwa sumber daya tidak tersedia." -#: engine/core/views.py:342 +#: engine/core/views.py:343 msgid "order_product_uuid is required" msgstr "order_product_uuid diperlukan" -#: engine/core/views.py:349 +#: engine/core/views.py:350 msgid "order product does not exist" msgstr "produk pesanan tidak ada" -#: engine/core/views.py:352 +#: engine/core/views.py:353 msgid "you can only download the digital asset once" msgstr "Anda hanya dapat mengunduh aset digital sekali saja" -#: engine/core/views.py:355 +#: engine/core/views.py:356 msgid "the order must be paid before downloading the digital asset" msgstr "pesanan harus dibayar sebelum mengunduh aset digital" -#: engine/core/views.py:361 +#: engine/core/views.py:362 msgid "the order product does not have a product" msgstr "Produk pesanan tidak memiliki produk" -#: engine/core/views.py:398 +#: engine/core/views.py:399 msgid "favicon not found" msgstr "favicon tidak ditemukan" -#: engine/core/views.py:403 +#: engine/core/views.py:404 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Menangani permintaan favicon dari sebuah situs web.\n" -"Fungsi ini mencoba menyajikan file favicon yang terletak di direktori statis " -"proyek. Jika file favicon tidak ditemukan, kesalahan HTTP 404 akan " -"dimunculkan untuk mengindikasikan bahwa sumber daya tidak tersedia." +"Fungsi ini mencoba menyajikan file favicon yang terletak di direktori statis proyek. Jika file favicon tidak ditemukan, kesalahan HTTP 404 akan dimunculkan untuk mengindikasikan bahwa sumber daya tidak tersedia." -#: engine/core/views.py:415 +#: engine/core/views.py:416 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 " @@ -3273,11 +3271,11 @@ msgstr "" "admin Django. Fungsi ini menggunakan fungsi `redirect` Django untuk " "menangani pengalihan HTTP." -#: engine/core/views.py:428 +#: engine/core/views.py:429 msgid "Returns current version of the eVibes. " msgstr "Mengembalikan versi eVibes saat ini." -#: engine/core/views.py:637 +#: engine/core/views.py:793 msgid "Returns custom variables for Dashboard. " msgstr "Mengembalikan variabel khusus untuk Dasbor." @@ -3297,10 +3295,11 @@ msgstr "" #: engine/core/viewsets.py:156 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, " @@ -3329,11 +3328,11 @@ msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" -"Sebuah viewset untuk mengelola objek AttributeValue. Viewset ini menyediakan " -"fungsionalitas untuk mendaftarkan, mengambil, membuat, memperbarui, dan " +"Sebuah viewset untuk mengelola objek AttributeValue. Viewset ini menyediakan" +" fungsionalitas untuk mendaftarkan, mengambil, membuat, memperbarui, dan " "menghapus objek AttributeValue. Ini terintegrasi dengan mekanisme viewset " "Django REST Framework dan menggunakan serializer yang sesuai untuk tindakan " "yang berbeda. Kemampuan pemfilteran disediakan melalui DjangoFilterBackend." @@ -3347,10 +3346,10 @@ msgid "" "can access specific data." msgstr "" "Mengelola tampilan untuk operasi terkait Kategori. Kelas CategoryViewSet " -"bertanggung jawab untuk menangani operasi yang terkait dengan model Kategori " -"dalam sistem. Kelas ini mendukung pengambilan, pemfilteran, dan serialisasi " -"data kategori. ViewSet juga memberlakukan izin untuk memastikan bahwa hanya " -"pengguna yang memiliki izin yang dapat mengakses data tertentu." +"bertanggung jawab untuk menangani operasi yang terkait dengan model Kategori" +" dalam sistem. Kelas ini mendukung pengambilan, pemfilteran, dan serialisasi" +" data kategori. ViewSet juga memberlakukan izin untuk memastikan bahwa hanya" +" pengguna yang memiliki izin yang dapat mengakses data tertentu." #: engine/core/viewsets.py:326 msgid "" @@ -3361,8 +3360,8 @@ msgid "" msgstr "" "Mewakili sebuah viewset untuk mengelola instance Brand. Kelas ini " "menyediakan fungsionalitas untuk melakukan kueri, penyaringan, dan " -"serialisasi objek Brand. Kelas ini menggunakan kerangka kerja ViewSet Django " -"untuk menyederhanakan implementasi titik akhir API untuk objek Brand." +"serialisasi objek Brand. Kelas ini menggunakan kerangka kerja ViewSet Django" +" untuk menyederhanakan implementasi titik akhir API untuk objek Brand." #: engine/core/viewsets.py:438 msgid "" @@ -3375,11 +3374,11 @@ 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." #: engine/core/viewsets.py:574 @@ -3402,15 +3401,15 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `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." @@ -3419,9 +3418,9 @@ msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" "ViewSet untuk mengelola pesanan dan operasi terkait. Kelas ini menyediakan " @@ -3437,8 +3436,8 @@ msgstr "" msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "Menyediakan viewset untuk mengelola entitas OrderProduct. Viewset ini " @@ -3471,17 +3470,17 @@ msgstr "Menangani operasi yang terkait dengan data Stok di dalam sistem." msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." msgstr "" "ViewSet untuk mengelola operasi Wishlist. WishlistViewSet menyediakan titik " -"akhir untuk berinteraksi dengan daftar keinginan pengguna, yang memungkinkan " -"pengambilan, modifikasi, dan penyesuaian produk dalam daftar keinginan. " -"ViewSet ini memfasilitasi fungsionalitas seperti menambahkan, menghapus, dan " -"tindakan massal untuk produk daftar keinginan. Pemeriksaan izin " +"akhir untuk berinteraksi dengan daftar keinginan pengguna, yang memungkinkan" +" pengambilan, modifikasi, dan penyesuaian produk dalam daftar keinginan. " +"ViewSet ini memfasilitasi fungsionalitas seperti menambahkan, menghapus, dan" +" tindakan massal untuk produk daftar keinginan. Pemeriksaan izin " "diintegrasikan untuk memastikan bahwa pengguna hanya dapat mengelola daftar " "keinginan mereka sendiri kecuali jika izin eksplisit diberikan." @@ -3493,8 +3492,8 @@ msgid "" "different HTTP methods, serializer overrides, and permission handling based " "on the request context." msgstr "" -"Kelas ini menyediakan fungsionalitas viewset untuk mengelola objek `Alamat`. " -"Kelas AddressViewSet memungkinkan operasi CRUD, pemfilteran, dan tindakan " +"Kelas ini menyediakan fungsionalitas viewset untuk mengelola objek `Alamat`." +" Kelas AddressViewSet memungkinkan operasi CRUD, pemfilteran, dan tindakan " "khusus yang terkait dengan entitas alamat. Kelas ini mencakup perilaku " "khusus untuk metode HTTP yang berbeda, penggantian serializer, dan " "penanganan izin berdasarkan konteks permintaan." diff --git a/engine/core/locale/it_IT/LC_MESSAGES/django.mo b/engine/core/locale/it_IT/LC_MESSAGES/django.mo index 356a26fd175d1af1802868efb02644242550c6ee..694e98fc5647be4f0f5ecb4455d94904e686ce06 100644 GIT binary patch delta 14874 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 MWA+_r=_woff6e>3ApigX diff --git a/engine/core/locale/it_IT/LC_MESSAGES/django.po b/engine/core/locale/it_IT/LC_MESSAGES/django.po index becef461..1e281539 100644 --- a/engine/core/locale/it_IT/LC_MESSAGES/django.po +++ b/engine/core/locale/it_IT/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -29,10 +29,11 @@ msgstr "È attivo" #: engine/core/abstract.py: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." #: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" @@ -156,7 +157,8 @@ msgstr "Consegnato" msgid "canceled" msgstr "Annullato" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Fallito" @@ -194,9 +196,9 @@ msgid "" "negotiation. Language can be selected with Accept-Language and query " "parameter both." msgstr "" -"Schema OpenApi3 per questa API. Il formato può essere selezionato tramite la " -"negoziazione dei contenuti. La lingua può essere selezionata sia con Accept-" -"Language che con il parametro query." +"Schema OpenApi3 per questa API. Il formato può essere selezionato tramite la" +" negoziazione dei contenuti. La lingua può essere selezionata sia con " +"Accept-Language che con il parametro query." #: engine/core/docs/drf/views.py:44 engine/core/graphene/mutations.py:37 msgid "cache I/O" @@ -208,8 +210,7 @@ msgid "" "apply key, data and timeout with authentication to write data to cache." msgstr "" "Applicare solo una chiave per leggere i dati consentiti dalla cache.\n" -"Applicare chiave, dati e timeout con autenticazione per scrivere dati nella " -"cache." +"Applicare chiave, dati e timeout con autenticazione per scrivere dati nella cache." #: engine/core/docs/drf/views.py:62 msgid "get a list of supported languages" @@ -274,7 +275,8 @@ msgstr "" "Riscrivere un gruppo di attributi esistente salvando i non modificabili" #: engine/core/docs/drf/viewsets.py:96 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Riscrivere alcuni campi di un gruppo di attributi esistente salvando quelli " "non modificabili" @@ -329,7 +331,8 @@ msgstr "" "modificabili" #: engine/core/docs/drf/viewsets.py:186 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" "Riscrivere alcuni campi di un valore di attributo esistente salvando i " "valori non modificabili" @@ -362,8 +365,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:244 engine/core/docs/drf/viewsets.py:245 msgid "rewrite some fields of an existing category saving non-editables" msgstr "" -"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non " -"modificabili" +"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non" +" modificabili" #: engine/core/docs/drf/viewsets.py:252 engine/core/docs/drf/viewsets.py:704 #: engine/core/docs/drf/viewsets.py:988 @@ -389,12 +392,12 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:281 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" "Ricerca di sottostringhe senza distinzione di maiuscole e minuscole tra " -"human_readable_id, order_products.product.name e order_products.product." -"partnumber" +"human_readable_id, order_products.product.name e " +"order_products.product.partnumber" #: engine/core/docs/drf/viewsets.py:288 msgid "Filter orders with buy_time >= this ISO 8601 datetime" @@ -430,9 +433,9 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:324 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "Ordinare per uno dei seguenti criteri: uuid, human_readable_id, user_email, " "user, status, created, modified, buy_time, random. Prefisso con '-' per la " @@ -466,8 +469,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:373 msgid "rewrite some fields of an existing order saving non-editables" msgstr "" -"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non " -"modificabili" +"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non" +" modificabili" #: engine/core/docs/drf/viewsets.py:380 msgid "purchase an order" @@ -480,8 +483,8 @@ msgid "" "transaction is initiated." msgstr "" "Finalizza l'acquisto dell'ordine. Se si utilizza `forza_bilancio`, " -"l'acquisto viene completato utilizzando il saldo dell'utente; se si utilizza " -"`forza_pagamento`, viene avviata una transazione." +"l'acquisto viene completato utilizzando il saldo dell'utente; se si utilizza" +" `forza_pagamento`, viene avviata una transazione." #: engine/core/docs/drf/viewsets.py:397 msgid "retrieve current pending order of a user" @@ -557,8 +560,8 @@ msgstr "Elenco di tutti gli attributi (vista semplice)" #: engine/core/docs/drf/viewsets.py:460 msgid "for non-staff users, only their own wishlists are returned." msgstr "" -"Per gli utenti che non fanno parte del personale, vengono restituite solo le " -"loro liste dei desideri." +"Per gli utenti che non fanno parte del personale, vengono restituite solo le" +" loro liste dei desideri." #: engine/core/docs/drf/viewsets.py:467 msgid "retrieve a single wishlist (detailed view)" @@ -639,28 +642,18 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "Filtrare in base a una o più coppie nome/valore dell'attributo. \n" "- **Sintassi**: `nome_attraverso=metodo-valore[;attr2=metodo2-valore2]...`\n" -"- **Metodi** (predefiniti a `icontains` se omessi): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`.\n" -"- **Tipo di valore**: JSON viene tentato per primo (in modo da poter passare " -"liste/dict), `true`/`false` per booleani, interi, float; altrimenti viene " -"trattato come stringa. \n" -"- **Base64**: prefisso con `b64-` per codificare in base64 il valore " -"grezzo. \n" +"- **Metodi** (predefiniti a `icontains` se omessi): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`.\n" +"- **Tipo di valore**: JSON viene tentato per primo (in modo da poter passare liste/dict), `true`/`false` per booleani, interi, float; altrimenti viene trattato come stringa. \n" +"- **Base64**: prefisso con `b64-` per codificare in base64 il valore grezzo. \n" "Esempi: \n" "`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\", \"bluetooth\"]`,\n" "`b64-description=icontains-aGVhdC1jb2xk`" @@ -675,12 +668,10 @@ msgstr "(esatto) UUID del prodotto" #: engine/core/docs/drf/viewsets.py:581 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Elenco separato da virgole dei campi da ordinare. Prefisso con `-` per " -"l'ordinamento discendente. \n" +"Elenco separato da virgole dei campi da ordinare. Prefisso con `-` per l'ordinamento discendente. \n" "**Consentito:** uuid, rating, nome, slug, creato, modificato, prezzo, casuale" #: engine/core/docs/drf/viewsets.py:598 engine/core/docs/drf/viewsets.py:599 @@ -702,7 +693,8 @@ msgstr "Creare un prodotto" #: engine/core/docs/drf/viewsets.py:628 engine/core/docs/drf/viewsets.py:629 msgid "rewrite an existing product, preserving non-editable fields" -msgstr "Riscrivere un prodotto esistente, preservando i campi non modificabili" +msgstr "" +"Riscrivere un prodotto esistente, preservando i campi non modificabili" #: engine/core/docs/drf/viewsets.py:647 engine/core/docs/drf/viewsets.py:648 msgid "" @@ -784,8 +776,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:851 msgid "rewrite some fields of an existing feedback saving non-editables" msgstr "" -"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non " -"modificabili" +"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non" +" modificabili" #: engine/core/docs/drf/viewsets.py:861 msgid "list all order–product relations (simple view)" @@ -843,8 +835,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:981 msgid "rewrite some fields of an existing brand saving non-editables" msgstr "" -"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non " -"modificabili" +"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non" +" modificabili" #: engine/core/docs/drf/viewsets.py:1006 msgid "list all vendors (simple view)" @@ -870,8 +862,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1041 msgid "rewrite some fields of an existing vendor saving non-editables" msgstr "" -"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non " -"modificabili" +"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non" +" modificabili" #: engine/core/docs/drf/viewsets.py:1051 msgid "list all product images (simple view)" @@ -897,8 +889,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1086 msgid "rewrite some fields of an existing product image saving non-editables" msgstr "" -"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non " -"modificabili" +"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non" +" modificabili" #: engine/core/docs/drf/viewsets.py:1096 msgid "list all promo codes (simple view)" @@ -924,8 +916,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1131 msgid "rewrite some fields of an existing promo code saving non-editables" msgstr "" -"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non " -"modificabili" +"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non" +" modificabili" #: engine/core/docs/drf/viewsets.py:1141 msgid "list all promotions (simple view)" @@ -951,8 +943,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1176 msgid "rewrite some fields of an existing promotion saving non-editables" msgstr "" -"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non " -"modificabili" +"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non" +" modificabili" #: engine/core/docs/drf/viewsets.py:1186 msgid "list all stocks (simple view)" @@ -978,8 +970,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1221 msgid "rewrite some fields of an existing stock record saving non-editables" msgstr "" -"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non " -"modificabili" +"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non" +" modificabili" #: engine/core/docs/drf/viewsets.py:1231 msgid "list all product tags (simple view)" @@ -1005,8 +997,8 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:1266 msgid "rewrite some fields of an existing product tag saving non-editables" msgstr "" -"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non " -"modificabili" +"Riscrivere alcuni campi di una categoria esistente salvando gli elementi non" +" modificabili" #: engine/core/elasticsearch/__init__.py:122 #: engine/core/elasticsearch/__init__.py:570 @@ -1157,7 +1149,7 @@ msgstr "Dati in cache" msgid "camelized JSON data from the requested URL" msgstr "Dati JSON camelizzati dall'URL richiesto" -#: engine/core/graphene/mutations.py:67 engine/core/views.py:256 +#: engine/core/graphene/mutations.py:67 engine/core/views.py:257 msgid "only URLs starting with http(s):// are allowed" msgstr "Sono consentiti solo gli URL che iniziano con http(s)://" @@ -1191,7 +1183,8 @@ msgstr "" #: engine/core/graphene/mutations.py:236 engine/core/graphene/mutations.py:501 #: engine/core/graphene/mutations.py:543 engine/core/viewsets.py:712 msgid "wrong type came from order.buy() method: {type(instance)!s}" -msgstr "Il metodo order.buy() ha fornito un tipo sbagliato: {type(instance)!s}" +msgstr "" +"Il metodo order.buy() ha fornito un tipo sbagliato: {type(instance)!s}" #: engine/core/graphene/mutations.py:245 msgid "perform an action on a list of products in the order" @@ -1242,11 +1235,11 @@ msgstr "Acquistare un ordine" #: engine/core/graphene/mutations.py:516 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "" -"Inviare gli attributi come stringa formattata come attr1=valore1," -"attr2=valore2" +"Inviare gli attributi come stringa formattata come " +"attr1=valore1,attr2=valore2" #: engine/core/graphene/mutations.py:549 msgid "add or delete a feedback for orderproduct" @@ -1322,7 +1315,8 @@ msgstr "" "categoria." #: engine/core/graphene/object_types.py:203 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" "Prezzi minimi e massimi per i prodotti di questa categoria, se disponibili." @@ -1593,9 +1587,9 @@ msgid "" "parent group, forming a hierarchical structure. This can be useful for " "categorizing and managing attributes more effectively in acomplex system." msgstr "" -"Rappresenta un gruppo di attributi, che può essere gerarchico. Questa classe " -"viene utilizzata per gestire e organizzare i gruppi di attributi. Un gruppo " -"di attributi può avere un gruppo padre, formando una struttura gerarchica. " +"Rappresenta un gruppo di attributi, che può essere gerarchico. Questa classe" +" viene utilizzata per gestire e organizzare i gruppi di attributi. Un gruppo" +" di attributi può avere un gruppo padre, formando una struttura gerarchica. " "Questo può essere utile per categorizzare e gestire meglio gli attributi in " "un sistema complesso." @@ -1719,8 +1713,8 @@ msgid "" msgstr "" "Rappresenta un tag di categoria utilizzato per i prodotti. Questa classe " "modella un tag di categoria che può essere usato per associare e " -"classificare i prodotti. Include gli attributi per un identificatore interno " -"del tag e un nome di visualizzazione facile da usare." +"classificare i prodotti. Include gli attributi per un identificatore interno" +" del tag e un nome di visualizzazione facile da usare." #: engine/core/models.py:254 msgid "category tag" @@ -1744,12 +1738,12 @@ msgid "" msgstr "" "Rappresenta un'entità di categoria per organizzare e raggruppare gli " "elementi correlati in una struttura gerarchica. Le categorie possono avere " -"relazioni gerarchiche con altre categorie, supportando le relazioni genitore-" -"figlio. La classe include campi per i metadati e per la rappresentazione " -"visiva, che servono come base per le funzionalità legate alle categorie. " -"Questa classe viene tipicamente utilizzata per definire e gestire le " -"categorie di prodotti o altri raggruppamenti simili all'interno di " -"un'applicazione, consentendo agli utenti o agli amministratori di " +"relazioni gerarchiche con altre categorie, supportando le relazioni " +"genitore-figlio. La classe include campi per i metadati e per la " +"rappresentazione visiva, che servono come base per le funzionalità legate " +"alle categorie. Questa classe viene tipicamente utilizzata per definire e " +"gestire le categorie di prodotti o altri raggruppamenti simili all'interno " +"di un'applicazione, consentendo agli utenti o agli amministratori di " "specificare il nome, la descrizione e la gerarchia delle categorie, nonché " "di assegnare attributi come immagini, tag o priorità." @@ -1803,13 +1797,14 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" "Rappresenta un oggetto Marchio nel sistema. Questa classe gestisce le " "informazioni e gli attributi relativi a un marchio, tra cui il nome, il " "logo, la descrizione, le categorie associate, uno slug unico e l'ordine di " -"priorità. Permette di organizzare e rappresentare i dati relativi al marchio " -"all'interno dell'applicazione." +"priorità. Permette di organizzare e rappresentare i dati relativi al marchio" +" all'interno dell'applicazione." #: engine/core/models.py:448 msgid "name of this brand" @@ -1853,8 +1848,8 @@ msgstr "Categorie" #: engine/core/models.py:508 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 " @@ -1862,10 +1857,10 @@ msgid "" msgstr "" "Rappresenta lo stock di un prodotto gestito nel sistema. Questa classe " "fornisce dettagli sulla relazione tra fornitori, prodotti e informazioni " -"sulle scorte, oltre a proprietà legate all'inventario come prezzo, prezzo di " -"acquisto, quantità, SKU e asset digitali. Fa parte del sistema di gestione " -"dell'inventario per consentire il monitoraggio e la valutazione dei prodotti " -"disponibili presso i vari fornitori." +"sulle scorte, oltre a proprietà legate all'inventario come prezzo, prezzo di" +" acquisto, quantità, SKU e asset digitali. Fa parte del sistema di gestione " +"dell'inventario per consentire il monitoraggio e la valutazione dei prodotti" +" disponibili presso i vari fornitori." #: engine/core/models.py:520 msgid "the vendor supplying this product stock" @@ -1950,8 +1945,8 @@ msgstr "" "sistema che gestisce il commercio elettronico o l'inventario. Questa classe " "interagisce con i modelli correlati (come Category, Brand e ProductTag) e " "gestisce la cache per le proprietà a cui si accede di frequente, per " -"migliorare le prestazioni. Viene utilizzata per definire e manipolare i dati " -"dei prodotti e le informazioni ad essi associate all'interno di " +"migliorare le prestazioni. Viene utilizzata per definire e manipolare i dati" +" dei prodotti e le informazioni ad essi associate all'interno di " "un'applicazione." #: engine/core/models.py:585 @@ -2007,16 +2002,16 @@ msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" "Rappresenta un attributo nel sistema. Questa classe viene utilizzata per " -"definire e gestire gli attributi, che sono dati personalizzabili che possono " -"essere associati ad altre entità. Gli attributi hanno categorie, gruppi, " -"tipi di valori e nomi associati. Il modello supporta diversi tipi di valori, " -"tra cui stringa, intero, float, booleano, array e oggetto. Ciò consente una " -"strutturazione dinamica e flessibile dei dati." +"definire e gestire gli attributi, che sono dati personalizzabili che possono" +" essere associati ad altre entità. Gli attributi hanno categorie, gruppi, " +"tipi di valori e nomi associati. Il modello supporta diversi tipi di valori," +" tra cui stringa, intero, float, booleano, array e oggetto. Ciò consente una" +" strutturazione dinamica e flessibile dei dati." #: engine/core/models.py:733 msgid "group of this attribute" @@ -2079,9 +2074,9 @@ msgstr "Attributo" #: engine/core/models.py:777 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 " @@ -2103,14 +2098,14 @@ msgstr "Il valore specifico per questo attributo" #: engine/core/models.py:815 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." @@ -2153,11 +2148,11 @@ msgid "" "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 " @@ -2230,13 +2225,13 @@ msgid "" "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." @@ -2254,14 +2249,14 @@ msgstr "Non risolto" #: engine/core/models.py:1014 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 " @@ -2335,8 +2330,8 @@ 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 " @@ -2353,7 +2348,8 @@ msgstr "Identificatore del codice promozionale" #: engine/core/models.py:1095 msgid "fixed discount amount applied if percent is not used" -msgstr "Importo fisso dello sconto applicato se non si utilizza la percentuale" +msgstr "" +"Importo fisso dello sconto applicato se non si utilizza la percentuale" #: engine/core/models.py:1096 msgid "fixed discount amount" @@ -2414,8 +2410,8 @@ msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." msgstr "" -"È necessario definire un solo tipo di sconto (importo o percentuale), ma non " -"entrambi o nessuno." +"È necessario definire un solo tipo di sconto (importo o percentuale), ma non" +" entrambi o nessuno." #: engine/core/models.py:1171 msgid "promocode already used" @@ -2430,18 +2426,19 @@ msgstr "Tipo di sconto non valido per il codice promozionale {self.uuid}!" msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" "Rappresenta un ordine effettuato da un utente. Questa classe modella un " -"ordine all'interno dell'applicazione, includendo i suoi vari attributi, come " -"le informazioni di fatturazione e spedizione, lo stato, l'utente associato, " -"le notifiche e le operazioni correlate. Gli ordini possono avere prodotti " +"ordine all'interno dell'applicazione, includendo i suoi vari attributi, come" +" le informazioni di fatturazione e spedizione, lo stato, l'utente associato," +" le notifiche e le operazioni correlate. Gli ordini possono avere prodotti " "associati, possono essere applicate promozioni, impostati indirizzi e " "aggiornati i dettagli di spedizione o fatturazione. Allo stesso modo, la " -"funzionalità supporta la gestione dei prodotti nel ciclo di vita dell'ordine." +"funzionalità supporta la gestione dei prodotti nel ciclo di vita " +"dell'ordine." #: engine/core/models.py:1213 msgid "the billing address used for this order" @@ -2605,8 +2602,8 @@ msgstr "" "per catturare e memorizzare i commenti degli utenti su prodotti specifici " "che hanno acquistato. Contiene attributi per memorizzare i commenti degli " "utenti, un riferimento al prodotto correlato nell'ordine e una valutazione " -"assegnata dall'utente. La classe utilizza campi del database per modellare e " -"gestire efficacemente i dati di feedback." +"assegnata dall'utente. La classe utilizza campi del database per modellare e" +" gestire efficacemente i dati di feedback." #: engine/core/models.py:1711 msgid "user-provided comments about their experience with the product" @@ -2617,7 +2614,8 @@ msgid "feedback comments" msgstr "Commenti di feedback" #: engine/core/models.py:1719 -msgid "references the specific product in an order that this feedback is about" +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." @@ -2763,9 +2761,9 @@ 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 " @@ -2787,8 +2785,8 @@ msgstr "Scaricamento" msgid "" "you must provide a comment, rating, and order product uuid to add feedback." msgstr "" -"per aggiungere un feedback è necessario fornire un commento, una valutazione " -"e l'uuid del prodotto dell'ordine." +"per aggiungere un feedback è necessario fornire un commento, una valutazione" +" e l'uuid del prodotto dell'ordine." #: engine/core/sitemaps.py:25 msgid "Home" @@ -2819,8 +2817,8 @@ msgid "No customer activity in the last 30 days." msgstr "Nessuna attività del cliente negli ultimi 30 giorni." #: engine/core/templates/admin/dashboard/_daily_sales.html:5 -msgid "Daily sales (30d)" -msgstr "Vendite giornaliere (30d)" +msgid "Daily sales" +msgstr "Vendite giornaliere" #: engine/core/templates/admin/dashboard/_daily_sales.html:59 msgid "Orders (FINISHED)" @@ -2831,6 +2829,7 @@ msgid "Gross revenue" msgstr "Ricavo lordo" #: engine/core/templates/admin/dashboard/_daily_sales.html:106 +#: engine/core/templates/admin/dashboard/_kpis.html:20 msgid "Orders" msgstr "Ordini" @@ -2838,6 +2837,10 @@ msgstr "Ordini" msgid "Gross" msgstr "Gross" +#: engine/core/templates/admin/dashboard/_header.html:3 +msgid "Dashboard" +msgstr "Cruscotto" + #: engine/core/templates/admin/dashboard/_income_overview.html:7 msgid "Income overview" msgstr "Panoramica delle entrate" @@ -2866,20 +2869,32 @@ msgid "No data" msgstr "Nessuna data" #: engine/core/templates/admin/dashboard/_kpis.html:6 -msgid "Revenue (gross, 30d)" -msgstr "Ricavi (lordi, 30d)" +msgid "GMV" +msgstr "GMV" -#: engine/core/templates/admin/dashboard/_kpis.html:15 -msgid "Revenue (net, 30d)" -msgstr "Ricavi (netti, 30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:34 +msgid "AOV" +msgstr "AOV" -#: engine/core/templates/admin/dashboard/_kpis.html:24 -msgid "Returns (30d)" -msgstr "Restituzioni (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:48 +msgid "Net revenue" +msgstr "Ricavi netti" -#: engine/core/templates/admin/dashboard/_kpis.html:33 -msgid "Processed orders (30d)" -msgstr "Ordini evasi (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:62 +msgid "Refund rate" +msgstr "Tasso di rimborso" + +#: engine/core/templates/admin/dashboard/_kpis.html:73 +msgid "returned" +msgstr "Restituito" + +#: engine/core/templates/admin/dashboard/_low_stock.html:5 +msgid "Low stock" +msgstr "Stock ridotto" + +#: engine/core/templates/admin/dashboard/_low_stock.html:29 +msgid "No low stock items." +msgstr "Nessun articolo a basso stock." #: engine/core/templates/admin/dashboard/_most_returned.html:5 msgid "Most returned products (30d)" @@ -2894,11 +2909,11 @@ msgid "Most wished product" msgstr "Il prodotto più desiderato" #: engine/core/templates/admin/dashboard/_product_lists.html:33 -#: engine/core/templates/admin/dashboard/_product_lists.html:67 +#: engine/core/templates/admin/dashboard/_product_lists.html:68 msgid "No data yet." msgstr "Non ci sono ancora dati." -#: engine/core/templates/admin/dashboard/_product_lists.html:40 +#: engine/core/templates/admin/dashboard/_product_lists.html:41 msgid "Most popular product" msgstr "Il prodotto più popolare" @@ -2934,10 +2949,6 @@ msgstr "Nessuna vendita di categoria negli ultimi 30 giorni." msgid "Django site admin" msgstr "Amministratore del sito Django" -#: engine/core/templates/admin/index.html:20 -msgid "Dashboard" -msgstr "Cruscotto" - #: 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 @@ -2967,8 +2978,7 @@ msgstr "Hello %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" "Grazie per il vostro ordine #%(order.pk)s! Siamo lieti di informarla che " @@ -2997,8 +3007,8 @@ msgid "" "if you have any questions, feel free to contact our support at\n" " %(config.EMAIL_HOST_USER)s." msgstr "" -"Per qualsiasi domanda, non esitate a contattare il nostro supporto al numero " -"%(config.EMAIL_HOST_USER)s." +"Per qualsiasi domanda, non esitate a contattare il nostro supporto al numero" +" %(config.EMAIL_HOST_USER)s." #: engine/core/templates/digital_order_created_email.html:133 #, python-format @@ -3050,8 +3060,8 @@ msgid "" "if you have any questions, feel free to contact our support at\n" " %(contact_email)s." msgstr "" -"Per qualsiasi domanda, non esitate a contattare il nostro supporto al numero " -"%(contact_email)s." +"Per qualsiasi domanda, non esitate a contattare il nostro supporto al numero" +" %(contact_email)s." #: engine/core/templates/digital_order_delivered_email.html:165 #: engine/core/templates/promocode_granted_email.html:108 @@ -3083,8 +3093,7 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" "Grazie per il vostro ordine! Siamo lieti di confermare il suo acquisto. Di " @@ -3156,10 +3165,10 @@ msgstr "Il parametro NOMINATIM_URL deve essere configurato!" #, python-brace-format msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "" -"Le dimensioni dell'immagine non devono superare w{max_width} x h{max_height} " -"pixel" +"Le dimensioni dell'immagine non devono superare w{max_width} x h{max_height}" +" pixel" -#: engine/core/views.py:90 +#: engine/core/views.py:91 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." @@ -3168,7 +3177,7 @@ msgstr "" "XML. Assicura che la risposta includa l'intestazione del tipo di contenuto " "appropriato per XML." -#: engine/core/views.py:105 +#: engine/core/views.py:106 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " @@ -3178,17 +3187,17 @@ msgstr "" "funzione elabora la richiesta, recupera la risposta dettagliata della " "sitemap e imposta l'intestazione Content-Type per XML." -#: engine/core/views.py:140 +#: engine/core/views.py:141 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "" "Restituisce un elenco di lingue supportate e le informazioni corrispondenti." -#: engine/core/views.py:172 +#: engine/core/views.py:173 msgid "Returns the parameters of the website as a JSON object." msgstr "Restituisce i parametri del sito web come oggetto JSON." -#: engine/core/views.py:191 +#: engine/core/views.py:192 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." @@ -3196,11 +3205,11 @@ msgstr "" "Gestisce le operazioni di cache, come la lettura e l'impostazione dei dati " "della cache con una chiave e un timeout specificati." -#: engine/core/views.py:218 +#: engine/core/views.py:219 msgid "Handles `contact us` form submissions." msgstr "Gestisce l'invio del modulo `contatti`." -#: engine/core/views.py:239 +#: engine/core/views.py:240 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." @@ -3208,67 +3217,58 @@ msgstr "" "Gestisce le richieste di elaborazione e validazione degli URL dalle " "richieste POST in arrivo." -#: engine/core/views.py:279 +#: engine/core/views.py:280 msgid "Handles global search queries." msgstr "Gestisce le query di ricerca globali." -#: engine/core/views.py:294 +#: engine/core/views.py:295 msgid "Handles the logic of buying as a business without registration." msgstr "Gestisce la logica dell'acquisto come azienda senza registrazione." -#: engine/core/views.py:331 +#: engine/core/views.py:332 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Gestisce il download di una risorsa digitale associata a un ordine.\n" -"Questa funzione tenta di servire il file della risorsa digitale che si trova " -"nella directory di archiviazione del progetto. Se il file non viene trovato, " -"viene generato un errore HTTP 404 per indicare che la risorsa non è " -"disponibile." +"Questa funzione tenta di servire il file della risorsa digitale che si trova nella directory di archiviazione del progetto. Se il file non viene trovato, viene generato un errore HTTP 404 per indicare che la risorsa non è disponibile." -#: engine/core/views.py:342 +#: engine/core/views.py:343 msgid "order_product_uuid is required" msgstr "order_product_uuid è obbligatorio" -#: engine/core/views.py:349 +#: engine/core/views.py:350 msgid "order product does not exist" msgstr "ordine prodotto non esistente" -#: engine/core/views.py:352 +#: engine/core/views.py:353 msgid "you can only download the digital asset once" msgstr "È possibile scaricare l'asset digitale una sola volta" -#: engine/core/views.py:355 +#: engine/core/views.py:356 msgid "the order must be paid before downloading the digital asset" msgstr "l'ordine deve essere pagato prima di scaricare il bene digitale" -#: engine/core/views.py:361 +#: engine/core/views.py:362 msgid "the order product does not have a product" msgstr "Il prodotto dell'ordine non ha un prodotto" -#: engine/core/views.py:398 +#: engine/core/views.py:399 msgid "favicon not found" msgstr "favicon non trovata" -#: engine/core/views.py:403 +#: engine/core/views.py:404 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Gestisce le richieste per la favicon di un sito web.\n" -"Questa funzione tenta di servire il file favicon situato nella cartella " -"statica del progetto. Se il file favicon non viene trovato, viene generato " -"un errore HTTP 404 per indicare che la risorsa non è disponibile." +"Questa funzione tenta di servire il file favicon situato nella cartella statica del progetto. Se il file favicon non viene trovato, viene generato un errore HTTP 404 per indicare che la risorsa non è disponibile." -#: engine/core/views.py:415 +#: engine/core/views.py:416 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 " @@ -3276,11 +3276,11 @@ msgstr "" "indice dell'interfaccia di amministrazione di Django. Utilizza la funzione " "`redirect` di Django per gestire il reindirizzamento HTTP." -#: engine/core/views.py:428 +#: engine/core/views.py:429 msgid "Returns current version of the eVibes. " msgstr "Restituisce la versione corrente di eVibes." -#: engine/core/views.py:637 +#: engine/core/views.py:793 msgid "Returns custom variables for Dashboard. " msgstr "Restituisce le variabili personalizzate per Dashboard." @@ -3295,19 +3295,20 @@ 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." #: engine/core/viewsets.py:156 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." @@ -3324,16 +3325,16 @@ msgstr "" "dell'applicazione. Fornisce un insieme di endpoint API per interagire con i " "dati Attribute. Questa classe gestisce l'interrogazione, il filtraggio e la " "serializzazione degli oggetti Attribute, consentendo un controllo dinamico " -"sui dati restituiti, come il filtraggio per campi specifici o il recupero di " -"informazioni dettagliate o semplificate, a seconda della richiesta." +"sui dati restituiti, come il filtraggio per campi specifici o il recupero di" +" informazioni dettagliate o semplificate, a seconda della richiesta." #: engine/core/viewsets.py:194 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, " @@ -3365,9 +3366,9 @@ msgid "" "endpoints for Brand objects." msgstr "" "Rappresenta un insieme di viste per la gestione delle istanze del marchio. " -"Questa classe fornisce funzionalità per interrogare, filtrare e serializzare " -"gli oggetti Brand. Utilizza il framework ViewSet di Django per semplificare " -"l'implementazione di endpoint API per gli oggetti Brand." +"Questa classe fornisce funzionalità per interrogare, filtrare e serializzare" +" gli oggetti Brand. Utilizza il framework ViewSet di Django per semplificare" +" l'implementazione di endpoint API per gli oggetti Brand." #: engine/core/viewsets.py:438 msgid "" @@ -3382,8 +3383,8 @@ 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." @@ -3395,9 +3396,9 @@ msgid "" "actions. The purpose of this class is to provide streamlined access to " "Vendor-related resources through the Django REST framework." msgstr "" -"Rappresenta un insieme di viste per la gestione degli oggetti Vendor. Questo " -"insieme di viste consente di recuperare, filtrare e serializzare i dati del " -"fornitore. Definisce il queryset, le configurazioni dei filtri e le classi " +"Rappresenta un insieme di viste per la gestione degli oggetti Vendor. Questo" +" insieme di viste consente di recuperare, filtrare e serializzare i dati del" +" fornitore. Definisce il queryset, le configurazioni dei filtri e le classi " "di serializzazione utilizzate per gestire le diverse azioni. Lo scopo di " "questa classe è fornire un accesso semplificato alle risorse relative a " "Vendor attraverso il framework REST di Django." @@ -3407,14 +3408,14 @@ 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." @@ -3424,9 +3425,9 @@ msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" "ViewSet per la gestione degli ordini e delle operazioni correlate. Questa " @@ -3442,8 +3443,8 @@ msgstr "" msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "Fornisce un insieme di viste per la gestione delle entità OrderProduct. " @@ -3456,7 +3457,8 @@ msgstr "" #: engine/core/viewsets.py:879 msgid "Manages operations related to Product images in the application. " msgstr "" -"Gestisce le operazioni relative alle immagini dei prodotti nell'applicazione." +"Gestisce le operazioni relative alle immagini dei prodotti " +"nell'applicazione." #: engine/core/viewsets.py:892 msgid "" @@ -3478,8 +3480,8 @@ msgstr "Gestisce le operazioni relative ai dati delle scorte nel sistema." msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." @@ -3491,8 +3493,8 @@ msgstr "" "ViewSet facilita funzionalità quali l'aggiunta, la rimozione e le azioni di " "massa per i prodotti della lista dei desideri. I controlli delle " "autorizzazioni sono integrati per garantire che gli utenti possano gestire " -"solo la propria lista dei desideri, a meno che non vengano concessi permessi " -"espliciti." +"solo la propria lista dei desideri, a meno che non vengano concessi permessi" +" espliciti." #: engine/core/viewsets.py:1056 msgid "" @@ -3502,8 +3504,8 @@ msgid "" "different HTTP methods, serializer overrides, and permission handling based " "on the request context." msgstr "" -"Questa classe fornisce la funzionalità viewset per la gestione degli oggetti " -"`Address`. La classe AddressViewSet consente operazioni CRUD, filtri e " +"Questa classe fornisce la funzionalità viewset per la gestione degli oggetti" +" `Address`. La classe AddressViewSet consente operazioni CRUD, filtri e " "azioni personalizzate relative alle entità indirizzo. Include comportamenti " "specializzati per diversi metodi HTTP, override del serializzatore e " "gestione dei permessi in base al contesto della richiesta." diff --git a/engine/core/locale/ja_JP/LC_MESSAGES/django.mo b/engine/core/locale/ja_JP/LC_MESSAGES/django.mo index 3737757ce3cac4aa6d82cfb6aac27ab80d005a99..f1fa7cbcdb3a0add77bb2f6c64a3095f6910f28d 100644 GIT binary patch delta 14917 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 delta 14911 zcmZA82b@hu|HtvUR&Tr7VzphJ)mQHptFwCVtArqWcUgV)x@vTSgs?;pLexYe5|0o( zEQ_eo!V{AJ=X+;1FR%Z3y~cZfbLPyMGv(a7H_tPBdh$-Or+CS77UHYPD9Csxg3 z%q%}+Iu%u^F*7O}lNo1XSC28DVoKt_D;bjlQ&cu4HTq*V48rUfhRLuAX2h0Av!*vD z#eO)!7_S*bMh!f{0DOz|!KAKY%wi12vX3y8e z5aJeC2!~-1uEM=ZyvFP!!^4;XHSLYJU^(I=&KJ%iwd_cAMLpRtR0qajI-HFKaRqkA zQ%+ zH8!R;4sT)`JkZp70<|W-N3EILs44jeLoib_+tG5UIj@Wwq3Wm+YK%p2Xfx(tbG4d+ zw73b?&~D6wr;zn#5>Tr&Poyp1iz|tLL9LC!&FzScLd7wt5m|t0_cK(7_hKXubPlzM zbF^gq(~!yE(wLiA3b#@rpp`Mj@L+3WIDEGAss(U^vKxRWvM zFhv(*YEi#iS7VkFukUWm9<18anDbo!M-(GQe598#FYv0jw=pF-aiK3#@HajuF451J z4#Xk-jcGuG<345th))f)9qjapF`rPLdj^26p7i0+o2ZeU{w7P zE*_6se9_1tm>I}+^_s_If+;95*3MZoR0F*+74}E1;^BCLC!C0WJb9h*#uTT#K2xa0 zGy)6aS}cvHu@t_=lvs44eey8ON8AyMaDU?^Q;dSGsG+%xYVdEYjD;uJ7e-IaMLfZ| z3RUkQ>V0tsHG)CWcDt2C4S7BE$AzfHz8Gv3&@{%s44D-aXwJTO zC;ma*xaf2{WR)>5aX2Q!Ua0f^Q5_zOS|f8@ybO~QZ$mxlF4Xl$QSXD>s5S9)I^(Y= zeM5oX14(Aso~1`ssDx@b9CgDcuDmm9u6v_~d@O1NV^B9-jk?ix7w^Yl;!~Is?_pAW z<|UJY%q!Fl-lL`@-Avm+KGcm$p)RP4s^1WG;})n9=R1LRVOrdS+ULhnH~14Z1!?Bm4hLaM;!sS7Wibtg zV+b~N=RZNUGa5^4|L-J|3U8r$_7H1g`gyj;%}`I)6}74dyLc4phA}Q)glcCK7QvmU zSNpHH2{X*M_4lDh?ihN@lDSMq+bYchJ4YF?3UNa$jnhzbydMkWG1L=1z=D`&p}kQV z)O(>HX2fXJVqAj3xDE9_IFA`HVIkw+gv=WXMqtDuzJ}ouREI(r+aWHE5yUl7PdFVl z5(`ibEkh0IHdF`yi|TNyC3b2upz7sCjYwGx#gCUT{w2vQqd;?d1{>gSSRD&4wKwdA zn$tm;5yxYBoR7uvG=||T^ur>twj;$+*R{bM80F%LsPBezy=2Og`2yAOZ7hVZoVk|S zp{|SijOgRysTfSW#g(7IQp5?UeV=u?{gkVQd5F8C*48A{)NMqy=RHM6J-LIy=(oZS zO@7o1ClWPutuYAupcY-Ui)Udy;?1u7iStiPPr1IQsU3d|#LTD%4Mj%WYpRpUMnMbI zQ1!Pb%xKgc&%qM781)1vustSVd91n0uJ)0rdh1YY=SNfrE~9RE7ya=K>OLt~>&vV5 zKbc?(!mt>&LR~lsweRO+PF#%|se>4VzoI($5(Drr)b(jUwNF|Jb;C%kh}|$VE=RSy z1Jh{#A0ne0oW>k@2g{*ZV^?u`XLZyfjlc@n0k!xRqSnwcSN;m?5Eox-M{Ec-CtiYj zA>BiD$M|QZ;3);#k15vMhQm;=;+mKR8=)HRj#@+mP-|uiYH_Yc)!&JFKO96| zcM{d{tM2>*)Gm36!B}8}*Y4AZ4R($Op&I-Q^WZ^@!mC&mYizVr)erSV(^2*3V+mZ3 zT9g;DHm2NU+ii^6B~wvr=6h5JfA*45kAFwq@FnKO%$uzhumEuf7f(bD;Re*4A3?31 z=cp0z-@-Rr48oQ;0_)&8)QipkGrLIJV=%FI8W}ByEvUIZjJm-&)Rf%8(ipJS8jgjC zhoMGfmGiVKe~y(Y587t8Woy(M){9!KJ5jsjI?}$^q~2~DERTgb(FKd*bQkZ&P~vN- zhEsfQOf?M0GB^>{!8p`5yX(qxe_`Y1sHurT)jQyP=qqRbbM3Hm))+OUld%f!$1r?} zx>4bsc3XBtJ<$SGgU7KRzQ9^o4p;B>MLM6*9W; z2CBhFm>dK4+9%D5;l%Y&$3!m%vz1k^~y zq1M>12Q>d=k{+}-%8NCK8)7+(K{b2~^W$TziWv{tCvS$yh&x~!?1tI#W7J4a!yLE` z)8Z-A{Vrii{KHEo6`7F3cD070hBOMZ;UH{)Gf+?d6Y2@xp`IY`5&OhVP(wQmlj0QA z$jroyxDRvSIn;wBphn7@=4-pS%AlTPFscJ1QF9%Q>c~vg6RyWBxC2%1B<98+Fa)2V zo-E*~{Vb`8g6L!u!=Q-{np;N5{44@#3+w3^Dv0`C)K|cJBxH0N{_Vad46hW^RM^!S~ zx6M#<+Z|8R!;z>}TlIUp1{z>_;vT3s-f}FBx3D@r%5;Gr9f@09wB_gV6XN&S5(oZd z{RZ`5ftMKnRAj1OvU6PD*#aw3-U;X6QY?k}f95TigfF9bo(>MU%qx`gN>}*ah+gbM z`9r)z-0&(3nz-aO79jDu-xzKD9d+Mh*BSrJWX@f;+v6r`HUEWr@}L`b$O@t23YZD& zpc-iB;vU$Xcmzh#!816BxcDvV6R$@7c(p6uwln;$HQGx?`*I$J;C9p$e2=v;9YJti&folomARfwxbYZ5mw2<9kCkM?LvC)M8tQT9jv<_X~Nvz8j_}Y;RBtJ5XUhs^UXu>LMQB z3#SNbga)HJG67X@s*5*bM&j)*{u;Fnzr}7?uBgX!!KK(2UlsM*q3sgt@%>3P5Y^Mo z=#LjrPjCZoq96ZJKySc!R0o2J+Z%?U>X$`zu#PKlj;a^s;{K@ZJ;B9`y)Lr_Q*q*; z^Q7|vs(~x0hHp9_p*s2&bzMjakMB(w>Ku&KDc^_c*lTBU{v(5?C=k`2w;mZSnpUWx z8-coDrYm2Ls(8qG#+Co#;y+RKla{jAXGSf$LKuOyQRicvD^P#(ZL_i0d_zV<@)PR9 z`}TxMTG}<}EQG3888s!5sE!RsjZifDI_}DsyYkJb5&8o4fcsqeIiKvmi)7UB71UyS zg1SMvGS)I!l(;SG2GOXFE<|0o12uvtQP(H9I9ZrIU&vVvbzMtTM+T`}`#;)MScZC% z9jHaN7d6L^oSDmde18vA#c;|epf?BL1@^z@ z=4%QxmuFBz{0pj~yQo*_BWJRTc4Ts+I?@_70)4R?9(3h7DtUb0|4U$Z%G;tkZ~%4P z6;%5VE3yCe1kWkZPz6=CLstqFw?=K3{#XN7VFLb!YT!f_+u?JlC%TGykbG4=rZbkp z-Z&Q{@D=L1s?|Kczb|Tg$yB9aG^&BGup9n^8uD({ZO_M{I!>dcD72vohv z&NH)sG@0_Vx*c$~p^EpeQp0JvW+oL+t8#RTa(KltT{1~eKB^N(M zEmm)mmUb>Gp+=w!s-f|y2IiwK+>Gk+H?I5|>izHsY6Nq(vfH!`YUDmc)qjtw7uee4 z`yHSb>c&Tr^Ir3sjE2s?jU9}#bhsM_;W6xur8?L*S}gV_eut{xx1)WcRnAMO z5lh|4S`alQ;i$zp6m{K~SX}%64jBz$#?E%zHAcm=QH${us)1Bp>>nJJQA0Qg)!=5V zf$^wUZN9Gdi5sDBEuh-lhWd=TgL=;t@5cV`MrIrt-}ie|g<{?98*n&kpZew9DR|jgHpb>q!dO>+09z0rLw&Yn8fe=a z=yjP1s0QYu=5z^a8~)_Z-$lJAUZJ+tKhA7}>>tD}ap5$cKipz2LTjnq;XuSPA}I82Z4a3H1` zVMlBXs+}pQHL@1fp}>*q2>Y)G8Ev0Us1dk}x*+c;*AdjvHbPCwYE=C%QM=WQEYwK-$CW?BI>gz=*&BC8osY&IxDvfh$ox%)xiF2#+qv0@wTbUxH4L3#N8lq= zhYq3M@qeM7Jd$0sAE%?rYfiLlVF{|;J*c&lc9MsmZ}`wcjr5sG?Eflcl11BsTG*O+ z0+z*}u?VJ`Y(IX(&_k@FC8*<$<4e`e#vURNmx`B_xZ+m4-O3cB(*;@afTkp3j! zm3qal5x6>A%Efx#lZ8 zPwGitzZnNBPx_4akKt`=*yd(1ClYWg7wVWqyo$7qvL2-We@vxdi!0yfPB!_VUI6*( zTp#yASzh9O#IOHttSftyf&s1|gnTk8mBrPRr6r$&ypAR0Bgl^@--q-O@lQIzv4H#w z&b76n@85Nlom*78WLB^K3xJLvEWUsBQ}zsUt=+kWm_R%eE6~zK^8Lvl!DPg}$e+N( zgO63;@9-NbZ%@*(gOtbB`Bmphn-ce!ek1>sl*3i%fDK(<7Z)Wz+%?URh92;zR%VRuB;hly~#Ip*QgyGhbik~v*t(gpOe2uDn_bH z-DyeKV*?5JS;RcR2^4N1g^^!J8bhj0%y)9bw_3B4lz~)WVemd^t5qsk@rwTYnEJ&BVZ>0{dSW+hYHRmev{5Eb~=YffR}u|$;# zzQ;YJ#pL8)8wa4RF4ueSkq~hGGo5p`OL2`n`BRlay zg7P@u71qZnQVr5;%CC@Sk{`o$i%9K=b#%t+HfwgdGKJYl{YXEPPJU3nUi<$iSJ21V zi%PLHx|?__DUvjovUBb{S+j%u9PCT#;X1#JJl}rJ2-4T2^u#){k>88$NFzw^NHZvF zP3o`tZ$i>>nDi}$uSkVR&qz8taD&t~>-)EJZU^B@$lXuca4;X!lLfPST3wW*+fz_WgGCrqYq_ADQM>E>)aaBr(D;VRD+aw z94B9m;2Tl}(p%!{?tFiJ#wH%)UEy$7P=>e!H|RlJ%iX9EE+=m9>a20)3M-Mk#PPU+ zYb(0;#_A+TE8?$h*7x7tJNd5V{zF}%xJ_C}8pp|Yq|&aDpYbv28tE!&Iw_5>0loxK ze-bJ2C`;x9=`rag^=7zwo5|~#NIZwMlr%&=)=|Xr@4qoF_Xii1q|QiJ?|YS#{|BCM z?ti2R;+n4U|51LHd~eF8;die5rml0x6w37f&-sejdzycqx=K3#kko*aM?WZ2c`MR; z%2MC~%z=kUO{x0=b)+O+A~hw=p-yVf>6lH*OS(sDK=P+NKj#-G&j0TOJvmXC6Yt1> zcwBYCd{$okhlruOECbOlLk{>l%(SmQWwr$BvmD4 z@5$7&*U+K8qJjqviRv|EsJrG-^ZrTVdbT>9FPX26MIobpDb%9Zh+YGS_X;lDXUL$T zLyHBgar1BCz+S^_QQWIhpNGY5`@C7sxc6tqB*~BvyXpS!txpfn2rEVQ>EW5N7jt+5 z<2IdNn\n" "Language-Team: BRITISH ENGLISH \n" @@ -19,8 +19,7 @@ msgstr "ユニークID" #: engine/core/abstract.py:13 msgid "unique id is used to surely identify any database object" -msgstr "" -"ユニークIDは、データベースオブジェクトを確実に識別するために使用されます。" +msgstr "ユニークIDは、データベースオブジェクトを確実に識別するために使用されます。" #: engine/core/abstract.py:20 msgid "is active" @@ -28,10 +27,9 @@ msgstr "アクティブ" #: engine/core/abstract.py: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に設定された場合、このオブジェクトは必要なパーミッションのないユーザーには見えない。" #: engine/core/abstract.py:23 engine/core/choices.py:18 msgid "created" @@ -155,7 +153,8 @@ msgstr "配信" msgid "canceled" msgstr "キャンセル" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "失敗" @@ -193,8 +192,8 @@ msgid "" "negotiation. Language can be selected with Accept-Language and query " "parameter both." msgstr "" -"この API の OpenApi3 スキーマ。フォーマットはコンテントネゴシエーションで選択" -"できる。言語は Accept-Language とクエリパラメータで選択できる。" +"この API の OpenApi3 スキーマ。フォーマットはコンテントネゴシエーションで選択できる。言語は Accept-Language " +"とクエリパラメータで選択できる。" #: engine/core/docs/drf/views.py:44 engine/core/graphene/mutations.py:37 msgid "cache I/O" @@ -206,8 +205,7 @@ msgid "" "apply key, data and timeout with authentication to write data to cache." msgstr "" "許可されたデータをキャッシュから読み出すには、キーのみを適用する。\n" -"キャッシュにデータを書き込むには、認証付きのキー、データ、タイムアウトを適用" -"する。" +"キャッシュにデータを書き込むには、認証付きのキー、データ、タイムアウトを適用する。" #: engine/core/docs/drf/views.py:62 msgid "get a list of supported languages" @@ -241,9 +239,7 @@ msgstr "ビジネスとして注文を購入する" msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." -msgstr "" -"提供された `product` と `product_uuid` と `attributes` を使用して、ビジネスと" -"して注文を購入する。" +msgstr "提供された `product` と `product_uuid` と `attributes` を使用して、ビジネスとして注文を購入する。" #: engine/core/docs/drf/views.py:164 msgid "download a digital asset from purchased digital order" @@ -270,10 +266,9 @@ msgid "rewrite an existing attribute group saving non-editables" msgstr "既存の属性グループを書き換えて、編集不可能なものを保存する。" #: engine/core/docs/drf/viewsets.py:96 -msgid "rewrite some fields of an existing attribute group saving non-editables" -msgstr "" -"既存の属性グループのいくつかのフィールドを書き換え、編集不可能なものを保存す" -"る。" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" +msgstr "既存の属性グループのいくつかのフィールドを書き換え、編集不可能なものを保存する。" #: engine/core/docs/drf/viewsets.py:106 msgid "list all attributes (simple view)" @@ -297,8 +292,7 @@ msgstr "既存の属性を書き換える。" #: engine/core/docs/drf/viewsets.py:141 msgid "rewrite some fields of an existing attribute saving non-editables" -msgstr "" -"既存の属性のいくつかのフィールドを書き換え、編集不可能なものを保存する。" +msgstr "既存の属性のいくつかのフィールドを書き換え、編集不可能なものを保存する。" #: engine/core/docs/drf/viewsets.py:151 msgid "list all attribute values (simple view)" @@ -321,9 +315,9 @@ msgid "rewrite an existing attribute value saving non-editables" msgstr "既存の属性値を書き換える。" #: engine/core/docs/drf/viewsets.py:186 -msgid "rewrite some fields of an existing attribute value saving non-editables" -msgstr "" -"既存の属性値のいくつかのフィールドを書き換え、編集不可能な値を保存する。" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" +msgstr "既存の属性値のいくつかのフィールドを書き換え、編集不可能な値を保存する。" #: engine/core/docs/drf/viewsets.py:196 engine/core/docs/drf/viewsets.py:197 msgid "list all categories (simple view)" @@ -375,11 +369,10 @@ msgstr "スタッフ以外のユーザーについては、自分の注文のみ #: engine/core/docs/drf/viewsets.py:281 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" -"human_readable_id、order_products.product.name、order_products.product." -"partnumberの大文字小文字を区別しない部分文字列検索" +"human_readable_id、order_products.product.name、order_products.product.partnumberの大文字小文字を区別しない部分文字列検索" #: engine/core/docs/drf/viewsets.py:288 msgid "Filter orders with buy_time >= this ISO 8601 datetime" @@ -399,8 +392,7 @@ msgstr "人間が読み取れる正確な注文IDによるフィルタリング" #: engine/core/docs/drf/viewsets.py:308 msgid "Filter by user's email (case-insensitive exact match)" -msgstr "" -"ユーザーのEメールによるフィルタリング(大文字・小文字を区別しない完全一致)" +msgstr "ユーザーのEメールによるフィルタリング(大文字・小文字を区別しない完全一致)" #: engine/core/docs/drf/viewsets.py:313 msgid "Filter by user's UUID" @@ -408,19 +400,15 @@ msgstr "ユーザーのUUIDによるフィルタリング" #: engine/core/docs/drf/viewsets.py:318 msgid "Filter by order status (case-insensitive substring match)" -msgstr "" -"注文ステータスによるフィルタリング(大文字と小文字を区別しない部分文字列マッ" -"チ)" +msgstr "注文ステータスによるフィルタリング(大文字と小文字を区別しない部分文字列マッチ)" #: engine/core/docs/drf/viewsets.py:324 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" -"uuid、human_readable_id、user_email、user、status、created、modified、" -"buy_time、randomのいずれかによる順序。降順の場合は'-'をプレフィックスとしてつ" -"ける(例:'-buy_time')。" +"uuid、human_readable_id、user_email、user、status、created、modified、buy_time、randomのいずれかによる順序。降順の場合は'-'をプレフィックスとしてつける(例:'-buy_time')。" #: engine/core/docs/drf/viewsets.py:336 msgid "retrieve a single order (detailed view)" @@ -460,9 +448,8 @@ msgid "" "completed using the user's balance; if `force_payment` is used, a " "transaction is initiated." msgstr "" -"注文の購入を確定する。force_balance` が使用された場合、ユーザーの残高を使用し" -"て購入が完了します。 `force_payment` が使用された場合、トランザクションが開始" -"されます。" +"注文の購入を確定する。force_balance` が使用された場合、ユーザーの残高を使用して購入が完了します。 `force_payment` " +"が使用された場合、トランザクションが開始されます。" #: engine/core/docs/drf/viewsets.py:397 msgid "retrieve current pending order of a user" @@ -488,8 +475,7 @@ msgstr "注文に商品を追加する" msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." -msgstr "" -"指定した `product_uuid` と `attributes` を使用して、商品を注文に追加する。" +msgstr "指定した `product_uuid` と `attributes` を使用して、商品を注文に追加する。" #: engine/core/docs/drf/viewsets.py:429 msgid "add a list of products to order, quantities will not count" @@ -499,9 +485,7 @@ msgstr "数量はカウントされません。" msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." -msgstr "" -"指定された `product_uuid` と `attributes` を使用して、注文に商品のリストを追" -"加する。" +msgstr "指定された `product_uuid` と `attributes` を使用して、注文に商品のリストを追加する。" #: engine/core/docs/drf/viewsets.py:438 msgid "remove product from order" @@ -511,9 +495,7 @@ msgstr "注文から商品を削除する" msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." -msgstr "" -"指定された `product_uuid` と `attributes` を使用して、注文から商品を削除す" -"る。" +msgstr "指定された `product_uuid` と `attributes` を使用して、注文から商品を削除する。" #: engine/core/docs/drf/viewsets.py:447 msgid "remove product from order, quantities will not count" @@ -523,9 +505,7 @@ msgstr "注文から商品を削除すると、数量はカウントされませ msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" -msgstr "" -"指定された `product_uuid` と `attributes` を用いて、注文から商品のリストを削" -"除する。" +msgstr "指定された `product_uuid` と `attributes` を用いて、注文から商品のリストを削除する。" #: engine/core/docs/drf/viewsets.py:459 msgid "list all wishlists (simple view)" @@ -557,8 +537,7 @@ msgstr "既存の属性を書き換える。" #: engine/core/docs/drf/viewsets.py:496 msgid "rewrite some fields of an existing wishlist saving non-editables" -msgstr "" -"既存の属性のいくつかのフィールドを書き換え、編集不可能なものを保存する。" +msgstr "既存の属性のいくつかのフィールドを書き換え、編集不可能なものを保存する。" #: engine/core/docs/drf/viewsets.py:503 msgid "retrieve current pending wishlist of a user" @@ -582,8 +561,7 @@ msgstr "ウィッシュリストから商品を削除する" #: engine/core/docs/drf/viewsets.py:524 msgid "removes a product from an wishlist using the provided `product_uuid`" -msgstr "" -"指定された `product_uuid` を使ってウィッシュリストから商品を削除します。" +msgstr "指定された `product_uuid` を使ってウィッシュリストから商品を削除します。" #: engine/core/docs/drf/viewsets.py:532 msgid "add many products to wishlist" @@ -591,8 +569,7 @@ msgstr "ウィッシュリストに多くの商品を追加する" #: engine/core/docs/drf/viewsets.py:533 msgid "adds many products to an wishlist using the provided `product_uuids`" -msgstr "" -"指定された `product_uuids` を使ってウィッシュリストに多くの商品を追加する。" +msgstr "指定された `product_uuids` を使ってウィッシュリストに多くの商品を追加する。" #: engine/core/docs/drf/viewsets.py:541 msgid "remove many products from wishlist" @@ -601,34 +578,24 @@ msgstr "注文から商品を削除する" #: engine/core/docs/drf/viewsets.py:542 msgid "" "removes many products from an wishlist using the provided `product_uuids`" -msgstr "" -"指定された `product_uuids` を使ってウィッシュリストから多くの商品を削除する。" +msgstr "指定された `product_uuids` を使ってウィッシュリストから多くの商品を削除する。" #: engine/core/docs/drf/viewsets.py:549 msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "1つまたは複数の属性名/値のペアでフィルタリングします。 \n" "- シンタックス**:attr_name=method-value[;attr2=method2-value2]...`。\n" -"- メソッド** (省略された場合のデフォルトは `icontains`):`iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`.\n" -"- 値の型付け**:boolean, integer, float の場合は `true`/`false`; それ以外の場" -"合は文字列として扱う。 \n" -"- それ以外は文字列として扱われる。 **Base64**: `b64-` をプレフィックスとして" -"つけると、生の値を URL-safe base64-encode することができる。 \n" +"- メソッド** (省略された場合のデフォルトは `icontains`):`iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`.\n" +"- 値の型付け**:boolean, integer, float の場合は `true`/`false`; それ以外の場合は文字列として扱う。 \n" +"- それ以外は文字列として扱われる。 **Base64**: `b64-` をプレフィックスとしてつけると、生の値を URL-safe base64-encode することができる。 \n" "例 \n" "color=exact-red`、`size=gt-10`、`features=in-[\"wifi\", \"bluetooth\"]`、\n" "b64-description=icontains-aGVhdC1jb2xk`。" @@ -643,12 +610,10 @@ msgstr "(正確には)製品UUID" #: engine/core/docs/drf/viewsets.py:581 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"カンマ区切りの並べ替えフィールドのリスト。降順の場合は `-` をプレフィックスと" -"してつける。 \n" +"カンマ区切りの並べ替えフィールドのリスト。降順の場合は `-` をプレフィックスとしてつける。 \n" "**許可:** uuid, rating, name, slug, created, modified, price, random" #: engine/core/docs/drf/viewsets.py:598 engine/core/docs/drf/viewsets.py:599 @@ -675,9 +640,7 @@ msgstr "編集不可能なフィールドを保持したまま、既存の製品 #: engine/core/docs/drf/viewsets.py:647 engine/core/docs/drf/viewsets.py:648 msgid "" "update some fields of an existing product, preserving non-editable fields" -msgstr "" -"編集不可能なフィールドを保持したまま、既存の製品の一部のフィールドを更新す" -"る。" +msgstr "編集不可能なフィールドを保持したまま、既存の製品の一部のフィールドを更新する。" #: engine/core/docs/drf/viewsets.py:666 engine/core/docs/drf/viewsets.py:667 msgid "delete a product" @@ -722,8 +685,8 @@ msgstr "オートコンプリート住所入力" #: engine/core/docs/drf/viewsets.py:794 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" @@ -753,9 +716,7 @@ msgstr "既存のフィードバックを書き換える。" #: engine/core/docs/drf/viewsets.py:851 msgid "rewrite some fields of an existing feedback saving non-editables" -msgstr "" -"既存のフィードバックのいくつかのフィールドを書き換えて、編集不可能なものを保" -"存する。" +msgstr "既存のフィードバックのいくつかのフィールドを書き換えて、編集不可能なものを保存する。" #: engine/core/docs/drf/viewsets.py:861 msgid "list all order–product relations (simple view)" @@ -811,8 +772,7 @@ msgstr "編集不可の既存ブランドをリライトする" #: engine/core/docs/drf/viewsets.py:981 msgid "rewrite some fields of an existing brand saving non-editables" -msgstr "" -"編集不可能なフィールドを保存している既存ブランドのフィールドを書き換える。" +msgstr "編集不可能なフィールドを保存している既存ブランドのフィールドを書き換える。" #: engine/core/docs/drf/viewsets.py:1006 msgid "list all vendors (simple view)" @@ -836,9 +796,7 @@ msgstr "既存のベンダーを書き換え、編集不可能な部分を保存 #: engine/core/docs/drf/viewsets.py:1041 msgid "rewrite some fields of an existing vendor saving non-editables" -msgstr "" -"既存のベンダーのいくつかのフィールドを書き換えて、編集不可能なフィールドを保" -"存する。" +msgstr "既存のベンダーのいくつかのフィールドを書き換えて、編集不可能なフィールドを保存する。" #: engine/core/docs/drf/viewsets.py:1051 msgid "list all product images (simple view)" @@ -862,9 +820,7 @@ msgstr "既存の商品画像を書き換え、編集不可能な部分を保存 #: engine/core/docs/drf/viewsets.py:1086 msgid "rewrite some fields of an existing product image saving non-editables" -msgstr "" -"既存の商品画像のいくつかのフィールドを書き換えて、編集不可能な部分を保存す" -"る。" +msgstr "既存の商品画像のいくつかのフィールドを書き換えて、編集不可能な部分を保存する。" #: engine/core/docs/drf/viewsets.py:1096 msgid "list all promo codes (simple view)" @@ -888,9 +844,7 @@ msgstr "既存のプロモコードを書き換え、編集不可のプロモコ #: engine/core/docs/drf/viewsets.py:1131 msgid "rewrite some fields of an existing promo code saving non-editables" -msgstr "" -"既存のプロモコードの一部のフィールドを書き換えて、編集不可能な部分を保存す" -"る。" +msgstr "既存のプロモコードの一部のフィールドを書き換えて、編集不可能な部分を保存する。" #: engine/core/docs/drf/viewsets.py:1141 msgid "list all promotions (simple view)" @@ -914,9 +868,7 @@ msgstr "既存のプロモーションを書き換える。" #: engine/core/docs/drf/viewsets.py:1176 msgid "rewrite some fields of an existing promotion saving non-editables" -msgstr "" -"既存のプロモーションのいくつかのフィールドを書き換え、編集不可能な部分を保存" -"する。" +msgstr "既存のプロモーションのいくつかのフィールドを書き換え、編集不可能な部分を保存する。" #: engine/core/docs/drf/viewsets.py:1186 msgid "list all stocks (simple view)" @@ -940,9 +892,7 @@ msgstr "既存のストックレコードを書き換え、編集不可能なも #: engine/core/docs/drf/viewsets.py:1221 msgid "rewrite some fields of an existing stock record saving non-editables" -msgstr "" -"編集不可能なフィールドを保存している既存のストックレコードの一部のフィールド" -"を書き換える。" +msgstr "編集不可能なフィールドを保存している既存のストックレコードの一部のフィールドを書き換える。" #: engine/core/docs/drf/viewsets.py:1231 msgid "list all product tags (simple view)" @@ -966,8 +916,7 @@ msgstr "既存の商品タグを書き換え、編集不可能なものを保存 #: engine/core/docs/drf/viewsets.py:1266 msgid "rewrite some fields of an existing product tag saving non-editables" -msgstr "" -"既存の商品タグの一部のフィールドを書き換えて、編集不可能な部分を保存する。" +msgstr "既存の商品タグの一部のフィールドを書き換えて、編集不可能な部分を保存する。" #: engine/core/elasticsearch/__init__.py:122 #: engine/core/elasticsearch/__init__.py:570 @@ -1049,8 +998,7 @@ msgstr "SKU" #: 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がなければならない。" #: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" @@ -1118,7 +1066,7 @@ msgstr "キャッシュ・データ" msgid "camelized JSON data from the requested URL" msgstr "リクエストされたURLからキャメル化されたJSONデータ" -#: engine/core/graphene/mutations.py:67 engine/core/views.py:256 +#: engine/core/graphene/mutations.py:67 engine/core/views.py:257 msgid "only URLs starting with http(s):// are allowed" msgstr "http(s)://で始まるURLのみが許可されます。" @@ -1202,10 +1150,9 @@ msgstr "注文する" #: engine/core/graphene/mutations.py:516 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" -msgstr "" -"属性は、attr1=value1,attr2=value2のような形式の文字列として送信してください。" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" +msgstr "属性は、attr1=value1,attr2=value2のような形式の文字列として送信してください。" #: engine/core/graphene/mutations.py:549 msgid "add or delete a feedback for orderproduct" @@ -1279,7 +1226,8 @@ msgid "which attributes and values can be used for filtering this category." msgstr "このカテゴリのフィルタリングに使用できる属性と値。" #: engine/core/graphene/object_types.py:203 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "このカテゴリーの商品の最低価格と最高価格がある場合。" #: engine/core/graphene/object_types.py:205 @@ -1546,10 +1494,7 @@ msgid "" "parent group, forming a hierarchical structure. This can be useful for " "categorizing and managing attributes more effectively in acomplex system." msgstr "" -"属性グループを表し、階層化することができます。このクラスは、属性グループの管" -"理と整理に使用します。属性グループは親グループを持つことができ、階層構造を形" -"成します。これは、複雑なシステムで属性をより効果的に分類・管理するのに便利で" -"す。" +"属性グループを表し、階層化することができます。このクラスは、属性グループの管理と整理に使用します。属性グループは親グループを持つことができ、階層構造を形成します。これは、複雑なシステムで属性をより効果的に分類・管理するのに便利です。" #: engine/core/models.py:91 msgid "parent of this group" @@ -1577,12 +1522,8 @@ msgid "" "also maintains additional metadata and constraints, making it suitable for " "use in systems that interact with third-party vendors." msgstr "" -"外部ベンダーとその相互作用要件に関する情報を格納できるベンダー・エンティティ" -"を表します。Vendor クラスは、外部ベンダーに関連する情報を定義・管理するために" -"使用します。これは、ベンダーの名前、通信に必要な認証の詳細、ベンダーから取得" -"した商品に適用されるパーセンテージのマークアップを格納します。このモデルは、" -"追加のメタデータと制約も保持するため、サードパーティ・ベンダーとやり取りする" -"システムでの使用に適しています。" +"外部ベンダーとその相互作用要件に関する情報を格納できるベンダー・エンティティを表します。Vendor " +"クラスは、外部ベンダーに関連する情報を定義・管理するために使用します。これは、ベンダーの名前、通信に必要な認証の詳細、ベンダーから取得した商品に適用されるパーセンテージのマークアップを格納します。このモデルは、追加のメタデータと制約も保持するため、サードパーティ・ベンダーとやり取りするシステムでの使用に適しています。" #: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" @@ -1632,11 +1573,8 @@ msgid "" "display name. It supports operations exported through mixins and provides " "metadata customization for administrative purposes." msgstr "" -"製品を分類または識別するために使用される製品タグを表します。ProductTag クラス" -"は、内部タグ識別子とユーザーフレンドリーな表示名の組み合わせによって、製品を" -"一意に識別および分類するように設計されています。ミキシンを通じてエクスポート" -"される操作をサポートし、管理目的のためにメタデータのカスタマイズを提供しま" -"す。" +"製品を分類または識別するために使用される製品タグを表します。ProductTag " +"クラスは、内部タグ識別子とユーザーフレンドリーな表示名の組み合わせによって、製品を一意に識別および分類するように設計されています。ミキシンを通じてエクスポートされる操作をサポートし、管理目的のためにメタデータのカスタマイズを提供します。" #: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" @@ -1664,9 +1602,7 @@ msgid "" "tag that can be used to associate and classify products. It includes " "attributes for an internal tag identifier and a user-friendly display name." msgstr "" -"商品に使用されるカテゴリータグを表します。このクラスは、商品の関連付けと分類" -"に使用できるカテゴリタグをモデル化します。内部タグ識別子とユーザーフレンド" -"リーな表示名の属性が含まれます。" +"商品に使用されるカテゴリータグを表します。このクラスは、商品の関連付けと分類に使用できるカテゴリタグをモデル化します。内部タグ識別子とユーザーフレンドリーな表示名の属性が含まれます。" #: engine/core/models.py:254 msgid "category tag" @@ -1688,13 +1624,7 @@ msgid "" "hierarchy of categories, as well as assign attributes like images, tags, or " "priority." msgstr "" -"関連するアイテムを階層構造で整理し、グループ化するためのカテゴリ・エンティ" -"ティを表します。カテゴリは、親子関係をサポートする他のカテゴリとの階層関係を" -"持つことができます。このクラスには、カテゴリ関連機能の基盤となるメタデータお" -"よび視覚表現のためのフィールドが含まれます。このクラスは通常、アプリケーショ" -"ン内で商品カテゴリやその他の類似のグループ化を定義および管理するために使用さ" -"れ、ユーザや管理者がカテゴリの名前、説明、階層を指定したり、画像、タグ、優先" -"度などの属性を割り当てることができます。" +"関連するアイテムを階層構造で整理し、グループ化するためのカテゴリ・エンティティを表します。カテゴリは、親子関係をサポートする他のカテゴリとの階層関係を持つことができます。このクラスには、カテゴリ関連機能の基盤となるメタデータおよび視覚表現のためのフィールドが含まれます。このクラスは通常、アプリケーション内で商品カテゴリやその他の類似のグループ化を定義および管理するために使用され、ユーザや管理者がカテゴリの名前、説明、階層を指定したり、画像、タグ、優先度などの属性を割り当てることができます。" #: engine/core/models.py:274 msgid "upload an image representing this category" @@ -1745,12 +1675,10 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" -"システム内のブランド・オブジェクトを表します。このクラスは、名前、ロゴ、説" -"明、関連カテゴリ、一意のスラッグ、および優先順位など、ブランドに関連する情報" -"と属性を処理します。このクラスによって、アプリケーション内でブランド関連デー" -"タを整理し、表現することができます。" +"システム内のブランド・オブジェクトを表します。このクラスは、名前、ロゴ、説明、関連カテゴリ、一意のスラッグ、および優先順位など、ブランドに関連する情報と属性を処理します。このクラスによって、アプリケーション内でブランド関連データを整理し、表現することができます。" #: engine/core/models.py:448 msgid "name of this brand" @@ -1794,17 +1722,14 @@ msgstr "カテゴリー" #: engine/core/models.py:508 msgid "" -"Represents the stock of a product managed in the system. This class provides " -"details about the relationship between vendors, products, and their stock " +"Represents the stock of a product managed in the system. This class provides" +" details about the relationship between vendors, products, and their stock " "information, as well as inventory-related properties like price, purchase " "price, quantity, SKU, and digital assets. It is part of the inventory " "management system to allow tracking and evaluation of products available " "from various vendors." msgstr "" -"システムで管理されている商品の在庫を表します。このクラスは、ベンダー、商品、" -"およびそれらの在庫情報間の関係の詳細や、価格、購入価格、数量、SKU、デジタル資" -"産などの在庫関連プロパティを提供します。これは在庫管理システムの一部で、さま" -"ざまなベンダーから入手可能な製品の追跡と評価を可能にします。" +"システムで管理されている商品の在庫を表します。このクラスは、ベンダー、商品、およびそれらの在庫情報間の関係の詳細や、価格、購入価格、数量、SKU、デジタル資産などの在庫関連プロパティを提供します。これは在庫管理システムの一部で、さまざまなベンダーから入手可能な製品の追跡と評価を可能にします。" #: engine/core/models.py:520 msgid "the vendor supplying this product stock" @@ -1882,13 +1807,9 @@ msgid "" "properties to improve performance. It is used to define and manipulate " "product data and its associated information within an application." msgstr "" -"カテゴリ、ブランド、タグ、デジタルステータス、名前、説明、品番、スラッグなど" -"の属性を持つ製品を表します。評価、フィードバック数、価格、数量、注文総数を取" -"得するための関連ユーティリティ・プロパティを提供します。電子商取引や在庫管理" -"を扱うシステムで使用するように設計されています。このクラスは、関連するモデル " -"(Category、Brand、ProductTag など) と相互作用し、パフォーマンスを向上させるた" -"めに、頻繁にアクセスされるプロパティのキャッシュを管理します。アプリケーショ" -"ン内で商品データとその関連情報を定義し、操作するために使用されます。" +"カテゴリ、ブランド、タグ、デジタルステータス、名前、説明、品番、スラッグなどの属性を持つ製品を表します。評価、フィードバック数、価格、数量、注文総数を取得するための関連ユーティリティ・プロパティを提供します。電子商取引や在庫管理を扱うシステムで使用するように設計されています。このクラスは、関連するモデル" +" (Category、Brand、ProductTag など) " +"と相互作用し、パフォーマンスを向上させるために、頻繁にアクセスされるプロパティのキャッシュを管理します。アプリケーション内で商品データとその関連情報を定義し、操作するために使用されます。" #: engine/core/models.py:585 msgid "category this product belongs to" @@ -1943,16 +1864,12 @@ msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" -"システム内の属性を表します。このクラスは、属性を定義および管理するために使用" -"されます。属性は、他のエンティティに関連付けることができる、カスタマイズ可能" -"なデータの部分です。属性には、関連するカテゴリ、グループ、値型、および名前が" -"あります。このモデルは、string、integer、float、boolean、array、object などの" -"複数の型の値をサポートしています。これにより、動的で柔軟なデータ構造化が可能" -"になります。" +"システム内の属性を表します。このクラスは、属性を定義および管理するために使用されます。属性は、他のエンティティに関連付けることができる、カスタマイズ可能なデータの部分です。属性には、関連するカテゴリ、グループ、値型、および名前があります。このモデルは、string、integer、float、boolean、array、object" +" などの複数の型の値をサポートしています。これにより、動的で柔軟なデータ構造化が可能になります。" #: engine/core/models.py:733 msgid "group of this attribute" @@ -2013,12 +1930,11 @@ msgstr "属性" #: engine/core/models.py:777 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" -"製品にリンクされている属性の特定の値を表します。これは、「属性」を一意の" -"「値」にリンクし、製品特性のより良い編成と動的な表現を可能にします。" +"製品にリンクされている属性の特定の値を表します。これは、「属性」を一意の「値」にリンクし、製品特性のより良い編成と動的な表現を可能にします。" #: engine/core/models.py:788 msgid "attribute of this value" @@ -2035,15 +1951,12 @@ msgstr "この属性の具体的な値" #: engine/core/models.py:815 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" -"システム内の商品に関連付けられた商品画像を表します。このクラスは商品の画像を" -"管理するために設計されており、画像ファイルのアップロード、特定の商品との関連" -"付け、表示順の決定などの機能を提供します。また、画像の代替テキストによるアク" -"セシビリティ機能も備えています。" +"システム内の商品に関連付けられた商品画像を表します。このクラスは商品の画像を管理するために設計されており、画像ファイルのアップロード、特定の商品との関連付け、表示順の決定などの機能を提供します。また、画像の代替テキストによるアクセシビリティ機能も備えています。" #: engine/core/models.py:826 msgid "provide alternative text for the image for accessibility" @@ -2083,14 +1996,10 @@ msgid "" "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" -"割引を伴う商品の販促キャンペーンを表します。このクラスは、商品に対してパーセ" -"ンテージベースの割引を提供する販促キャンペーンを定義および管理するために使用" -"します。このクラスには、割引率を設定し、プロモーションの詳細を提供し、該当す" -"る商品にリンクするための属性が含まれます。商品カタログと統合して、キャンペー" -"ンの対象商品を決定します。" +"割引を伴う商品の販促キャンペーンを表します。このクラスは、商品に対してパーセンテージベースの割引を提供する販促キャンペーンを定義および管理するために使用します。このクラスには、割引率を設定し、プロモーションの詳細を提供し、該当する商品にリンクするための属性が含まれます。商品カタログと統合して、キャンペーンの対象商品を決定します。" #: engine/core/models.py:880 msgid "percentage discount for the selected products" @@ -2131,10 +2040,7 @@ msgid "" "operations such as adding and removing products, as well as supporting " "operations for adding and removing multiple products at once." msgstr "" -"希望する商品を保存・管理するためのユーザーのウィッシュリストを表します。この" -"クラスは、商品のコレクションを管理する機能を提供し、商品の追加や削除などの操" -"作をサポートし、複数の商品を一度に追加したり削除したりする操作をサポートしま" -"す。" +"希望する商品を保存・管理するためのユーザーのウィッシュリストを表します。このクラスは、商品のコレクションを管理する機能を提供し、商品の追加や削除などの操作をサポートし、複数の商品を一度に追加したり削除したりする操作をサポートします。" #: engine/core/models.py:926 msgid "products that the user has marked as wanted" @@ -2158,14 +2064,10 @@ msgid "" "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." msgstr "" -"商品に関連付けられたドキュメンタリーのレコードを表します。このクラスは、ファ" -"イルのアップロードとそのメタデータを含む、特定の商品に関連するドキュメンタ" -"リーに関する情報を格納するために使用されます。ドキュメントファイルのファイル" -"タイプと保存パスを処理するメソッドとプロパティが含まれています。特定のミック" -"スインから機能を拡張し、追加のカスタム機能を提供します。" +"商品に関連付けられたドキュメンタリーのレコードを表します。このクラスは、ファイルのアップロードとそのメタデータを含む、特定の商品に関連するドキュメンタリーに関する情報を格納するために使用されます。ドキュメントファイルのファイルタイプと保存パスを処理するメソッドとプロパティが含まれています。特定のミックスインから機能を拡張し、追加のカスタム機能を提供します。" #: engine/core/models.py:998 msgid "documentary" @@ -2181,23 +2083,20 @@ msgstr "未解決" #: engine/core/models.py:1014 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" -"場所の詳細とユーザーとの関連付けを含む住所エンティティを表します。地理データ" -"および住所データを保存する機能と、ジオコーディングサービスとの統合機能を提供" -"します。このクラスは、street、city、region、country、geolocation (longitude " -"and latitude) のようなコンポーネントを含む詳細な住所情報を格納するように設計" -"されています。ジオコーディング API との統合をサポートしており、 生の API レス" -"ポンスを保存してさらなる処理や検査を行うことができます。また、このクラスは住" -"所とユーザを関連付けることができ、 パーソナライズされたデータの取り扱いを容易" -"にします。" +"場所の詳細とユーザーとの関連付けを含む住所エンティティを表します。地理データおよび住所データを保存する機能と、ジオコーディングサービスとの統合機能を提供します。このクラスは、street、city、region、country、geolocation" +" (longitude and latitude) のようなコンポーネントを含む詳細な住所情報を格納するように設計されています。ジオコーディング API" +" との統合をサポートしており、 生の API " +"レスポンスを保存してさらなる処理や検査を行うことができます。また、このクラスは住所とユーザを関連付けることができ、 " +"パーソナライズされたデータの取り扱いを容易にします。" #: engine/core/models.py:1029 msgid "address line for the customer" @@ -2260,11 +2159,9 @@ msgid "" "any), and status of its usage. It includes functionality to validate and " "apply the promo code to an order while ensuring constraints are met." msgstr "" -"割引に使用できるプロモーションコードを表し、その有効期間、割引の種類、適用を" -"管理します。PromoCode クラスは、一意の識別子、割引のプロパティ (金額または" -"パーセンテージ)、有効期間、関連するユーザ (もしあれば)、および使用状況など、" -"プロモーションコードに関する詳細を格納します。これは、制約が満たされているこ" -"とを保証しながら、プロモコードを検証し、注文に適用する機能を含んでいます。" +"割引に使用できるプロモーションコードを表し、その有効期間、割引の種類、適用を管理します。PromoCode クラスは、一意の識別子、割引のプロパティ " +"(金額またはパーセンテージ)、有効期間、関連するユーザ " +"(もしあれば)、および使用状況など、プロモーションコードに関する詳細を格納します。これは、制約が満たされていることを保証しながら、プロモコードを検証し、注文に適用する機能を含んでいます。" #: engine/core/models.py:1087 msgid "unique code used by a user to redeem a discount" @@ -2334,9 +2231,7 @@ msgstr "プロモコード" msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." -msgstr "" -"割引の種類は1つだけ(金額またはパーセント)定義されるべきで、両方またはどちら" -"も定義してはならない。" +msgstr "割引の種類は1つだけ(金額またはパーセント)定義されるべきで、両方またはどちらも定義してはならない。" #: engine/core/models.py:1171 msgid "promocode already used" @@ -2351,16 +2246,12 @@ msgstr "プロモコード {self.uuid} の割引タイプが無効です!" msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" -"ユーザーによる注文を表します。このクラスは、請求や配送情報、ステータス、関連" -"するユーザ、通知、関連する操作などのさまざまな属性を含む、アプリケーション内" -"の注文をモデル化します。注文は関連する商品を持つことができ、プロモーションを" -"適用し、住所を設定し、配送または請求の詳細を更新することができます。同様に、" -"注文のライフサイクルにおける商品の管理もサポートします。" +"ユーザーによる注文を表します。このクラスは、請求や配送情報、ステータス、関連するユーザ、通知、関連する操作などのさまざまな属性を含む、アプリケーション内の注文をモデル化します。注文は関連する商品を持つことができ、プロモーションを適用し、住所を設定し、配送または請求の詳細を更新することができます。同様に、注文のライフサイクルにおける商品の管理もサポートします。" #: engine/core/models.py:1213 msgid "the billing address used for this order" @@ -2392,8 +2283,7 @@ msgstr "注文状況" #: engine/core/models.py:1243 engine/core/models.py:1769 msgid "json structure of notifications to display to users" -msgstr "" -"ユーザーに表示する通知のJSON構造、管理UIではテーブルビューが使用されます。" +msgstr "ユーザーに表示する通知のJSON構造、管理UIではテーブルビューが使用されます。" #: engine/core/models.py:1249 msgid "json representation of order attributes for this order" @@ -2493,17 +2383,13 @@ msgstr "注文を完了するための資金不足" msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" -msgstr "" -"ご登録がない場合はご購入いただけませんので、以下の情報をお知らせください:お" -"客様のお名前、お客様のEメール、お客様の電話番号" +msgstr "ご登録がない場合はご購入いただけませんので、以下の情報をお知らせください:お客様のお名前、お客様のEメール、お客様の電話番号" #: engine/core/models.py:1584 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" -msgstr "" -"支払方法が無効です:{available_payment_methods}からの{payment_method}が無効で" -"す!" +msgstr "支払方法が無効です:{available_payment_methods}からの{payment_method}が無効です!" #: engine/core/models.py:1699 msgid "" @@ -2513,11 +2399,7 @@ msgid "" "product in the order, and a user-assigned rating. The class uses database " "fields to effectively model and manage feedback data." msgstr "" -"製品に対するユーザのフィードバックを管理します。このクラスは、購入した特定の" -"商品に対するユーザのフィードバックを取得し、保存するために設計されています。" -"ユーザのコメント、注文の関連商品への参照、そしてユーザが割り当てた評価を保存" -"する属性を含みます。このクラスは、フィードバックデータを効果的にモデル化し、" -"管理するためにデータベースフィールドを使用します。" +"製品に対するユーザのフィードバックを管理します。このクラスは、購入した特定の商品に対するユーザのフィードバックを取得し、保存するために設計されています。ユーザのコメント、注文の関連商品への参照、そしてユーザが割り当てた評価を保存する属性を含みます。このクラスは、フィードバックデータを効果的にモデル化し、管理するためにデータベースフィールドを使用します。" #: engine/core/models.py:1711 msgid "user-provided comments about their experience with the product" @@ -2528,7 +2410,8 @@ msgid "feedback comments" msgstr "フィードバック・コメント" #: engine/core/models.py:1719 -msgid "references the specific product in an order that this feedback is about" +msgid "" +"references the specific product in an order that this feedback is about" msgstr "このフィードバックが対象としている注文の特定の製品を参照する。" #: engine/core/models.py:1720 @@ -2555,13 +2438,7 @@ msgid "" "download URL for digital products. The model integrates with the Order and " "Product models and stores a reference to them." msgstr "" -"注文に関連する商品とその属性を表す。OrderProductモデルは、購入価格、数量、商" -"品属性、ステータスなどの詳細を含む、注文の一部である商品に関する情報を保持し" -"ます。ユーザーや管理者への通知を管理し、商品残高の返却やフィードバックの追加" -"などの操作を処理します。このモデルはまた、合計価格の計算やデジタル商品のダウ" -"ンロードURLの生成など、ビジネスロジックをサポートするメソッドやプロパティも提" -"供します。このモデルはOrderモデルとProductモデルと統合され、それらへの参照を" -"保存します。" +"注文に関連する商品とその属性を表す。OrderProductモデルは、購入価格、数量、商品属性、ステータスなどの詳細を含む、注文の一部である商品に関する情報を保持します。ユーザーや管理者への通知を管理し、商品残高の返却やフィードバックの追加などの操作を処理します。このモデルはまた、合計価格の計算やデジタル商品のダウンロードURLの生成など、ビジネスロジックをサポートするメソッドやプロパティも提供します。このモデルはOrderモデルとProductモデルと統合され、それらへの参照を保存します。" #: engine/core/models.py:1757 msgid "the price paid by the customer for this product at purchase time" @@ -2669,15 +2546,12 @@ msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" -"注文に関連するデジタル資産のダウンロード機能を表します。DigitalAssetDownload" -"クラスは、注文商品に関連するダウンロードを管理し、アクセスする機能を提供しま" -"す。このクラスは、関連する注文商品、ダウンロード数、およびアセットが公開され" -"ているかどうかの情報を保持します。関連する注文が完了したステータスのときに、" -"アセットをダウンロードするための URL を生成するメソッドも含まれています。" +"注文に関連するデジタル資産のダウンロード機能を表します。DigitalAssetDownloadクラスは、注文商品に関連するダウンロードを管理し、アクセスする機能を提供します。このクラスは、関連する注文商品、ダウンロード数、およびアセットが公開されているかどうかの情報を保持します。関連する注文が完了したステータスのときに、アセットをダウンロードするための" +" URL を生成するメソッドも含まれています。" #: engine/core/models.py:1961 msgid "download" @@ -2690,9 +2564,7 @@ msgstr "ダウンロード" #: engine/core/serializers/utility.py:89 msgid "" "you must provide a comment, rating, and order product uuid to add feedback." -msgstr "" -"フィードバックを追加するには、コメント、評価、および注文商品の uuid を入力す" -"る必要があります。" +msgstr "フィードバックを追加するには、コメント、評価、および注文商品の uuid を入力する必要があります。" #: engine/core/sitemaps.py:25 msgid "Home" @@ -2723,8 +2595,8 @@ msgid "No customer activity in the last 30 days." msgstr "過去30日間に顧客の活動がない。" #: engine/core/templates/admin/dashboard/_daily_sales.html:5 -msgid "Daily sales (30d)" -msgstr "日販(30日)" +msgid "Daily sales" +msgstr "デイリーセールス" #: engine/core/templates/admin/dashboard/_daily_sales.html:59 msgid "Orders (FINISHED)" @@ -2735,6 +2607,7 @@ msgid "Gross revenue" msgstr "総収入" #: engine/core/templates/admin/dashboard/_daily_sales.html:106 +#: engine/core/templates/admin/dashboard/_kpis.html:20 msgid "Orders" msgstr "受注状況" @@ -2742,6 +2615,10 @@ msgstr "受注状況" msgid "Gross" msgstr "グロス" +#: engine/core/templates/admin/dashboard/_header.html:3 +msgid "Dashboard" +msgstr "ダッシュボード" + #: engine/core/templates/admin/dashboard/_income_overview.html:7 msgid "Income overview" msgstr "収入概要" @@ -2770,20 +2647,32 @@ msgid "No data" msgstr "日付なし" #: engine/core/templates/admin/dashboard/_kpis.html:6 -msgid "Revenue (gross, 30d)" -msgstr "収入(グロス、30d)" +msgid "GMV" +msgstr "GMV" -#: engine/core/templates/admin/dashboard/_kpis.html:15 -msgid "Revenue (net, 30d)" -msgstr "収入(純額、30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:34 +msgid "AOV" +msgstr "AOV" -#: engine/core/templates/admin/dashboard/_kpis.html:24 -msgid "Returns (30d)" -msgstr "リターンズ(30日)" +#: engine/core/templates/admin/dashboard/_kpis.html:48 +msgid "Net revenue" +msgstr "純収入" -#: engine/core/templates/admin/dashboard/_kpis.html:33 -msgid "Processed orders (30d)" -msgstr "処理済み注文 (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:62 +msgid "Refund rate" +msgstr "払い戻し率" + +#: engine/core/templates/admin/dashboard/_kpis.html:73 +msgid "returned" +msgstr "返品" + +#: engine/core/templates/admin/dashboard/_low_stock.html:5 +msgid "Low stock" +msgstr "在庫僅少" + +#: engine/core/templates/admin/dashboard/_low_stock.html:29 +msgid "No low stock items." +msgstr "在庫の少ない商品はありません。" #: engine/core/templates/admin/dashboard/_most_returned.html:5 msgid "Most returned products (30d)" @@ -2798,11 +2687,11 @@ msgid "Most wished product" msgstr "最も欲しい製品" #: engine/core/templates/admin/dashboard/_product_lists.html:33 -#: engine/core/templates/admin/dashboard/_product_lists.html:67 +#: engine/core/templates/admin/dashboard/_product_lists.html:68 msgid "No data yet." msgstr "まだデータはない。" -#: engine/core/templates/admin/dashboard/_product_lists.html:40 +#: engine/core/templates/admin/dashboard/_product_lists.html:41 msgid "Most popular product" msgstr "最も人気のある製品" @@ -2838,10 +2727,6 @@ msgstr "過去30日間にカテゴリー別売上なし。" msgid "Django site admin" msgstr "Djangoサイト管理者" -#: engine/core/templates/admin/index.html:20 -msgid "Dashboard" -msgstr "ダッシュボード" - #: 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 @@ -2871,12 +2756,9 @@ msgstr "こんにちは%(order.user.first_name)s、" #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" -msgstr "" -"ご注文ありがとうございます#%(order.pk)s!ご注文を承りましたことをお知らせいた" -"します。以下、ご注文の詳細です:" +msgstr "ご注文ありがとうございます#%(order.pk)s!ご注文を承りましたことをお知らせいたします。以下、ご注文の詳細です:" #: engine/core/templates/digital_order_created_email.html:112 #: engine/core/templates/digital_order_delivered_email.html:110 @@ -2899,9 +2781,7 @@ msgstr "合計価格" msgid "" "if you have any questions, feel free to contact our support at\n" " %(config.EMAIL_HOST_USER)s." -msgstr "" -"ご不明な点がございましたら、%(config.EMAIL_HOST_USER)sまでお気軽にお問い合わ" -"せください。" +msgstr "ご不明な点がございましたら、%(config.EMAIL_HOST_USER)sまでお気軽にお問い合わせください。" #: engine/core/templates/digital_order_created_email.html:133 #, python-format @@ -2929,8 +2809,7 @@ msgstr "こんにちは%(user_first_name)s、" msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" " details of your order:" -msgstr "" -"ご注文の№%(order_uuid)sが正常に処理されました!以下はご注文の詳細です:" +msgstr "ご注文の№%(order_uuid)sが正常に処理されました!以下はご注文の詳細です:" #: engine/core/templates/digital_order_delivered_email.html:128 msgid "" @@ -2951,9 +2830,7 @@ msgstr "価値" msgid "" "if you have any questions, feel free to contact our support at\n" " %(contact_email)s." -msgstr "" -"ご不明な点がございましたら、%(contact_email)sまでお気軽にお問い合わせくださ" -"い。" +msgstr "ご不明な点がございましたら、%(contact_email)sまでお気軽にお問い合わせください。" #: engine/core/templates/digital_order_delivered_email.html:165 #: engine/core/templates/promocode_granted_email.html:108 @@ -2985,12 +2862,9 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" -msgstr "" -"ご注文ありがとうございます!ご購入を確認させていただきました。以下、ご注文の" -"詳細です:" +msgstr "ご注文ありがとうございます!ご購入を確認させていただきました。以下、ご注文の詳細です:" #: engine/core/templates/shipped_order_created_email.html:123 #: engine/core/templates/shipped_order_delivered_email.html:123 @@ -3056,128 +2930,111 @@ msgstr "NOMINATIM_URLパラメータを設定する必要があります!" #: engine/core/validators.py:19 #, python-brace-format msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" -msgstr "" -"画像のサイズは w{max_width} x h{max_height} ピクセルを超えないようにしてくだ" -"さい!" +msgstr "画像のサイズは w{max_width} x h{max_height} ピクセルを超えないようにしてください!" -#: engine/core/views.py:90 +#: engine/core/views.py:91 msgid "" "Handles the request for the sitemap index and returns an XML response. It " "ensures the response includes the appropriate content type header for XML." msgstr "" -"サイトマップインデックスのリクエストを処理し、XMLレスポンスを返します。レスポ" -"ンスにXML用の適切なコンテントタイプヘッダーが含まれるようにします。" +"サイトマップインデックスのリクエストを処理し、XMLレスポンスを返します。レスポンスにXML用の適切なコンテントタイプヘッダーが含まれるようにします。" -#: engine/core/views.py:105 +#: engine/core/views.py:106 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 ヘッダを設定します。" -#: engine/core/views.py:140 +#: engine/core/views.py:141 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "サポートされている言語の一覧と対応する情報を返します。" -#: engine/core/views.py:172 +#: engine/core/views.py:173 msgid "Returns the parameters of the website as a JSON object." msgstr "ウェブサイトのパラメータをJSONオブジェクトとして返します。" -#: engine/core/views.py:191 +#: engine/core/views.py:192 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." -msgstr "" -"指定されたキーとタイムアウトで、キャッシュ・データの読み取りや設定などの" -"キャッシュ操作を行う。" +msgstr "指定されたキーとタイムアウトで、キャッシュ・データの読み取りや設定などのキャッシュ操作を行う。" -#: engine/core/views.py:218 +#: engine/core/views.py:219 msgid "Handles `contact us` form submissions." msgstr "お問い合わせフォームの送信を処理する。" -#: engine/core/views.py:239 +#: engine/core/views.py:240 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." -msgstr "" -"入ってくる POST リクエストからの URL の処理と検証のリクエストを処理します。" +msgstr "入ってくる POST リクエストからの URL の処理と検証のリクエストを処理します。" -#: engine/core/views.py:279 +#: engine/core/views.py:280 msgid "Handles global search queries." msgstr "グローバル検索クエリを処理する。" -#: engine/core/views.py:294 +#: engine/core/views.py:295 msgid "Handles the logic of buying as a business without registration." msgstr "登録なしでビジネスとして購入するロジックを扱う。" -#: engine/core/views.py:331 +#: engine/core/views.py:332 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "注文に関連付けられたデジタルアセットのダウンロードを処理します。\n" -"この関数は、プロジェクトのストレージディレクトリにあるデジタルアセットファイ" -"ルの提供を試みます。ファイルが見つからない場合、リソースが利用できないことを" -"示すHTTP 404エラーが発生します。" +"この関数は、プロジェクトのストレージディレクトリにあるデジタルアセットファイルの提供を試みます。ファイルが見つからない場合、リソースが利用できないことを示すHTTP 404エラーが発生します。" -#: engine/core/views.py:342 +#: engine/core/views.py:343 msgid "order_product_uuid is required" msgstr "order_product_uuidは必須です。" -#: engine/core/views.py:349 +#: engine/core/views.py:350 msgid "order product does not exist" msgstr "注文商品が存在しない" -#: engine/core/views.py:352 +#: engine/core/views.py:353 msgid "you can only download the digital asset once" msgstr "デジタルアセットのダウンロードは1回限りです。" -#: engine/core/views.py:355 +#: engine/core/views.py:356 msgid "the order must be paid before downloading the digital asset" msgstr "デジタル資産をダウンロードする前に、注文を支払う必要があります。" -#: engine/core/views.py:361 +#: engine/core/views.py:362 msgid "the order product does not have a product" msgstr "注文商品に商品がない" -#: engine/core/views.py:398 +#: engine/core/views.py:399 msgid "favicon not found" msgstr "ファビコンが見つかりません" -#: engine/core/views.py:403 +#: engine/core/views.py:404 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "ウェブサイトのファビコンへのリクエストを処理します。\n" -"この関数は、プロジェクトの静的ディレクトリにあるファビコンファイルの提供を試" -"みます。ファビコンファイルが見つからない場合、リソースが利用できないことを示" -"す HTTP 404 エラーが発生します。" +"この関数は、プロジェクトの静的ディレクトリにあるファビコンファイルの提供を試みます。ファビコンファイルが見つからない場合、リソースが利用できないことを示す HTTP 404 エラーが発生します。" -#: engine/core/views.py:415 +#: engine/core/views.py:416 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" -"リクエストを admin インデックスページにリダイレクトします。この関数は、HTTP " -"リクエストを処理し、 Django の admin インタフェースインデッ クスページにリダ" -"イレクトします。HTTP リダイレクトの処理には Django の `redirect` 関数を使いま" -"す。" +"リクエストを admin インデックスページにリダイレクトします。この関数は、HTTP リクエストを処理し、 Django の admin " +"インタフェースインデッ クスページにリダイレクトします。HTTP リダイレクトの処理には Django の `redirect` 関数を使います。" -#: engine/core/views.py:428 +#: engine/core/views.py:429 msgid "Returns current version of the eVibes. " msgstr "eVibes の現在のバージョンを返します。" -#: engine/core/views.py:637 +#: engine/core/views.py:793 msgid "Returns custom variables for Dashboard. " msgstr "ダッシュボードのカスタム変数を返します。" @@ -3189,23 +3046,21 @@ msgid "" "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" -"Evibes 関連の操作を管理するためのビューセットを定義します。EvibesViewSet クラ" -"スは ModelViewSet を継承し、Evibes エンティティに対する アクションや操作を扱" -"うための機能を提供します。現在のアクションに基づいた動的なシリアライザークラ" -"スのサポート、 カスタマイズ可能なパーミッション、レンダリングフォーマットが含" -"まれます。" +"Evibes 関連の操作を管理するためのビューセットを定義します。EvibesViewSet クラスは ModelViewSet を継承し、Evibes" +" エンティティに対する アクションや操作を扱うための機能を提供します。現在のアクションに基づいた動的なシリアライザークラスのサポート、 " +"カスタマイズ可能なパーミッション、レンダリングフォーマットが含まれます。" #: engine/core/viewsets.py:156 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" -"AttributeGroup オブジェクトを管理するためのビューセットを表します。データの" -"フィルタリング、シリアライズ、取得など、AttributeGroup に関連する操作を処理し" -"ます。このクラスは、アプリケーションのAPIレイヤの一部であり、AttributeGroup" -"データの要求と応答を処理する標準化された方法を提供します。" +"AttributeGroup " +"オブジェクトを管理するためのビューセットを表します。データのフィルタリング、シリアライズ、取得など、AttributeGroup " +"に関連する操作を処理します。このクラスは、アプリケーションのAPIレイヤの一部であり、AttributeGroupデータの要求と応答を処理する標準化された方法を提供します。" #: engine/core/viewsets.py:175 msgid "" @@ -3216,25 +3071,22 @@ msgid "" "specific fields or retrieving detailed versus simplified information " "depending on the request." msgstr "" -"アプリケーション内でAttributeオブジェクトに関連する操作を処理する。Attribute " -"データと対話するための API エンドポイントのセットを提供します。このクラスは、" -"Attribute オブジェクトのクエリ、フィルタリング、およびシリアライズを管理し、" -"特定のフィールドによるフィルタリングや、リクエストに応じた詳細情報と簡略化さ" -"れた情報の取得など、返されるデータの動的な制御を可能にします。" +"アプリケーション内でAttributeオブジェクトに関連する操作を処理する。Attribute データと対話するための API " +"エンドポイントのセットを提供します。このクラスは、Attribute " +"オブジェクトのクエリ、フィルタリング、およびシリアライズを管理し、特定のフィールドによるフィルタリングや、リクエストに応じた詳細情報と簡略化された情報の取得など、返されるデータの動的な制御を可能にします。" #: engine/core/viewsets.py:194 msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" -"AttributeValue オブジェクトを管理するためのビューセットです。このビューセット" -"は、 AttributeValue オブジェクトの一覧表示、取得、作成、更新、削除の機能を提" -"供し ます。Django REST Framework のビューセット機構と統合され、異なるアクショ" -"ンに適切なシリアライザを使います。フィルタリング機能は DjangoFilterBackend を" -"通して提供されます。" +"AttributeValue オブジェクトを管理するためのビューセットです。このビューセットは、 AttributeValue " +"オブジェクトの一覧表示、取得、作成、更新、削除の機能を提供し ます。Django REST Framework " +"のビューセット機構と統合され、異なるアクションに適切なシリアライザを使います。フィルタリング機能は DjangoFilterBackend " +"を通して提供されます。" #: engine/core/viewsets.py:213 msgid "" @@ -3244,11 +3096,7 @@ msgid "" "The viewset also enforces permissions to ensure that only authorized users " "can access specific data." msgstr "" -"Category関連の操作のためのビューを管理します。CategoryViewSetクラスは、システ" -"ム内のCategoryモデルに関連する操作を処理する責任があります。カテゴリデータの" -"取得、フィルタリング、シリアライズをサポートします。ビューセットはまた、許可" -"されたユーザーだけが特定のデータにアクセスできるようにパーミッションを強制し" -"ます。" +"Category関連の操作のためのビューを管理します。CategoryViewSetクラスは、システム内のCategoryモデルに関連する操作を処理する責任があります。カテゴリデータの取得、フィルタリング、シリアライズをサポートします。ビューセットはまた、許可されたユーザーだけが特定のデータにアクセスできるようにパーミッションを強制します。" #: engine/core/viewsets.py:326 msgid "" @@ -3258,9 +3106,8 @@ msgid "" "endpoints for Brand objects." msgstr "" "Brandインスタンスを管理するためのビューセットを表します。このクラスは Brand " -"オブジェクトのクエリ、フィルタリング、シリアライズの機能を提供します。Django " -"の ViewSet フレームワークを使い、 Brand オブジェクトの API エンドポイントの実" -"装を簡素化します。" +"オブジェクトのクエリ、フィルタリング、シリアライズの機能を提供します。Django の ViewSet フレームワークを使い、 Brand " +"オブジェクトの API エンドポイントの実装を簡素化します。" #: engine/core/viewsets.py:438 msgid "" @@ -3272,12 +3119,10 @@ 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 " +"フレームワークと統合しています。商品の詳細を取得したり、パーミッションを適用したり、商品の関連するフィードバックにアクセスするためのメソッドを含みます。" #: engine/core/viewsets.py:574 msgid "" @@ -3287,59 +3132,49 @@ msgid "" "actions. The purpose of this class is to provide streamlined access to " "Vendor-related resources through the Django REST framework." msgstr "" -"Vendor オブジェクトを管理するためのビューセットを表します。このビューセットを" -"使用すると、 Vendor のデータを取得したりフィルタリングしたりシリアライズした" -"りすることができます。さまざまなアクションを処理するためのクエリセット、 フィ" -"ルタ設定、シリアライザクラスを定義します。このクラスの目的は、 Django REST フ" -"レームワークを通して Vendor 関連リソースへの合理的なアクセスを提供することで" -"す。" +"Vendor オブジェクトを管理するためのビューセットを表します。このビューセットを使用すると、 Vendor " +"のデータを取得したりフィルタリングしたりシリアライズしたりすることができます。さまざまなアクションを処理するためのクエリセット、 " +"フィルタ設定、シリアライザクラスを定義します。このクラスの目的は、 Django REST フレームワークを通して Vendor " +"関連リソースへの合理的なアクセスを提供することです。" #: engine/core/viewsets.py:594 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 " +"のフィルタリングシステムを利用してデータを取得します。" #: engine/core/viewsets.py:621 msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" -"注文と関連する操作を管理するための ViewSet。このクラスは、注文オブジェクトを" -"取得、変更、管理する機能を提供します。商品の追加や削除、登録ユーザや未登録" -"ユーザの購入の実行、現在の認証ユーザの保留中の注文の取得など、注文操作を処理" -"するためのさまざまなエンドポイントを含みます。ViewSetは、実行される特定のアク" -"ションに基づいて複数のシリアライザを使用し、注文データを操作している間、それ" -"に応じてパーミッションを強制します。" +"注文と関連する操作を管理するための " +"ViewSet。このクラスは、注文オブジェクトを取得、変更、管理する機能を提供します。商品の追加や削除、登録ユーザや未登録ユーザの購入の実行、現在の認証ユーザの保留中の注文の取得など、注文操作を処理するためのさまざまなエンドポイントを含みます。ViewSetは、実行される特定のアクションに基づいて複数のシリアライザを使用し、注文データを操作している間、それに応じてパーミッションを強制します。" #: engine/core/viewsets.py:825 msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" -"OrderProduct エンティティを管理するためのビューセットを提供します。このビュー" -"セットは、OrderProduct モデルに固有の CRUD 操作とカスタムアクションを可能にし" -"ます。これは、要求されたアクションに基づくフィルタリング、パーミッション" -"チェック、シリアライザーの切り替えを含みます。さらに、OrderProduct インスタン" -"スに関するフィードバックを処理するための詳細なアクションを提供します。" +"OrderProduct エンティティを管理するためのビューセットを提供します。このビューセットは、OrderProduct モデルに固有の CRUD " +"操作とカスタムアクションを可能にします。これは、要求されたアクションに基づくフィルタリング、パーミッションチェック、シリアライザーの切り替えを含みます。さらに、OrderProduct" +" インスタンスに関するフィードバックを処理するための詳細なアクションを提供します。" #: engine/core/viewsets.py:879 msgid "Manages operations related to Product images in the application. " @@ -3349,8 +3184,7 @@ msgstr "アプリケーション内の商品画像に関する操作を管理し msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." -msgstr "" -"様々なAPIアクションによるプロモコードインスタンスの取得と処理を管理します。" +msgstr "様々なAPIアクションによるプロモコードインスタンスの取得と処理を管理します。" #: engine/core/viewsets.py:914 msgid "Represents a view set for managing promotions. " @@ -3364,18 +3198,13 @@ msgstr "システム内のストックデータに関する操作を行う。" msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." msgstr "" -"ウィッシュリスト操作を管理するためのViewSet。WishlistViewSetは、ユーザーの" -"ウィッシュリストと対話するためのエンドポイントを提供し、ウィッシュリスト内の" -"商品の検索、変更、カスタマイズを可能にします。このViewSetは、ウィッシュリスト" -"商品の追加、削除、一括アクションなどの機能を容易にします。明示的なパーミッ" -"ションが付与されていない限り、ユーザーが自分のウィッシュリストのみを管理でき" -"るよう、パーミッションチェックが統合されています。" +"ウィッシュリスト操作を管理するためのViewSet。WishlistViewSetは、ユーザーのウィッシュリストと対話するためのエンドポイントを提供し、ウィッシュリスト内の商品の検索、変更、カスタマイズを可能にします。このViewSetは、ウィッシュリスト商品の追加、削除、一括アクションなどの機能を容易にします。明示的なパーミッションが付与されていない限り、ユーザーが自分のウィッシュリストのみを管理できるよう、パーミッションチェックが統合されています。" #: engine/core/viewsets.py:1056 msgid "" @@ -3385,11 +3214,9 @@ msgid "" "different HTTP methods, serializer overrides, and permission handling based " "on the request context." msgstr "" -"このクラスは `Address` オブジェクトを管理するためのビューセット機能を提供す" -"る。AddressViewSet クラスは、住所エンティティに関連する CRUD 操作、フィルタリ" -"ング、カスタムアクションを可能にします。異なる HTTP メソッドに特化した振る舞" -"いや、シリアライザのオーバーライド、 リクエストコンテキストに基づいたパーミッ" -"ション処理などを含みます。" +"このクラスは `Address` オブジェクトを管理するためのビューセット機能を提供する。AddressViewSet " +"クラスは、住所エンティティに関連する CRUD 操作、フィルタリング、カスタムアクションを可能にします。異なる HTTP " +"メソッドに特化した振る舞いや、シリアライザのオーバーライド、 リクエストコンテキストに基づいたパーミッション処理などを含みます。" #: engine/core/viewsets.py:1123 #, python-brace-format @@ -3404,8 +3231,4 @@ msgid "" "using the specified filter backend and dynamically uses different " "serializers based on the action being performed." msgstr "" -"アプリケーション内で商品タグに関連する操作を処理します。このクラスは、商品タ" -"グオブジェクトの取得、フィルタリング、シリアライズの機能を提供します。指定さ" -"れたフィルタバックエンドを使用して特定の属性に対する柔軟なフィルタリングをサ" -"ポートし、実行されるアクションに基づいて動的に異なるシリアライザを使用しま" -"す。" +"アプリケーション内で商品タグに関連する操作を処理します。このクラスは、商品タグオブジェクトの取得、フィルタリング、シリアライズの機能を提供します。指定されたフィルタバックエンドを使用して特定の属性に対する柔軟なフィルタリングをサポートし、実行されるアクションに基づいて動的に異なるシリアライザを使用します。" diff --git a/engine/core/locale/kk_KZ/LC_MESSAGES/django.po b/engine/core/locale/kk_KZ/LC_MESSAGES/django.po index b5e84ca1..95d721d3 100644 --- a/engine/core/locale/kk_KZ/LC_MESSAGES/django.po +++ b/engine/core/locale/kk_KZ/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -1049,7 +1049,7 @@ msgstr "" msgid "camelized JSON data from the requested URL" msgstr "" -#: engine/core/graphene/mutations.py:67 engine/core/views.py:256 +#: engine/core/graphene/mutations.py:67 engine/core/views.py:257 msgid "only URLs starting with http(s):// are allowed" msgstr "" @@ -2543,7 +2543,7 @@ msgid "No customer activity in the last 30 days." msgstr "" #: engine/core/templates/admin/dashboard/_daily_sales.html:5 -msgid "Daily sales (30d)" +msgid "Daily sales" msgstr "" #: engine/core/templates/admin/dashboard/_daily_sales.html:59 @@ -2555,6 +2555,7 @@ msgid "Gross revenue" msgstr "" #: engine/core/templates/admin/dashboard/_daily_sales.html:106 +#: engine/core/templates/admin/dashboard/_kpis.html:20 msgid "Orders" msgstr "" @@ -2562,6 +2563,10 @@ msgstr "" msgid "Gross" msgstr "" +#: engine/core/templates/admin/dashboard/_header.html:3 +msgid "Dashboard" +msgstr "" + #: engine/core/templates/admin/dashboard/_income_overview.html:7 msgid "Income overview" msgstr "" @@ -2590,19 +2595,31 @@ msgid "No data" msgstr "" #: engine/core/templates/admin/dashboard/_kpis.html:6 -msgid "Revenue (gross, 30d)" +msgid "GMV" msgstr "" -#: engine/core/templates/admin/dashboard/_kpis.html:15 -msgid "Revenue (net, 30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:34 +msgid "AOV" msgstr "" -#: engine/core/templates/admin/dashboard/_kpis.html:24 -msgid "Returns (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:48 +msgid "Net revenue" msgstr "" -#: engine/core/templates/admin/dashboard/_kpis.html:33 -msgid "Processed orders (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:62 +msgid "Refund rate" +msgstr "" + +#: engine/core/templates/admin/dashboard/_kpis.html:73 +msgid "returned" +msgstr "" + +#: engine/core/templates/admin/dashboard/_low_stock.html:5 +msgid "Low stock" +msgstr "" + +#: engine/core/templates/admin/dashboard/_low_stock.html:29 +msgid "No low stock items." msgstr "" #: engine/core/templates/admin/dashboard/_most_returned.html:5 @@ -2618,11 +2635,11 @@ msgid "Most wished product" msgstr "" #: engine/core/templates/admin/dashboard/_product_lists.html:33 -#: engine/core/templates/admin/dashboard/_product_lists.html:67 +#: engine/core/templates/admin/dashboard/_product_lists.html:68 msgid "No data yet." msgstr "" -#: engine/core/templates/admin/dashboard/_product_lists.html:40 +#: engine/core/templates/admin/dashboard/_product_lists.html:41 msgid "Most popular product" msgstr "" @@ -2658,10 +2675,6 @@ msgstr "" msgid "Django site admin" msgstr "" -#: engine/core/templates/admin/index.html:20 -msgid "Dashboard" -msgstr "" - #: 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 @@ -2863,53 +2876,53 @@ msgstr "" msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" msgstr "" -#: engine/core/views.py:90 +#: engine/core/views.py:91 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 "" -#: engine/core/views.py:105 +#: engine/core/views.py:106 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 "" -#: engine/core/views.py:140 +#: engine/core/views.py:141 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "" -#: engine/core/views.py:172 +#: engine/core/views.py:173 msgid "Returns the parameters of the website as a JSON object." msgstr "" -#: engine/core/views.py:191 +#: engine/core/views.py:192 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." msgstr "" -#: engine/core/views.py:218 +#: engine/core/views.py:219 msgid "Handles `contact us` form submissions." msgstr "" -#: engine/core/views.py:239 +#: engine/core/views.py:240 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." msgstr "" -#: engine/core/views.py:279 +#: engine/core/views.py:280 msgid "Handles global search queries." msgstr "" -#: engine/core/views.py:294 +#: engine/core/views.py:295 msgid "Handles the logic of buying as a business without registration." msgstr "" -#: engine/core/views.py:331 +#: engine/core/views.py:332 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 " @@ -2917,31 +2930,31 @@ msgid "" "error is raised to indicate the resource is unavailable." msgstr "" -#: engine/core/views.py:342 +#: engine/core/views.py:343 msgid "order_product_uuid is required" msgstr "" -#: engine/core/views.py:349 +#: engine/core/views.py:350 msgid "order product does not exist" msgstr "" -#: engine/core/views.py:352 +#: engine/core/views.py:353 msgid "you can only download the digital asset once" msgstr "" -#: engine/core/views.py:355 +#: engine/core/views.py:356 msgid "the order must be paid before downloading the digital asset" msgstr "" -#: engine/core/views.py:361 +#: engine/core/views.py:362 msgid "the order product does not have a product" msgstr "" -#: engine/core/views.py:398 +#: engine/core/views.py:399 msgid "favicon not found" msgstr "" -#: engine/core/views.py:403 +#: engine/core/views.py:404 msgid "" "Handles requests for the favicon of a website.\n" "This function attempts to serve the favicon file located in the static " @@ -2949,18 +2962,18 @@ msgid "" "error is raised to indicate the resource is unavailable." msgstr "" -#: engine/core/views.py:415 +#: engine/core/views.py:416 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 "" -#: engine/core/views.py:428 +#: engine/core/views.py:429 msgid "Returns current version of the eVibes. " msgstr "" -#: engine/core/views.py:637 +#: engine/core/views.py:793 msgid "Returns custom variables for Dashboard. " msgstr "" diff --git a/engine/core/locale/ko_KR/LC_MESSAGES/django.mo b/engine/core/locale/ko_KR/LC_MESSAGES/django.mo index 4a54b2b58b25b14ff1256b91d4bc1b2c0f64ce47..f993f5bc90bdb0773dc4f0e2cccabfe93bc1b48e 100644 GIT binary patch delta 14875 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 delta 14856 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 j;i5G\n" "Language-Team: BRITISH ENGLISH \n" @@ -27,7 +27,8 @@ msgstr "활성 상태" #: 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로 설정하면 필요한 권한이 없는 사용자는 이 개체를 볼 수 없습니다." #: engine/core/abstract.py:23 engine/core/choices.py:18 @@ -152,7 +153,8 @@ msgstr "배달됨" msgid "canceled" msgstr "취소됨" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "실패" @@ -190,8 +192,8 @@ msgid "" "negotiation. Language can be selected with Accept-Language and query " "parameter both." msgstr "" -"OpenApi3 스키마를 사용합니다. 형식은 콘텐츠 협상을 통해 선택할 수 있습니다. " -"언어는 Accept-Language와 쿼리 매개변수를 모두 사용하여 선택할 수 있습니다." +"OpenApi3 스키마를 사용합니다. 형식은 콘텐츠 협상을 통해 선택할 수 있습니다. 언어는 Accept-Language와 쿼리 " +"매개변수를 모두 사용하여 선택할 수 있습니다." #: engine/core/docs/drf/views.py:44 engine/core/graphene/mutations.py:37 msgid "cache I/O" @@ -237,9 +239,7 @@ msgstr "비즈니스로 주문 구매" msgid "" "purchase an order as a business, using the provided `products` with " "`product_uuid` and `attributes`." -msgstr "" -"제공된 '제품'과 '제품_uuid' 및 '속성'을 사용하여 비즈니스로서 주문을 구매합니" -"다." +msgstr "제공된 '제품'과 '제품_uuid' 및 '속성'을 사용하여 비즈니스로서 주문을 구매합니다." #: engine/core/docs/drf/views.py:164 msgid "download a digital asset from purchased digital order" @@ -266,9 +266,9 @@ msgid "rewrite an existing attribute group saving non-editables" msgstr "편집할 수 없는 항목을 저장하는 기존 속성 그룹 다시 작성하기" #: engine/core/docs/drf/viewsets.py:96 -msgid "rewrite some fields of an existing attribute group saving non-editables" -msgstr "" -"기존 속성 그룹의 일부 필드를 다시 작성하여 편집할 수 없는 항목을 저장합니다." +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" +msgstr "기존 속성 그룹의 일부 필드를 다시 작성하여 편집할 수 없는 항목을 저장합니다." #: engine/core/docs/drf/viewsets.py:106 msgid "list all attributes (simple view)" @@ -315,9 +315,9 @@ msgid "rewrite an existing attribute value saving non-editables" msgstr "편집할 수 없는 기존 속성 값을 저장하여 다시 작성하기" #: engine/core/docs/drf/viewsets.py:186 -msgid "rewrite some fields of an existing attribute value saving non-editables" -msgstr "" -"기존 속성 값의 일부 필드를 다시 작성하여 편집할 수 없는 항목을 저장합니다." +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" +msgstr "기존 속성 값의 일부 필드를 다시 작성하여 편집할 수 없는 항목을 저장합니다." #: engine/core/docs/drf/viewsets.py:196 engine/core/docs/drf/viewsets.py:197 msgid "list all categories (simple view)" @@ -369,11 +369,11 @@ msgstr "직원이 아닌 사용자의 경우 자신의 주문만 반환됩니다 #: engine/core/docs/drf/viewsets.py:281 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" -"대소문자를 구분하지 않는 하위 문자열 검색(human_readable_id, order_products." -"product.name 및 order_products.product.partnerumber)" +"대소문자를 구분하지 않는 하위 문자열 검색(human_readable_id, order_products.product.name 및 " +"order_products.product.partnerumber)" #: engine/core/docs/drf/viewsets.py:288 msgid "Filter orders with buy_time >= this ISO 8601 datetime" @@ -405,13 +405,12 @@ msgstr "주문 상태별 필터링(대소문자를 구분하지 않는 하위 #: engine/core/docs/drf/viewsets.py:324 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" -"uuid, human_readable_id, user_email, 사용자, 상태, 생성됨, 수정됨, 구매 시" -"간, 무작위 중 하나로 정렬합니다. 접두사 앞에 '-'를 붙여 내림차순으로 정렬합니" -"다(예: '-buy_time')." +"uuid, human_readable_id, user_email, 사용자, 상태, 생성됨, 수정됨, 구매 시간, 무작위 중 하나로 " +"정렬합니다. 접두사 앞에 '-'를 붙여 내림차순으로 정렬합니다(예: '-buy_time')." #: engine/core/docs/drf/viewsets.py:336 msgid "retrieve a single order (detailed view)" @@ -451,8 +450,7 @@ msgid "" "completed using the user's balance; if `force_payment` is used, a " "transaction is initiated." msgstr "" -"주문 구매를 완료합니다. 강제 잔액`을 사용하면 사용자의 잔액을 사용하여 구매" -"가 완료되고, `강제 결제`를 사용하면 거래가 시작됩니다." +"주문 구매를 완료합니다. 강제 잔액`을 사용하면 사용자의 잔액을 사용하여 구매가 완료되고, `강제 결제`를 사용하면 거래가 시작됩니다." #: engine/core/docs/drf/viewsets.py:397 msgid "retrieve current pending order of a user" @@ -478,8 +476,7 @@ msgstr "주문에 제품 추가" msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." -msgstr "" -"제공된 `product_uuid` 및 `attributes`를 사용하여 주문에 제품을 추가합니다." +msgstr "제공된 `product_uuid` 및 `attributes`를 사용하여 주문에 제품을 추가합니다." #: engine/core/docs/drf/viewsets.py:429 msgid "add a list of products to order, quantities will not count" @@ -489,9 +486,7 @@ msgstr "주문할 제품 목록을 추가하면 수량은 계산되지 않습니 msgid "" "adds a list of products to an order using the provided `product_uuid` and " "`attributes`." -msgstr "" -"제공된 `product_uuid` 및 `attributes`를 사용하여 주문에 제품 목록을 추가합니" -"다." +msgstr "제공된 `product_uuid` 및 `attributes`를 사용하여 주문에 제품 목록을 추가합니다." #: engine/core/docs/drf/viewsets.py:438 msgid "remove product from order" @@ -501,8 +496,7 @@ msgstr "주문에서 제품 제거" msgid "" "removes a product from an order using the provided `product_uuid` and " "`attributes`." -msgstr "" -"제공된 `product_uuid` 및 `attributes`를 사용하여 주문에서 제품을 제거합니다." +msgstr "제공된 `product_uuid` 및 `attributes`를 사용하여 주문에서 제품을 제거합니다." #: engine/core/docs/drf/viewsets.py:447 msgid "remove product from order, quantities will not count" @@ -512,9 +506,7 @@ msgstr "주문에서 제품을 제거하면 수량이 계산되지 않습니다. msgid "" "removes a list of products from an order using the provided `product_uuid` " "and `attributes`" -msgstr "" -"제공된 `product_uuid` 및 `attributes`를 사용하여 주문에서 제품 목록을 제거합" -"니다." +msgstr "제공된 `product_uuid` 및 `attributes`를 사용하여 주문에서 제품 목록을 제거합니다." #: engine/core/docs/drf/viewsets.py:459 msgid "list all wishlists (simple view)" @@ -587,34 +579,24 @@ msgstr "주문에서 제품 제거" #: engine/core/docs/drf/viewsets.py:542 msgid "" "removes many products from an wishlist using the provided `product_uuids`" -msgstr "" -"제공된 `product_uuids`를 사용하여 위시리스트에서 많은 제품을 제거합니다." +msgstr "제공된 `product_uuids`를 사용하여 위시리스트에서 많은 제품을 제거합니다." #: engine/core/docs/drf/viewsets.py:549 msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "하나 이상의 속성 이름/값 쌍을 기준으로 필터링합니다. \n" "- 구문**: `attr_name=메소드-값[;attr2=메소드2-값2]...`\n" -"- **방법**(생략 시 기본값은 `icontains`): `iexact`, `exact`, `icontains`, " -"`contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, " -"`regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" -"- **값 입력**: JSON이 먼저 시도되며(목록/딕을 전달할 수 있도록), 부울, 정수, " -"부동 소수점의 경우 `true`/`false`, 그렇지 않으면 문자열로 처리됩니다. \n" -"- Base64**: 접두사 앞에 `b64-`를 추가하여 URL에 안전한 base64로 원시 값을 인" -"코딩합니다. \n" +"- **방법**(생략 시 기본값은 `icontains`): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" +"- **값 입력**: JSON이 먼저 시도되며(목록/딕을 전달할 수 있도록), 부울, 정수, 부동 소수점의 경우 `true`/`false`, 그렇지 않으면 문자열로 처리됩니다. \n" +"- Base64**: 접두사 앞에 `b64-`를 추가하여 URL에 안전한 base64로 원시 값을 인코딩합니다. \n" "예시: \n" "색상=정확-빨간색`, `크기=gt-10`, `기능=in-[\"wifi\",\"블루투스\"]`,\n" "b64-description=icontains-aGVhdC1jb2xk`" @@ -629,12 +611,10 @@ msgstr "(정확한) 제품 UUID" #: engine/core/docs/drf/viewsets.py:581 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"정렬할 필드의 쉼표로 구분된 목록입니다. 접두사 앞에 `-`를 붙여 내림차순으로 " -"정렬합니다. \n" +"정렬할 필드의 쉼표로 구분된 목록입니다. 접두사 앞에 `-`를 붙여 내림차순으로 정렬합니다. \n" "**허용됨:** uuid, 등급, 이름, 슬러그, 생성, 수정, 가격, 랜덤" #: engine/core/docs/drf/viewsets.py:598 engine/core/docs/drf/viewsets.py:599 @@ -733,8 +713,7 @@ msgstr "편집할 수 없는 기존 피드백을 다시 작성합니다." #: engine/core/docs/drf/viewsets.py:851 msgid "rewrite some fields of an existing feedback saving non-editables" -msgstr "" -"기존 피드백의 일부 필드를 다시 작성하여 편집할 수 없는 항목을 저장합니다." +msgstr "기존 피드백의 일부 필드를 다시 작성하여 편집할 수 없는 항목을 저장합니다." #: engine/core/docs/drf/viewsets.py:861 msgid "list all order–product relations (simple view)" @@ -1016,8 +995,7 @@ msgstr "SKU" #: 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가 있어야 합니다." #: engine/core/filters.py:353 msgid "Search (ID, product name or part number)" @@ -1085,7 +1063,7 @@ msgstr "캐시된 데이터" msgid "camelized JSON data from the requested URL" msgstr "요청된 URL의 카멜라이즈된 JSON 데이터" -#: engine/core/graphene/mutations.py:67 engine/core/views.py:256 +#: engine/core/graphene/mutations.py:67 engine/core/views.py:257 msgid "only URLs starting with http(s):// are allowed" msgstr "http(s)://로 시작하는 URL만 허용됩니다." @@ -1169,8 +1147,8 @@ msgstr "주문 구매" #: engine/core/graphene/mutations.py:516 msgid "" -"please send the attributes as the string formatted like attr1=value1," -"attr2=value2" +"please send the attributes as the string formatted like " +"attr1=value1,attr2=value2" msgstr "속성을 attr1=value1,attr2=value2와 같은 형식의 문자열로 보내주세요." #: engine/core/graphene/mutations.py:549 @@ -1245,7 +1223,8 @@ msgid "which attributes and values can be used for filtering this category." msgstr "이 카테고리를 필터링하는 데 사용할 수 있는 속성 및 값입니다." #: engine/core/graphene/object_types.py:203 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "이 카테고리의 제품에 대한 최소 및 최대 가격(가능한 경우)." #: engine/core/graphene/object_types.py:205 @@ -1306,9 +1285,7 @@ msgstr "청구서 수신 주소" msgid "" "shipping address for this order, leave blank if same as billing address or " "if not applicable" -msgstr "" -"이 주문의 배송 주소는 청구지 주소와 동일하거나 해당되지 않는 경우 비워 둡니" -"다." +msgstr "이 주문의 배송 주소는 청구지 주소와 동일하거나 해당되지 않는 경우 비워 둡니다." #: engine/core/graphene/object_types.py:414 msgid "total price of this order" @@ -1455,8 +1432,7 @@ msgstr "회사 전화번호" #: engine/core/graphene/object_types.py:680 msgid "email from, sometimes it must be used instead of host user value" -msgstr "" -"'이메일 보낸 사람'을 호스트 사용자 값 대신 사용해야 하는 경우가 있습니다." +msgstr "'이메일 보낸 사람'을 호스트 사용자 값 대신 사용해야 하는 경우가 있습니다." #: engine/core/graphene/object_types.py:681 msgid "email host user" @@ -1515,10 +1491,8 @@ msgid "" "parent group, forming a hierarchical structure. This can be useful for " "categorizing and managing attributes more effectively in acomplex system." msgstr "" -"계층적일 수 있는 속성 그룹을 나타냅니다. 이 클래스는 속성 그룹을 관리하고 구" -"성하는 데 사용됩니다. 속성 그룹은 상위 그룹을 가질 수 있으며 계층 구조를 형성" -"할 수 있습니다. 이는 복잡한 시스템에서 속성을 보다 효과적으로 분류하고 관리하" -"는 데 유용할 수 있습니다." +"계층적일 수 있는 속성 그룹을 나타냅니다. 이 클래스는 속성 그룹을 관리하고 구성하는 데 사용됩니다. 속성 그룹은 상위 그룹을 가질 수 " +"있으며 계층 구조를 형성할 수 있습니다. 이는 복잡한 시스템에서 속성을 보다 효과적으로 분류하고 관리하는 데 유용할 수 있습니다." #: engine/core/models.py:91 msgid "parent of this group" @@ -1546,12 +1520,10 @@ msgid "" "also maintains additional metadata and constraints, making it suitable for " "use in systems that interact with third-party vendors." msgstr "" -"외부 공급업체 및 해당 공급업체의 상호 작용 요구 사항에 대한 정보를 저장할 수 " -"있는 공급업체 엔티티를 나타냅니다. 공급업체 클래스는 외부 공급업체와 관련된 " -"정보를 정의하고 관리하는 데 사용됩니다. 공급업체의 이름, 통신에 필요한 인증 " -"세부 정보, 공급업체에서 검색한 제품에 적용된 마크업 비율을 저장합니다. 또한 " -"이 모델은 추가 메타데이터 및 제약 조건을 유지하므로 타사 공급업체와 상호 작용" -"하는 시스템에서 사용하기에 적합합니다." +"외부 공급업체 및 해당 공급업체의 상호 작용 요구 사항에 대한 정보를 저장할 수 있는 공급업체 엔티티를 나타냅니다. 공급업체 클래스는 " +"외부 공급업체와 관련된 정보를 정의하고 관리하는 데 사용됩니다. 공급업체의 이름, 통신에 필요한 인증 세부 정보, 공급업체에서 검색한 " +"제품에 적용된 마크업 비율을 저장합니다. 또한 이 모델은 추가 메타데이터 및 제약 조건을 유지하므로 타사 공급업체와 상호 작용하는 " +"시스템에서 사용하기에 적합합니다." #: engine/core/models.py:124 msgid "stores credentials and endpoints required for vendor communication" @@ -1601,10 +1573,9 @@ msgid "" "display name. It supports operations exported through mixins and provides " "metadata customization for administrative purposes." msgstr "" -"제품을 분류하거나 식별하는 데 사용되는 제품 태그를 나타냅니다. ProductTag 클" -"래스는 내부 태그 식별자와 사용자 친화적인 표시 이름의 조합을 통해 제품을 고유" -"하게 식별하고 분류하도록 설계되었습니다. 믹스인을 통해 내보낸 작업을 지원하" -"며 관리 목적으로 메타데이터 사용자 지정을 제공합니다." +"제품을 분류하거나 식별하는 데 사용되는 제품 태그를 나타냅니다. ProductTag 클래스는 내부 태그 식별자와 사용자 친화적인 표시 " +"이름의 조합을 통해 제품을 고유하게 식별하고 분류하도록 설계되었습니다. 믹스인을 통해 내보낸 작업을 지원하며 관리 목적으로 메타데이터 " +"사용자 지정을 제공합니다." #: engine/core/models.py:209 engine/core/models.py:240 msgid "internal tag identifier for the product tag" @@ -1632,9 +1603,8 @@ msgid "" "tag that can be used to associate and classify products. It includes " "attributes for an internal tag identifier and a user-friendly display name." msgstr "" -"제품에 사용되는 카테고리 태그를 나타냅니다. 이 클래스는 제품을 연결하고 분류" -"하는 데 사용할 수 있는 카테고리 태그를 모델링합니다. 내부 태그 식별자 및 사용" -"자 친화적인 표시 이름에 대한 속성을 포함합니다." +"제품에 사용되는 카테고리 태그를 나타냅니다. 이 클래스는 제품을 연결하고 분류하는 데 사용할 수 있는 카테고리 태그를 모델링합니다. 내부" +" 태그 식별자 및 사용자 친화적인 표시 이름에 대한 속성을 포함합니다." #: engine/core/models.py:254 msgid "category tag" @@ -1656,13 +1626,10 @@ msgid "" "hierarchy of categories, as well as assign attributes like images, tags, or " "priority." msgstr "" -"관련 항목을 계층 구조로 정리하고 그룹화할 카테고리 엔티티를 나타냅니다. 카테" -"고리는 다른 카테고리와 계층적 관계를 가질 수 있으며, 상위-하위 관계를 지원합" -"니다. 이 클래스에는 카테고리 관련 기능의 기반이 되는 메타데이터 및 시각적 표" -"현을 위한 필드가 포함되어 있습니다. 이 클래스는 일반적으로 애플리케이션 내에" -"서 제품 카테고리 또는 기타 유사한 그룹을 정의하고 관리하는 데 사용되며, 사용" -"자나 관리자가 카테고리의 이름, 설명 및 계층 구조를 지정하고 이미지, 태그 또" -"는 우선순위와 같은 속성을 할당할 수 있도록 합니다." +"관련 항목을 계층 구조로 정리하고 그룹화할 카테고리 엔티티를 나타냅니다. 카테고리는 다른 카테고리와 계층적 관계를 가질 수 있으며, " +"상위-하위 관계를 지원합니다. 이 클래스에는 카테고리 관련 기능의 기반이 되는 메타데이터 및 시각적 표현을 위한 필드가 포함되어 " +"있습니다. 이 클래스는 일반적으로 애플리케이션 내에서 제품 카테고리 또는 기타 유사한 그룹을 정의하고 관리하는 데 사용되며, 사용자나 " +"관리자가 카테고리의 이름, 설명 및 계층 구조를 지정하고 이미지, 태그 또는 우선순위와 같은 속성을 할당할 수 있도록 합니다." #: engine/core/models.py:274 msgid "upload an image representing this category" @@ -1713,11 +1680,11 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" -"시스템에서 브랜드 객체를 나타냅니다. 이 클래스는 이름, 로고, 설명, 관련 카테" -"고리, 고유 슬러그, 우선순위 등 브랜드와 관련된 정보 및 속성을 처리합니다. 이" -"를 통해 애플리케이션 내에서 브랜드 관련 데이터를 구성하고 표현할 수 있습니다." +"시스템에서 브랜드 객체를 나타냅니다. 이 클래스는 이름, 로고, 설명, 관련 카테고리, 고유 슬러그, 우선순위 등 브랜드와 관련된 정보 " +"및 속성을 처리합니다. 이를 통해 애플리케이션 내에서 브랜드 관련 데이터를 구성하고 표현할 수 있습니다." #: engine/core/models.py:448 msgid "name of this brand" @@ -1761,17 +1728,16 @@ msgstr "카테고리" #: engine/core/models.py:508 msgid "" -"Represents the stock of a product managed in the system. This class provides " -"details about the relationship between vendors, products, and their stock " +"Represents the stock of a product managed in the system. This class provides" +" details about the relationship between vendors, products, and their stock " "information, as well as inventory-related properties like price, purchase " "price, quantity, SKU, and digital assets. It is part of the inventory " "management system to allow tracking and evaluation of products available " "from various vendors." msgstr "" -"시스템에서 관리되는 제품의 재고를 나타냅니다. 이 클래스는 공급업체, 제품, 재" -"고 정보 간의 관계와 가격, 구매 가격, 수량, SKU 및 디지털 자산과 같은 재고 관" -"련 속성에 대한 세부 정보를 제공합니다. 다양한 공급업체에서 제공하는 제품을 추" -"적하고 평가할 수 있도록 하는 재고 관리 시스템의 일부입니다." +"시스템에서 관리되는 제품의 재고를 나타냅니다. 이 클래스는 공급업체, 제품, 재고 정보 간의 관계와 가격, 구매 가격, 수량, SKU 및" +" 디지털 자산과 같은 재고 관련 속성에 대한 세부 정보를 제공합니다. 다양한 공급업체에서 제공하는 제품을 추적하고 평가할 수 있도록 하는" +" 재고 관리 시스템의 일부입니다." #: engine/core/models.py:520 msgid "the vendor supplying this product stock" @@ -1849,13 +1815,10 @@ msgid "" "properties to improve performance. It is used to define and manipulate " "product data and its associated information within an application." msgstr "" -"카테고리, 브랜드, 태그, 디지털 상태, 이름, 설명, 부품 번호, 슬러그 등의 속성" -"을 가진 제품을 나타냅니다. 평점, 피드백 수, 가격, 수량, 총 주문 수 등을 검색" -"할 수 있는 관련 유틸리티 속성을 제공합니다. 이커머스 또는 재고 관리를 처리하" -"는 시스템에서 사용하도록 설계되었습니다. 이 클래스는 관련 모델(예: 카테고리, " -"브랜드, 제품 태그)과 상호 작용하고 자주 액세스하는 속성에 대한 캐싱을 관리하" -"여 성능을 개선합니다. 애플리케이션 내에서 제품 데이터 및 관련 정보를 정의하" -"고 조작하는 데 사용됩니다." +"카테고리, 브랜드, 태그, 디지털 상태, 이름, 설명, 부품 번호, 슬러그 등의 속성을 가진 제품을 나타냅니다. 평점, 피드백 수, " +"가격, 수량, 총 주문 수 등을 검색할 수 있는 관련 유틸리티 속성을 제공합니다. 이커머스 또는 재고 관리를 처리하는 시스템에서 " +"사용하도록 설계되었습니다. 이 클래스는 관련 모델(예: 카테고리, 브랜드, 제품 태그)과 상호 작용하고 자주 액세스하는 속성에 대한 " +"캐싱을 관리하여 성능을 개선합니다. 애플리케이션 내에서 제품 데이터 및 관련 정보를 정의하고 조작하는 데 사용됩니다." #: engine/core/models.py:585 msgid "category this product belongs to" @@ -1910,15 +1873,13 @@ msgid "" "Represents an attribute in the system. This class is used to define and " "manage attributes, which are customizable pieces of data that can be " "associated with other entities. Attributes have associated categories, " -"groups, value types, and names. The model supports multiple types of values, " -"including string, integer, float, boolean, array, and object. This allows " +"groups, value types, and names. The model supports multiple types of values," +" including string, integer, float, boolean, array, and object. This allows " "for dynamic and flexible data structuring." msgstr "" -"시스템의 속성을 나타냅니다. 이 클래스는 다른 엔티티와 연결할 수 있는 사용자 " -"지정 가능한 데이터 조각인 속성을 정의하고 관리하는 데 사용됩니다. 속성에는 연" -"관된 카테고리, 그룹, 값 유형 및 이름이 있습니다. 이 모델은 문자열, 정수, 실" -"수, 부울, 배열, 객체 등 여러 유형의 값을 지원합니다. 이를 통해 동적이고 유연" -"한 데이터 구조화가 가능합니다." +"시스템의 속성을 나타냅니다. 이 클래스는 다른 엔티티와 연결할 수 있는 사용자 지정 가능한 데이터 조각인 속성을 정의하고 관리하는 데 " +"사용됩니다. 속성에는 연관된 카테고리, 그룹, 값 유형 및 이름이 있습니다. 이 모델은 문자열, 정수, 실수, 부울, 배열, 객체 등 " +"여러 유형의 값을 지원합니다. 이를 통해 동적이고 유연한 데이터 구조화가 가능합니다." #: engine/core/models.py:733 msgid "group of this attribute" @@ -1979,12 +1940,12 @@ msgstr "속성" #: engine/core/models.py:777 msgid "" -"Represents a specific value for an attribute that is linked to a product. It " -"links the 'attribute' to a unique 'value', allowing better organization and " -"dynamic representation of product characteristics." +"Represents a specific value for an attribute that is linked to a product. It" +" links the 'attribute' to a unique 'value', allowing better organization and" +" dynamic representation of product characteristics." msgstr "" -"상품에 연결된 속성의 특정 값을 나타냅니다. '속성'을 고유한 '값'에 연결하여 제" -"품 특성을 더 잘 구성하고 동적으로 표현할 수 있습니다." +"상품에 연결된 속성의 특정 값을 나타냅니다. '속성'을 고유한 '값'에 연결하여 제품 특성을 더 잘 구성하고 동적으로 표현할 수 " +"있습니다." #: engine/core/models.py:788 msgid "attribute of this value" @@ -2001,15 +1962,13 @@ msgstr "이 속성의 구체적인 값은 다음과 같습니다." #: engine/core/models.py:815 msgid "" "Represents a product image associated with a product in the system. This " -"class is designed to manage images for products, including functionality for " -"uploading image files, associating them with specific products, and " +"class is designed to manage images for products, including functionality for" +" uploading image files, associating them with specific products, and " "determining their display order. It also includes an accessibility feature " "with alternative text for the images." msgstr "" -"시스템에서 제품과 연관된 제품 이미지를 나타냅니다. 이 클래스는 이미지 파일 업" -"로드, 특정 제품과의 연결, 표시 순서 결정 등의 기능을 포함하여 제품의 이미지" -"를 관리하도록 설계되었습니다. 또한 이미지에 대한 대체 텍스트가 포함된 접근성 " -"기능도 포함되어 있습니다." +"시스템에서 제품과 연관된 제품 이미지를 나타냅니다. 이 클래스는 이미지 파일 업로드, 특정 제품과의 연결, 표시 순서 결정 등의 기능을 " +"포함하여 제품의 이미지를 관리하도록 설계되었습니다. 또한 이미지에 대한 대체 텍스트가 포함된 접근성 기능도 포함되어 있습니다." #: engine/core/models.py:826 msgid "provide alternative text for the image for accessibility" @@ -2049,14 +2008,12 @@ msgid "" "is used to define and manage promotional campaigns that offer a percentage-" "based discount for products. The class includes attributes for setting the " "discount rate, providing details about the promotion, and linking it to the " -"applicable products. It integrates with the product catalog to determine the " -"affected items in the campaign." +"applicable products. It integrates with the product catalog to determine the" +" affected items in the campaign." msgstr "" -"할인이 적용되는 제품에 대한 프로모션 캠페인을 나타냅니다. 이 클래스는 제품에 " -"대해 백분율 기반 할인을 제공하는 프로모션 캠페인을 정의하고 관리하는 데 사용" -"됩니다. 이 클래스에는 할인율 설정, 프로모션에 대한 세부 정보 제공 및 해당 제" -"품에 대한 링크를 위한 속성이 포함되어 있습니다. 제품 카탈로그와 통합되어 캠페" -"인에서 영향을 받는 품목을 결정합니다." +"할인이 적용되는 제품에 대한 프로모션 캠페인을 나타냅니다. 이 클래스는 제품에 대해 백분율 기반 할인을 제공하는 프로모션 캠페인을 " +"정의하고 관리하는 데 사용됩니다. 이 클래스에는 할인율 설정, 프로모션에 대한 세부 정보 제공 및 해당 제품에 대한 링크를 위한 속성이 " +"포함되어 있습니다. 제품 카탈로그와 통합되어 캠페인에서 영향을 받는 품목을 결정합니다." #: engine/core/models.py:880 msgid "percentage discount for the selected products" @@ -2097,9 +2054,8 @@ msgid "" "operations such as adding and removing products, as well as supporting " "operations for adding and removing multiple products at once." msgstr "" -"원하는 상품을 저장하고 관리하기 위한 사용자의 위시리스트를 나타냅니다. 이 클" -"래스는 제품 컬렉션을 관리하는 기능을 제공하여 제품 추가 및 제거와 같은 작업" -"을 지원할 뿐만 아니라 여러 제품을 한 번에 추가 및 제거하는 작업도 지원합니다." +"원하는 상품을 저장하고 관리하기 위한 사용자의 위시리스트를 나타냅니다. 이 클래스는 제품 컬렉션을 관리하는 기능을 제공하여 제품 추가 및" +" 제거와 같은 작업을 지원할 뿐만 아니라 여러 제품을 한 번에 추가 및 제거하는 작업도 지원합니다." #: engine/core/models.py:926 msgid "products that the user has marked as wanted" @@ -2123,14 +2079,12 @@ msgid "" "store information about documentaries related to specific products, " "including file uploads and their metadata. It contains methods and " "properties to handle the file type and storage path for the documentary " -"files. It extends functionality from specific mixins and provides additional " -"custom features." +"files. It extends functionality from specific mixins and provides additional" +" custom features." msgstr "" -"상품에 연결된 다큐멘터리 레코드를 나타냅니다. 이 클래스는 파일 업로드 및 메타" -"데이터를 포함하여 특정 제품과 관련된 다큐멘터리에 대한 정보를 저장하는 데 사" -"용됩니다. 여기에는 다큐멘터리 파일의 파일 유형과 저장 경로를 처리하는 메서드" -"와 프로퍼티가 포함되어 있습니다. 특정 믹스인의 기능을 확장하고 추가 사용자 정" -"의 기능을 제공합니다." +"상품에 연결된 다큐멘터리 레코드를 나타냅니다. 이 클래스는 파일 업로드 및 메타데이터를 포함하여 특정 제품과 관련된 다큐멘터리에 대한 " +"정보를 저장하는 데 사용됩니다. 여기에는 다큐멘터리 파일의 파일 유형과 저장 경로를 처리하는 메서드와 프로퍼티가 포함되어 있습니다. 특정" +" 믹스인의 기능을 확장하고 추가 사용자 정의 기능을 제공합니다." #: engine/core/models.py:998 msgid "documentary" @@ -2146,22 +2100,19 @@ msgstr "해결되지 않음" #: engine/core/models.py:1014 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" -"위치 세부 정보 및 사용자와의 연결을 포함하는 주소 엔티티를 나타냅니다. 지리" -"적 및 주소 데이터 저장과 지오코딩 서비스와의 통합을 위한 기능을 제공합니다. " -"이 클래스는 거리, 도시, 지역, 국가, 지리적 위치(경도 및 위도)와 같은 구성 요" -"소를 포함한 상세한 주소 정보를 저장하도록 설계되었습니다. 지오코딩 API와의 통" -"합을 지원하여 추가 처리 또는 검사를 위해 원시 API 응답을 저장할 수 있습니다. " -"또한 이 클래스를 사용하면 주소를 사용자와 연결하여 개인화된 데이터 처리를 용" -"이하게 할 수 있습니다." +"위치 세부 정보 및 사용자와의 연결을 포함하는 주소 엔티티를 나타냅니다. 지리적 및 주소 데이터 저장과 지오코딩 서비스와의 통합을 위한 " +"기능을 제공합니다. 이 클래스는 거리, 도시, 지역, 국가, 지리적 위치(경도 및 위도)와 같은 구성 요소를 포함한 상세한 주소 정보를 " +"저장하도록 설계되었습니다. 지오코딩 API와의 통합을 지원하여 추가 처리 또는 검사를 위해 원시 API 응답을 저장할 수 있습니다. 또한" +" 이 클래스를 사용하면 주소를 사용자와 연결하여 개인화된 데이터 처리를 용이하게 할 수 있습니다." #: engine/core/models.py:1029 msgid "address line for the customer" @@ -2224,11 +2175,9 @@ msgid "" "any), and status of its usage. It includes functionality to validate and " "apply the promo code to an order while ensuring constraints are met." msgstr "" -"할인에 사용할 수 있는 프로모션 코드를 나타내며, 유효 기간, 할인 유형 및 적용" -"을 관리합니다. 프로모션 코드 클래스는 고유 식별자, 할인 속성(금액 또는 백분" -"율), 유효 기간, 관련 사용자(있는 경우), 사용 상태 등 프로모션 코드에 대한 세" -"부 정보를 저장합니다. 여기에는 제약 조건이 충족되는지 확인하면서 프로모션 코" -"드의 유효성을 검사하고 주문에 적용하는 기능이 포함되어 있습니다." +"할인에 사용할 수 있는 프로모션 코드를 나타내며, 유효 기간, 할인 유형 및 적용을 관리합니다. 프로모션 코드 클래스는 고유 식별자, " +"할인 속성(금액 또는 백분율), 유효 기간, 관련 사용자(있는 경우), 사용 상태 등 프로모션 코드에 대한 세부 정보를 저장합니다. " +"여기에는 제약 조건이 충족되는지 확인하면서 프로모션 코드의 유효성을 검사하고 주문에 적용하는 기능이 포함되어 있습니다." #: engine/core/models.py:1087 msgid "unique code used by a user to redeem a discount" @@ -2298,9 +2247,7 @@ msgstr "프로모션 코드" msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." -msgstr "" -"할인 유형(금액 또는 백분율)은 한 가지 유형만 정의해야 하며, 두 가지 모두 또" -"는 둘 다 정의해서는 안 됩니다." +msgstr "할인 유형(금액 또는 백분율)은 한 가지 유형만 정의해야 하며, 두 가지 모두 또는 둘 다 정의해서는 안 됩니다." #: engine/core/models.py:1171 msgid "promocode already used" @@ -2315,16 +2262,14 @@ msgstr "프로모션 코드 {self.uuid}의 할인 유형이 잘못되었습니 msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" -"사용자가 진행한 주문을 나타냅니다. 이 클래스는 청구 및 배송 정보, 상태, 연결" -"된 사용자, 알림 및 관련 작업과 같은 다양한 속성을 포함하여 애플리케이션 내에" -"서 주문을 모델링합니다. 주문에는 연결된 제품, 프로모션 적용, 주소 설정, 배송 " -"또는 청구 세부 정보 업데이트가 가능합니다. 또한 주문 수명 주기에서 제품을 관" -"리하는 기능도 지원합니다." +"사용자가 진행한 주문을 나타냅니다. 이 클래스는 청구 및 배송 정보, 상태, 연결된 사용자, 알림 및 관련 작업과 같은 다양한 속성을 " +"포함하여 애플리케이션 내에서 주문을 모델링합니다. 주문에는 연결된 제품, 프로모션 적용, 주소 설정, 배송 또는 청구 세부 정보 " +"업데이트가 가능합니다. 또한 주문 수명 주기에서 제품을 관리하는 기능도 지원합니다." #: engine/core/models.py:1213 msgid "the billing address used for this order" @@ -2356,8 +2301,7 @@ msgstr "주문 상태" #: engine/core/models.py:1243 engine/core/models.py:1769 msgid "json structure of notifications to display to users" -msgstr "" -"사용자에게 표시할 알림의 JSON 구조, 관리자 UI에서는 테이블 보기가 사용됩니다." +msgstr "사용자에게 표시할 알림의 JSON 구조, 관리자 UI에서는 테이블 보기가 사용됩니다." #: engine/core/models.py:1249 msgid "json representation of order attributes for this order" @@ -2457,17 +2401,13 @@ msgstr "주문을 완료하기에 자금이 부족합니다." msgid "" "you cannot buy without registration, please provide the following " "information: customer name, customer email, customer phone number" -msgstr "" -"등록하지 않으면 구매할 수 없으므로 고객 이름, 고객 이메일, 고객 전화 번호 등" -"의 정보를 제공하세요." +msgstr "등록하지 않으면 구매할 수 없으므로 고객 이름, 고객 이메일, 고객 전화 번호 등의 정보를 제공하세요." #: engine/core/models.py:1584 #, python-brace-format msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" -msgstr "" -"결제 방법이 잘못되었습니다: {payment_method}에서 {available_payment_methods}" -"로!" +msgstr "결제 방법이 잘못되었습니다: {payment_method}에서 {available_payment_methods}로!" #: engine/core/models.py:1699 msgid "" @@ -2477,11 +2417,9 @@ msgid "" "product in the order, and a user-assigned rating. The class uses database " "fields to effectively model and manage feedback data." msgstr "" -"제품에 대한 사용자 피드백을 관리합니다. 이 클래스는 사용자가 구매한 특정 제품" -"에 대한 사용자 피드백을 캡처하고 저장하도록 설계되었습니다. 여기에는 사용자 " -"댓글, 주문에서 관련 제품에 대한 참조 및 사용자가 지정한 등급을 저장하는 속성" -"이 포함되어 있습니다. 이 클래스는 데이터베이스 필드를 사용하여 피드백 데이터" -"를 효과적으로 모델링하고 관리합니다." +"제품에 대한 사용자 피드백을 관리합니다. 이 클래스는 사용자가 구매한 특정 제품에 대한 사용자 피드백을 캡처하고 저장하도록 " +"설계되었습니다. 여기에는 사용자 댓글, 주문에서 관련 제품에 대한 참조 및 사용자가 지정한 등급을 저장하는 속성이 포함되어 있습니다. 이" +" 클래스는 데이터베이스 필드를 사용하여 피드백 데이터를 효과적으로 모델링하고 관리합니다." #: engine/core/models.py:1711 msgid "user-provided comments about their experience with the product" @@ -2492,7 +2430,8 @@ msgid "feedback comments" msgstr "피드백 댓글" #: engine/core/models.py:1719 -msgid "references the specific product in an order that this feedback is about" +msgid "" +"references the specific product in an order that this feedback is about" msgstr "이 피드백에 대한 순서대로 특정 제품을 참조합니다." #: engine/core/models.py:1720 @@ -2519,13 +2458,10 @@ msgid "" "download URL for digital products. The model integrates with the Order and " "Product models and stores a reference to them." msgstr "" -"주문과 관련된 제품 및 해당 속성을 나타냅니다. 주문 제품 모델은 구매 가격, 수" -"량, 제품 속성 및 상태 등의 세부 정보를 포함하여 주문의 일부인 제품에 대한 정" -"보를 유지 관리합니다. 사용자 및 관리자에 대한 알림을 관리하고 제품 잔액 반환 " -"또는 피드백 추가와 같은 작업을 처리합니다. 또한 이 모델은 총 가격 계산이나 디" -"지털 제품의 다운로드 URL 생성 등 비즈니스 로직을 지원하는 메서드와 속성을 제" -"공합니다. 이 모델은 주문 및 제품 모델과 통합되며 해당 모델에 대한 참조를 저장" -"합니다." +"주문과 관련된 제품 및 해당 속성을 나타냅니다. 주문 제품 모델은 구매 가격, 수량, 제품 속성 및 상태 등의 세부 정보를 포함하여 " +"주문의 일부인 제품에 대한 정보를 유지 관리합니다. 사용자 및 관리자에 대한 알림을 관리하고 제품 잔액 반환 또는 피드백 추가와 같은 " +"작업을 처리합니다. 또한 이 모델은 총 가격 계산이나 디지털 제품의 다운로드 URL 생성 등 비즈니스 로직을 지원하는 메서드와 속성을 " +"제공합니다. 이 모델은 주문 및 제품 모델과 통합되며 해당 모델에 대한 참조를 저장합니다." #: engine/core/models.py:1757 msgid "the price paid by the customer for this product at purchase time" @@ -2633,15 +2569,13 @@ msgid "" "Represents the downloading functionality for digital assets associated with " "orders. The DigitalAssetDownload class provides the ability to manage and " "access downloads related to order products. It maintains information about " -"the associated order product, the number of downloads, and whether the asset " -"is publicly visible. It includes a method to generate a URL for downloading " -"the asset when the associated order is in a completed status." +"the associated order product, the number of downloads, and whether the asset" +" is publicly visible. It includes a method to generate a URL for downloading" +" the asset when the associated order is in a completed status." msgstr "" -"주문과 관련된 디지털 자산의 다운로드 기능을 나타냅니다. 디지털 자산 다운로드 " -"클래스는 주문 상품과 관련된 다운로드를 관리하고 액세스할 수 있는 기능을 제공" -"합니다. 연결된 주문 상품, 다운로드 횟수, 자산이 공개적으로 표시되는지 여부에 " -"대한 정보를 유지 관리합니다. 여기에는 연결된 주문이 완료 상태일 때 자산을 다" -"운로드할 수 있는 URL을 생성하는 메서드가 포함되어 있습니다." +"주문과 관련된 디지털 자산의 다운로드 기능을 나타냅니다. 디지털 자산 다운로드 클래스는 주문 상품과 관련된 다운로드를 관리하고 액세스할 " +"수 있는 기능을 제공합니다. 연결된 주문 상품, 다운로드 횟수, 자산이 공개적으로 표시되는지 여부에 대한 정보를 유지 관리합니다. " +"여기에는 연결된 주문이 완료 상태일 때 자산을 다운로드할 수 있는 URL을 생성하는 메서드가 포함되어 있습니다." #: engine/core/models.py:1961 msgid "download" @@ -2685,8 +2619,8 @@ msgid "No customer activity in the last 30 days." msgstr "지난 30일 동안 고객 활동이 없습니다." #: engine/core/templates/admin/dashboard/_daily_sales.html:5 -msgid "Daily sales (30d)" -msgstr "일일 판매량(30일)" +msgid "Daily sales" +msgstr "일일 판매량" #: engine/core/templates/admin/dashboard/_daily_sales.html:59 msgid "Orders (FINISHED)" @@ -2697,6 +2631,7 @@ msgid "Gross revenue" msgstr "총 수익" #: engine/core/templates/admin/dashboard/_daily_sales.html:106 +#: engine/core/templates/admin/dashboard/_kpis.html:20 msgid "Orders" msgstr "주문" @@ -2704,6 +2639,10 @@ msgstr "주문" msgid "Gross" msgstr "Gross" +#: engine/core/templates/admin/dashboard/_header.html:3 +msgid "Dashboard" +msgstr "대시보드" + #: engine/core/templates/admin/dashboard/_income_overview.html:7 msgid "Income overview" msgstr "수입 개요" @@ -2732,20 +2671,32 @@ msgid "No data" msgstr "날짜 없음" #: engine/core/templates/admin/dashboard/_kpis.html:6 -msgid "Revenue (gross, 30d)" -msgstr "수익(총액, 30일)" +msgid "GMV" +msgstr "GMV" -#: engine/core/templates/admin/dashboard/_kpis.html:15 -msgid "Revenue (net, 30d)" -msgstr "수익(순, 30일)" +#: engine/core/templates/admin/dashboard/_kpis.html:34 +msgid "AOV" +msgstr "AOV" -#: engine/core/templates/admin/dashboard/_kpis.html:24 -msgid "Returns (30d)" -msgstr "반품 (30일)" +#: engine/core/templates/admin/dashboard/_kpis.html:48 +msgid "Net revenue" +msgstr "순 수익" -#: engine/core/templates/admin/dashboard/_kpis.html:33 -msgid "Processed orders (30d)" -msgstr "처리된 주문(30일)" +#: engine/core/templates/admin/dashboard/_kpis.html:62 +msgid "Refund rate" +msgstr "환불 비율" + +#: engine/core/templates/admin/dashboard/_kpis.html:73 +msgid "returned" +msgstr "반환됨" + +#: engine/core/templates/admin/dashboard/_low_stock.html:5 +msgid "Low stock" +msgstr "재고 부족" + +#: engine/core/templates/admin/dashboard/_low_stock.html:29 +msgid "No low stock items." +msgstr "재고가 부족한 품목이 없습니다." #: engine/core/templates/admin/dashboard/_most_returned.html:5 msgid "Most returned products (30d)" @@ -2760,11 +2711,11 @@ msgid "Most wished product" msgstr "가장 많이 원하는 제품" #: engine/core/templates/admin/dashboard/_product_lists.html:33 -#: engine/core/templates/admin/dashboard/_product_lists.html:67 +#: engine/core/templates/admin/dashboard/_product_lists.html:68 msgid "No data yet." msgstr "아직 데이터가 없습니다." -#: engine/core/templates/admin/dashboard/_product_lists.html:40 +#: engine/core/templates/admin/dashboard/_product_lists.html:41 msgid "Most popular product" msgstr "가장 인기 있는 제품" @@ -2800,10 +2751,6 @@ msgstr "지난 30일 동안 카테고리 매출이 없습니다." msgid "Django site admin" msgstr "장고 사이트 관리자" -#: engine/core/templates/admin/index.html:20 -msgid "Dashboard" -msgstr "대시보드" - #: 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 @@ -2833,12 +2780,10 @@ msgstr "안녕하세요 %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" -"주문해 주셔서 감사합니다 #%(order.pk)s! 주문하신 상품이 입고되었음을 알려드립" -"니다. 주문 세부 정보는 아래와 같습니다:" +"주문해 주셔서 감사합니다 #%(order.pk)s! 주문하신 상품이 입고되었음을 알려드립니다. 주문 세부 정보는 아래와 같습니다:" #: engine/core/templates/digital_order_created_email.html:112 #: engine/core/templates/digital_order_delivered_email.html:110 @@ -2861,8 +2806,7 @@ msgstr "총 가격" msgid "" "if you have any questions, feel free to contact our support at\n" " %(config.EMAIL_HOST_USER)s." -msgstr "" -"궁금한 점이 있으면 언제든지 %(config.EMAIL_HOST_USER)s로 지원팀에 문의하세요." +msgstr "궁금한 점이 있으면 언제든지 %(config.EMAIL_HOST_USER)s로 지원팀에 문의하세요." #: engine/core/templates/digital_order_created_email.html:133 #, python-format @@ -2890,9 +2834,7 @@ msgstr "안녕하세요 %(user_first_name)s," msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" " details of your order:" -msgstr "" -"주문이 성공적으로 처리되었습니다 №%(order_uuid)s! 주문 세부 정보는 아래와 같" -"습니다:" +msgstr "주문이 성공적으로 처리되었습니다 №%(order_uuid)s! 주문 세부 정보는 아래와 같습니다:" #: engine/core/templates/digital_order_delivered_email.html:128 msgid "" @@ -2945,12 +2887,9 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" -msgstr "" -"주문해 주셔서 감사합니다! 구매를 확인하게 되어 기쁩니다. 주문 세부 정보는 아" -"래와 같습니다:" +msgstr "주문해 주셔서 감사합니다! 구매를 확인하게 되어 기쁩니다. 주문 세부 정보는 아래와 같습니다:" #: engine/core/templates/shipped_order_created_email.html:123 #: engine/core/templates/shipped_order_delivered_email.html:123 @@ -3016,125 +2955,111 @@ msgstr "NOMINATIM_URL 파라미터를 설정해야 합니다!" #: engine/core/validators.py:19 #, python-brace-format msgid "image dimensions should not exceed w{max_width} x h{max_height} pixels" -msgstr "" -"이미지 크기는 w{max_width} x h{max_height} 픽셀을 초과하지 않아야 합니다!" +msgstr "이미지 크기는 w{max_width} x h{max_height} 픽셀을 초과하지 않아야 합니다!" -#: engine/core/views.py:90 +#: engine/core/views.py:91 msgid "" "Handles the request for the sitemap index and returns an XML response. It " "ensures the response includes the appropriate content type header for XML." msgstr "" -"사이트맵 색인에 대한 요청을 처리하고 XML 응답을 반환합니다. 응답에 XML에 적합" -"한 콘텐츠 유형 헤더가 포함되어 있는지 확인합니다." +"사이트맵 색인에 대한 요청을 처리하고 XML 응답을 반환합니다. 응답에 XML에 적합한 콘텐츠 유형 헤더가 포함되어 있는지 확인합니다." -#: engine/core/views.py:105 +#: engine/core/views.py:106 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 헤더를 설정합니다." -#: engine/core/views.py:140 +#: engine/core/views.py:141 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "지원되는 언어 목록과 해당 정보를 반환합니다." -#: engine/core/views.py:172 +#: engine/core/views.py:173 msgid "Returns the parameters of the website as a JSON object." msgstr "웹사이트의 매개변수를 JSON 객체로 반환합니다." -#: engine/core/views.py:191 +#: engine/core/views.py:192 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." -msgstr "" -"지정된 키와 시간 초과로 캐시 데이터를 읽고 설정하는 등의 캐시 작업을 처리합니" -"다." +msgstr "지정된 키와 시간 초과로 캐시 데이터를 읽고 설정하는 등의 캐시 작업을 처리합니다." -#: engine/core/views.py:218 +#: engine/core/views.py:219 msgid "Handles `contact us` form submissions." msgstr "'문의하기' 양식 제출을 처리합니다." -#: engine/core/views.py:239 +#: engine/core/views.py:240 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." msgstr "들어오는 POST 요청의 URL 처리 및 유효성 검사 요청을 처리합니다." -#: engine/core/views.py:279 +#: engine/core/views.py:280 msgid "Handles global search queries." msgstr "글로벌 검색 쿼리를 처리합니다." -#: engine/core/views.py:294 +#: engine/core/views.py:295 msgid "Handles the logic of buying as a business without registration." msgstr "등록하지 않고 비즈니스로 구매하는 로직을 처리합니다." -#: engine/core/views.py:331 +#: engine/core/views.py:332 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "주문과 관련된 디지털 자산의 다운로드를 처리합니다.\n" -"이 함수는 프로젝트의 저장소 디렉토리에 있는 디지털 자산 파일을 제공하려고 시" -"도합니다. 파일을 찾을 수 없으면 HTTP 404 오류가 발생하여 리소스를 사용할 수 " -"없음을 나타냅니다." +"이 함수는 프로젝트의 저장소 디렉토리에 있는 디지털 자산 파일을 제공하려고 시도합니다. 파일을 찾을 수 없으면 HTTP 404 오류가 발생하여 리소스를 사용할 수 없음을 나타냅니다." -#: engine/core/views.py:342 +#: engine/core/views.py:343 msgid "order_product_uuid is required" msgstr "주문_제품_UUID는 필수입니다." -#: engine/core/views.py:349 +#: engine/core/views.py:350 msgid "order product does not exist" msgstr "주문 제품이 존재하지 않습니다." -#: engine/core/views.py:352 +#: engine/core/views.py:353 msgid "you can only download the digital asset once" msgstr "디지털 자산은 한 번만 다운로드할 수 있습니다." -#: engine/core/views.py:355 +#: engine/core/views.py:356 msgid "the order must be paid before downloading the digital asset" msgstr "디지털 자산을 다운로드하기 전에 주문을 결제해야 합니다." -#: engine/core/views.py:361 +#: engine/core/views.py:362 msgid "the order product does not have a product" msgstr "주문 제품에 제품이 없습니다." -#: engine/core/views.py:398 +#: engine/core/views.py:399 msgid "favicon not found" msgstr "파비콘을 찾을 수 없습니다." -#: engine/core/views.py:403 +#: engine/core/views.py:404 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "웹사이트의 파비콘 요청을 처리합니다.\n" -"이 함수는 프로젝트의 정적 디렉토리에 있는 파비콘 파일을 제공하려고 시도합니" -"다. 파비콘 파일을 찾을 수 없는 경우 HTTP 404 오류가 발생하여 리소스를 사용할 " -"수 없음을 나타냅니다." +"이 함수는 프로젝트의 정적 디렉토리에 있는 파비콘 파일을 제공하려고 시도합니다. 파비콘 파일을 찾을 수 없는 경우 HTTP 404 오류가 발생하여 리소스를 사용할 수 없음을 나타냅니다." -#: engine/core/views.py:415 +#: engine/core/views.py:416 msgid "" -"Redirects the request to the admin index page. The function handles incoming " -"HTTP requests and redirects them to the Django admin interface index page. " +"Redirects the request to the admin index page. The function handles incoming" +" HTTP requests and redirects them to the Django admin interface index page. " "It uses Django's `redirect` function for handling the HTTP redirection." msgstr "" -"요청을 관리자 색인 페이지로 리디렉션합니다. 이 함수는 들어오는 HTTP 요청을 처" -"리하여 Django 관리자 인터페이스 인덱스 페이지로 리디렉션합니다. HTTP 리디렉션" -"을 처리하기 위해 Django의 `redirect` 함수를 사용합니다." +"요청을 관리자 색인 페이지로 리디렉션합니다. 이 함수는 들어오는 HTTP 요청을 처리하여 Django 관리자 인터페이스 인덱스 페이지로 " +"리디렉션합니다. HTTP 리디렉션을 처리하기 위해 Django의 `redirect` 함수를 사용합니다." -#: engine/core/views.py:428 +#: engine/core/views.py:429 msgid "Returns current version of the eVibes. " msgstr "현재 버전의 eVibes를 반환합니다." -#: engine/core/views.py:637 +#: engine/core/views.py:793 msgid "Returns custom variables for Dashboard. " msgstr "대시보드에 대한 사용자 지정 변수를 반환합니다." @@ -3146,22 +3071,21 @@ msgid "" "serializer classes based on the current action, customizable permissions, " "and rendering formats." msgstr "" -"Evibes 관련 작업을 관리하기 위한 뷰셋을 정의합니다. EvibesViewSet 클래스는 " -"ModelViewSet에서 상속되며 Evibes 엔티티에 대한 액션 및 연산을 처리하는 기능" -"을 제공합니다. 여기에는 현재 작업을 기반으로 하는 동적 직렬화기 클래스, 사용" -"자 지정 가능한 권한 및 렌더링 형식에 대한 지원이 포함됩니다." +"Evibes 관련 작업을 관리하기 위한 뷰셋을 정의합니다. EvibesViewSet 클래스는 ModelViewSet에서 상속되며 " +"Evibes 엔티티에 대한 액션 및 연산을 처리하는 기능을 제공합니다. 여기에는 현재 작업을 기반으로 하는 동적 직렬화기 클래스, 사용자" +" 지정 가능한 권한 및 렌더링 형식에 대한 지원이 포함됩니다." #: engine/core/viewsets.py:156 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" -"속성 그룹 객체를 관리하기 위한 뷰셋을 나타냅니다. 데이터의 필터링, 직렬화, 검" -"색 등 AttributeGroup과 관련된 작업을 처리합니다. 이 클래스는 애플리케이션의 " -"API 계층의 일부이며 AttributeGroup 데이터에 대한 요청 및 응답을 처리하는 표준" -"화된 방법을 제공합니다." +"속성 그룹 객체를 관리하기 위한 뷰셋을 나타냅니다. 데이터의 필터링, 직렬화, 검색 등 AttributeGroup과 관련된 작업을 " +"처리합니다. 이 클래스는 애플리케이션의 API 계층의 일부이며 AttributeGroup 데이터에 대한 요청 및 응답을 처리하는 표준화된" +" 방법을 제공합니다." #: engine/core/viewsets.py:175 msgid "" @@ -3172,24 +3096,21 @@ msgid "" "specific fields or retrieving detailed versus simplified information " "depending on the request." msgstr "" -"애플리케이션 내에서 속성 개체와 관련된 작업을 처리합니다. 속성 데이터와 상호 " -"작용할 수 있는 API 엔드포인트 세트를 제공합니다. 이 클래스는 속성 개체의 쿼" -"리, 필터링 및 직렬화를 관리하여 특정 필드별로 필터링하거나 요청에 따라 단순화" -"된 정보와 상세한 정보를 검색하는 등 반환되는 데이터를 동적으로 제어할 수 있도" -"록 합니다." +"애플리케이션 내에서 속성 개체와 관련된 작업을 처리합니다. 속성 데이터와 상호 작용할 수 있는 API 엔드포인트 세트를 제공합니다. 이 " +"클래스는 속성 개체의 쿼리, 필터링 및 직렬화를 관리하여 특정 필드별로 필터링하거나 요청에 따라 단순화된 정보와 상세한 정보를 검색하는 " +"등 반환되는 데이터를 동적으로 제어할 수 있도록 합니다." #: engine/core/viewsets.py:194 msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" -"속성값 객체를 관리하기 위한 뷰셋입니다. 이 뷰셋은 AttributeValue 객체를 나" -"열, 검색, 생성, 업데이트 및 삭제하기 위한 기능을 제공합니다. 이 뷰셋은 장고 " -"REST 프레임워크의 뷰셋 메커니즘과 통합되며 다양한 작업에 적절한 직렬화기를 사" -"용합니다. 필터링 기능은 DjangoFilterBackend를 통해 제공됩니다." +"속성값 객체를 관리하기 위한 뷰셋입니다. 이 뷰셋은 AttributeValue 객체를 나열, 검색, 생성, 업데이트 및 삭제하기 위한 " +"기능을 제공합니다. 이 뷰셋은 장고 REST 프레임워크의 뷰셋 메커니즘과 통합되며 다양한 작업에 적절한 직렬화기를 사용합니다. 필터링 " +"기능은 DjangoFilterBackend를 통해 제공됩니다." #: engine/core/viewsets.py:213 msgid "" @@ -3199,10 +3120,9 @@ msgid "" "The viewset also enforces permissions to ensure that only authorized users " "can access specific data." msgstr "" -"카테고리 관련 작업에 대한 보기를 관리합니다. CategoryViewSet 클래스는 시스템" -"에서 카테고리 모델과 관련된 작업을 처리하는 역할을 담당합니다. 카테고리 데이" -"터 검색, 필터링 및 직렬화를 지원합니다. 또한 이 뷰 집합은 권한이 부여된 사용" -"자만 특정 데이터에 액세스할 수 있도록 권한을 적용합니다." +"카테고리 관련 작업에 대한 보기를 관리합니다. CategoryViewSet 클래스는 시스템에서 카테고리 모델과 관련된 작업을 처리하는 " +"역할을 담당합니다. 카테고리 데이터 검색, 필터링 및 직렬화를 지원합니다. 또한 이 뷰 집합은 권한이 부여된 사용자만 특정 데이터에 " +"액세스할 수 있도록 권한을 적용합니다." #: engine/core/viewsets.py:326 msgid "" @@ -3211,9 +3131,8 @@ msgid "" "uses Django's ViewSet framework to simplify the implementation of API " "endpoints for Brand objects." msgstr "" -"브랜드 인스턴스를 관리하기 위한 뷰셋을 나타냅니다. 이 클래스는 브랜드 객체를 " -"쿼리, 필터링 및 직렬화하기 위한 기능을 제공합니다. 이 클래스는 장고의 뷰셋 프" -"레임워크를 사용하여 브랜드 객체에 대한 API 엔드포인트의 구현을 간소화합니다." +"브랜드 인스턴스를 관리하기 위한 뷰셋을 나타냅니다. 이 클래스는 브랜드 객체를 쿼리, 필터링 및 직렬화하기 위한 기능을 제공합니다. 이 " +"클래스는 장고의 뷰셋 프레임워크를 사용하여 브랜드 객체에 대한 API 엔드포인트의 구현을 간소화합니다." #: engine/core/viewsets.py:438 msgid "" @@ -3225,11 +3144,10 @@ 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 프레임워크와 통합됩니다. 제품 세부 정보 검색, 권한 적용, 제품의 관련 피드백에 액세스하는 " +"메서드가 포함되어 있습니다." #: engine/core/viewsets.py:574 msgid "" @@ -3239,56 +3157,50 @@ msgid "" "actions. The purpose of this class is to provide streamlined access to " "Vendor-related resources through the Django REST framework." msgstr "" -"벤더 객체를 관리하기 위한 뷰셋을 나타냅니다. 이 뷰셋을 통해 벤더 데이터를 가" -"져오고, 필터링하고, 직렬화할 수 있습니다. 다양한 작업을 처리하는 데 사용되는 " -"쿼리 집합, 필터 구성 및 직렬화기 클래스를 정의합니다. 이 클래스의 목적은 " -"Django REST 프레임워크를 통해 공급업체 관련 리소스에 대한 간소화된 액세스를 " -"제공하는 것입니다." +"벤더 객체를 관리하기 위한 뷰셋을 나타냅니다. 이 뷰셋을 통해 벤더 데이터를 가져오고, 필터링하고, 직렬화할 수 있습니다. 다양한 작업을" +" 처리하는 데 사용되는 쿼리 집합, 필터 구성 및 직렬화기 클래스를 정의합니다. 이 클래스의 목적은 Django REST 프레임워크를 " +"통해 공급업체 관련 리소스에 대한 간소화된 액세스를 제공하는 것입니다." #: engine/core/viewsets.py:594 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의 필터링 시스템을 " +"사용합니다." #: engine/core/viewsets.py:621 msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" -"주문 및 관련 작업을 관리하기 위한 뷰셋입니다. 이 클래스는 주문 객체를 검색, " -"수정, 관리하는 기능을 제공합니다. 여기에는 제품 추가 또는 제거, 등록 및 미등" -"록 사용자에 대한 구매 수행, 현재 인증된 사용자의 보류 중인 주문 검색 등 주문 " -"작업을 처리하기 위한 다양한 엔드포인트가 포함되어 있습니다. 뷰셋은 수행되는 " -"특정 작업에 따라 여러 직렬화기를 사용하며 주문 데이터와 상호 작용하는 동안 그" -"에 따라 권한을 적용합니다." +"주문 및 관련 작업을 관리하기 위한 뷰셋입니다. 이 클래스는 주문 객체를 검색, 수정, 관리하는 기능을 제공합니다. 여기에는 제품 추가 " +"또는 제거, 등록 및 미등록 사용자에 대한 구매 수행, 현재 인증된 사용자의 보류 중인 주문 검색 등 주문 작업을 처리하기 위한 다양한 " +"엔드포인트가 포함되어 있습니다. 뷰셋은 수행되는 특정 작업에 따라 여러 직렬화기를 사용하며 주문 데이터와 상호 작용하는 동안 그에 따라 " +"권한을 적용합니다." #: engine/core/viewsets.py:825 msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" -"주문 제품 엔티티를 관리하기 위한 뷰셋을 제공합니다. 이 뷰셋을 사용하면 주문 " -"제품 모델에 특정한 CRUD 작업 및 사용자 지정 작업을 수행할 수 있습니다. 여기에" -"는 요청된 작업을 기반으로 필터링, 권한 확인 및 직렬화기 전환이 포함됩니다. 또" -"한 주문 제품 인스턴스에 대한 피드백 처리를 위한 세부 작업도 제공합니다." +"주문 제품 엔티티를 관리하기 위한 뷰셋을 제공합니다. 이 뷰셋을 사용하면 주문 제품 모델에 특정한 CRUD 작업 및 사용자 지정 작업을 " +"수행할 수 있습니다. 여기에는 요청된 작업을 기반으로 필터링, 권한 확인 및 직렬화기 전환이 포함됩니다. 또한 주문 제품 인스턴스에 대한" +" 피드백 처리를 위한 세부 작업도 제공합니다." #: engine/core/viewsets.py:879 msgid "Manages operations related to Product images in the application. " @@ -3298,8 +3210,7 @@ msgstr "애플리케이션에서 제품 이미지와 관련된 작업을 관리 msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." -msgstr "" -"다양한 API 작업을 통해 프로모션 코드 인스턴스의 검색 및 처리를 관리합니다." +msgstr "다양한 API 작업을 통해 프로모션 코드 인스턴스의 검색 및 처리를 관리합니다." #: engine/core/viewsets.py:914 msgid "Represents a view set for managing promotions. " @@ -3313,18 +3224,15 @@ msgstr "시스템에서 주식 데이터와 관련된 작업을 처리합니다. msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." msgstr "" -"위시리스트 작업을 관리하기 위한 뷰셋입니다. 위시리스트뷰셋은 사용자의 위시리" -"스트와 상호 작용할 수 있는 엔드포인트를 제공하여 위시리스트 내의 제품을 검" -"색, 수정 및 사용자 지정할 수 있도록 합니다. 이 뷰셋은 위시리스트 제품에 대한 " -"추가, 제거 및 대량 작업과 같은 기능을 용이하게 합니다. 명시적인 권한이 부여되" -"지 않는 한 사용자가 자신의 위시리스트만 관리할 수 있도록 권한 검사가 통합되" -"어 있습니다." +"위시리스트 작업을 관리하기 위한 뷰셋입니다. 위시리스트뷰셋은 사용자의 위시리스트와 상호 작용할 수 있는 엔드포인트를 제공하여 위시리스트 " +"내의 제품을 검색, 수정 및 사용자 지정할 수 있도록 합니다. 이 뷰셋은 위시리스트 제품에 대한 추가, 제거 및 대량 작업과 같은 기능을" +" 용이하게 합니다. 명시적인 권한이 부여되지 않는 한 사용자가 자신의 위시리스트만 관리할 수 있도록 권한 검사가 통합되어 있습니다." #: engine/core/viewsets.py:1056 msgid "" @@ -3334,10 +3242,9 @@ msgid "" "different HTTP methods, serializer overrides, and permission handling based " "on the request context." msgstr "" -"이 클래스는 `주소` 객체를 관리하기 위한 뷰셋 기능을 제공합니다. 주소 뷰셋 클" -"래스는 주소 엔티티와 관련된 CRUD 작업, 필터링 및 사용자 정의 작업을 가능하게 " -"합니다. 여기에는 다양한 HTTP 메서드, 직렬화기 재정의, 요청 컨텍스트에 따른 권" -"한 처리를 위한 특수 동작이 포함되어 있습니다." +"이 클래스는 `주소` 객체를 관리하기 위한 뷰셋 기능을 제공합니다. 주소 뷰셋 클래스는 주소 엔티티와 관련된 CRUD 작업, 필터링 및 " +"사용자 정의 작업을 가능하게 합니다. 여기에는 다양한 HTTP 메서드, 직렬화기 재정의, 요청 컨텍스트에 따른 권한 처리를 위한 특수 " +"동작이 포함되어 있습니다." #: engine/core/viewsets.py:1123 #, python-brace-format @@ -3352,7 +3259,6 @@ msgid "" "using the specified filter backend and dynamically uses different " "serializers based on the action being performed." msgstr "" -"애플리케이션 내에서 제품 태그와 관련된 작업을 처리합니다. 이 클래스는 제품 태" -"그 객체를 검색, 필터링 및 직렬화하기 위한 기능을 제공합니다. 지정된 필터 백엔" -"드를 사용하여 특정 속성에 대한 유연한 필터링을 지원하며 수행 중인 작업에 따" -"라 다양한 직렬화기를 동적으로 사용합니다." +"애플리케이션 내에서 제품 태그와 관련된 작업을 처리합니다. 이 클래스는 제품 태그 객체를 검색, 필터링 및 직렬화하기 위한 기능을 " +"제공합니다. 지정된 필터 백엔드를 사용하여 특정 속성에 대한 유연한 필터링을 지원하며 수행 중인 작업에 따라 다양한 직렬화기를 동적으로 " +"사용합니다." diff --git a/engine/core/locale/nl_NL/LC_MESSAGES/django.mo b/engine/core/locale/nl_NL/LC_MESSAGES/django.mo index 51272dbbb4936192c62fc70bddb47163c11f70fe..c45e86033b93b68e1c7d1f6e65cdc49edf7c917c 100644 GIT binary patch delta 14876 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 delta 14880 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\n" "Language-Team: BRITISH ENGLISH \n" @@ -27,7 +27,8 @@ msgstr "Is actief" #: 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" @@ -154,7 +155,8 @@ msgstr "Geleverd" msgid "canceled" msgstr "Geannuleerd" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Mislukt" @@ -206,8 +208,7 @@ msgid "" "apply key, data and timeout with authentication to write data to cache." msgstr "" "Alleen een sleutel gebruiken om toegestane gegevens uit de cache te lezen.\n" -"Sleutel, gegevens en time-out met verificatie toepassen om gegevens naar de " -"cache te schrijven." +"Sleutel, gegevens en time-out met verificatie toepassen om gegevens naar de cache te schrijven." #: engine/core/docs/drf/views.py:62 msgid "get a list of supported languages" @@ -273,7 +274,8 @@ msgstr "" "opslaan" #: engine/core/docs/drf/viewsets.py:96 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Enkele velden van een bestaande attribuutgroep herschrijven door niet-" "wijzigbare velden op te slaan" @@ -328,7 +330,8 @@ msgstr "" "attributen worden opgeslagen" #: engine/core/docs/drf/viewsets.py:186 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" "Herschrijf sommige velden van een bestaande attribuutwaarde door niet-" "wijzigbare velden op te slaan" @@ -374,7 +377,8 @@ msgstr "SEO Meta momentopname" #: engine/core/docs/drf/viewsets.py:253 msgid "returns a snapshot of the category's SEO meta data" msgstr "" -"Geeft als resultaat een momentopname van de SEO-metagegevens van de categorie" +"Geeft als resultaat een momentopname van de SEO-metagegevens van de " +"categorie" #: engine/core/docs/drf/viewsets.py:274 msgid "list all orders (simple view)" @@ -383,15 +387,16 @@ msgstr "Alle categorieën weergeven (eenvoudige weergave)" #: engine/core/docs/drf/viewsets.py:275 msgid "for non-staff users, only their own orders are returned." msgstr "" -"Voor niet-personeelsleden worden alleen hun eigen bestellingen geretourneerd." +"Voor niet-personeelsleden worden alleen hun eigen bestellingen " +"geretourneerd." #: engine/core/docs/drf/viewsets.py:281 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" -"Hoofdlettergevoelig substring zoeken in human_readable_id, order_products." -"product.name en order_products.product.partnumber" +"Hoofdlettergevoelig substring zoeken in human_readable_id, " +"order_products.product.name en order_products.product.partnumber" #: engine/core/docs/drf/viewsets.py:288 msgid "Filter orders with buy_time >= this ISO 8601 datetime" @@ -424,13 +429,13 @@ msgstr "Filter op bestelstatus (hoofdlettergevoelige substringmatch)" #: engine/core/docs/drf/viewsets.py:324 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "Sorteer op een van: uuid, human_readable_id, user_email, gebruiker, status, " -"gemaakt, gewijzigd, buy_time, willekeurig. Voorvoegsel met '-' voor aflopend " -"(bijv. '-buy_time')." +"gemaakt, gewijzigd, buy_time, willekeurig. Voorvoegsel met '-' voor aflopend" +" (bijv. '-buy_time')." #: engine/core/docs/drf/viewsets.py:336 msgid "retrieve a single order (detailed view)" @@ -491,7 +496,8 @@ msgstr "een bestelling kopen zonder een account aan te maken" #: engine/core/docs/drf/viewsets.py:409 msgid "finalizes the order purchase for a non-registered user." msgstr "" -"Rondt de aankoop van de bestelling af voor een niet-geregistreerde gebruiker." +"Rondt de aankoop van de bestelling af voor een niet-geregistreerde " +"gebruiker." #: engine/core/docs/drf/viewsets.py:420 msgid "add product to order" @@ -635,28 +641,18 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "Filter op een of meer attribuutnaam-/waardeparen. \n" "- **Syntaxis**: `attr_name=methode-waarde[;attr2=methode2-waarde2]...`\n" -"- **Methodes** (standaard op `icontains` indien weggelaten): `iexact`, " -"`exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, " -"`endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`.\n" -"- Waarde typen**: JSON wordt eerst geprobeerd (zodat je lijsten/dicten kunt " -"doorgeven), `true`/`false` voor booleans, integers, floats; anders behandeld " -"als string. \n" -"- **Base64**: prefix met `b64-` om URL-veilige base64-encodering van de ruwe " -"waarde. \n" +"- **Methodes** (standaard op `icontains` indien weggelaten): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`.\n" +"- Waarde typen**: JSON wordt eerst geprobeerd (zodat je lijsten/dicten kunt doorgeven), `true`/`false` voor booleans, integers, floats; anders behandeld als string. \n" +"- **Base64**: prefix met `b64-` om URL-veilige base64-encodering van de ruwe waarde. \n" "Voorbeelden: \n" "`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`,\n" "`b64-description=icontains-aGVhdC1jb2xk`." @@ -671,14 +667,11 @@ msgstr "(exacte) UUID van product" #: engine/core/docs/drf/viewsets.py:581 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Door komma's gescheiden lijst van velden om op te sorteren. Voorvoegsel met " -"`-` voor aflopend. \n" -"**Toegestaan:** uuid, beoordeling, naam, slug, gemaakt, gewijzigd, prijs, " -"willekeurig" +"Door komma's gescheiden lijst van velden om op te sorteren. Voorvoegsel met `-` voor aflopend. \n" +"**Toegestaan:** uuid, beoordeling, naam, slug, gemaakt, gewijzigd, prijs, willekeurig" #: engine/core/docs/drf/viewsets.py:598 engine/core/docs/drf/viewsets.py:599 msgid "retrieve a single product (detailed view)" @@ -794,7 +787,8 @@ msgstr "alle order-productrelaties weergeven (eenvoudige weergave)" #: engine/core/docs/drf/viewsets.py:871 msgid "retrieve a single order–product relation (detailed view)" -msgstr "een enkele bestelling-productrelatie ophalen (gedetailleerde weergave)" +msgstr "" +"een enkele bestelling-productrelatie ophalen (gedetailleerde weergave)" #: engine/core/docs/drf/viewsets.py:881 msgid "create a new order–product relation" @@ -1158,7 +1152,7 @@ msgstr "Gecachte gegevens" msgid "camelized JSON data from the requested URL" msgstr "Camelized JSON-gegevens van de opgevraagde URL" -#: engine/core/graphene/mutations.py:67 engine/core/views.py:256 +#: engine/core/graphene/mutations.py:67 engine/core/views.py:257 msgid "only URLs starting with http(s):// are allowed" msgstr "Alleen URL's die beginnen met http(s):// zijn toegestaan" @@ -1242,8 +1236,8 @@ msgstr "Een bestelling kopen" #: engine/core/graphene/mutations.py:516 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" @@ -1321,7 +1315,8 @@ msgstr "" "filteren." #: engine/core/graphene/object_types.py:203 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" "Minimale en maximale prijzen voor producten in deze categorie, indien " "beschikbaar." @@ -1597,8 +1592,8 @@ msgstr "" "Vertegenwoordigt een groep attributen, die hiërarchisch kan zijn. Deze " "klasse wordt gebruikt om groepen van attributen te beheren en te " "organiseren. Een attribuutgroep kan een bovenliggende groep hebben, die een " -"hiërarchische structuur vormt. Dit kan nuttig zijn voor het categoriseren en " -"effectiever beheren van attributen in een complex systeem." +"hiërarchische structuur vormt. Dit kan nuttig zijn voor het categoriseren en" +" effectiever beheren van attributen in een complex systeem." #: engine/core/models.py:91 msgid "parent of this group" @@ -1626,8 +1621,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 " @@ -1688,8 +1683,8 @@ msgid "" msgstr "" "Vertegenwoordigt een producttag die wordt gebruikt om producten te " "classificeren of te identificeren. De klasse ProductTag is ontworpen om " -"producten uniek te identificeren en te classificeren door een combinatie van " -"een interne tagidentifier en een gebruiksvriendelijke weergavenaam. Het " +"producten uniek te identificeren en te classificeren door een combinatie van" +" een interne tagidentifier en een gebruiksvriendelijke weergavenaam. Het " "ondersteunt bewerkingen die geëxporteerd worden door mixins en biedt " "aanpassing van metadata voor administratieve doeleinden." @@ -1747,12 +1742,12 @@ msgstr "" "Vertegenwoordigt een categorie-entiteit voor het organiseren en groeperen " "van gerelateerde items in een hiërarchische structuur. Categorieën kunnen " "hiërarchische relaties hebben met andere categorieën, waarbij ouder-kind " -"relaties worden ondersteund. De klasse bevat velden voor metadata en visuele " -"weergave, die dienen als basis voor categorie-gerelateerde functies. Deze " -"klasse wordt meestal gebruikt om productcategorieën of andere gelijksoortige " -"groeperingen binnen een applicatie te definiëren en te beheren, waarbij " -"gebruikers of beheerders de naam, beschrijving en hiërarchie van categorieën " -"kunnen specificeren en attributen zoals afbeeldingen, tags of prioriteit " +"relaties worden ondersteund. De klasse bevat velden voor metadata en visuele" +" weergave, die dienen als basis voor categorie-gerelateerde functies. Deze " +"klasse wordt meestal gebruikt om productcategorieën of andere gelijksoortige" +" groeperingen binnen een applicatie te definiëren en te beheren, waarbij " +"gebruikers of beheerders de naam, beschrijving en hiërarchie van categorieën" +" kunnen specificeren en attributen zoals afbeeldingen, tags of prioriteit " "kunnen toekennen." #: engine/core/models.py:274 @@ -1804,7 +1799,8 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" "Vertegenwoordigt een merkobject in het systeem. Deze klasse behandelt " "informatie en attributen met betrekking tot een merk, inclusief de naam, " @@ -1854,8 +1850,8 @@ msgstr "Categorieën" #: engine/core/models.py:508 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 " @@ -2008,13 +2004,13 @@ 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 " @@ -2081,12 +2077,12 @@ msgstr "Attribuut" #: engine/core/models.py:777 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." @@ -2105,8 +2101,8 @@ msgstr "De specifieke waarde voor dit kenmerk" #: engine/core/models.py:815 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 "" @@ -2155,8 +2151,8 @@ msgid "" "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 " @@ -2233,8 +2229,8 @@ msgid "" "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 " @@ -2258,20 +2254,20 @@ msgstr "Onopgelost" #: engine/core/models.py:1014 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, " @@ -2393,7 +2389,8 @@ msgstr "Begin geldigheidsduur" #: engine/core/models.py:1120 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "" -"Tijdstempel wanneer de promocode werd gebruikt, leeg indien nog niet gebruikt" +"Tijdstempel wanneer de promocode werd gebruikt, leeg indien nog niet " +"gebruikt" #: engine/core/models.py:1121 msgid "usage timestamp" @@ -2420,8 +2417,8 @@ msgid "" "only one type of discount should be defined (amount or percent), but not " "both or neither." msgstr "" -"Er moet slechts één type korting worden gedefinieerd (bedrag of percentage), " -"maar niet beide of geen van beide." +"Er moet slechts één type korting worden gedefinieerd (bedrag of percentage)," +" maar niet beide of geen van beide." #: engine/core/models.py:1171 msgid "promocode already used" @@ -2436,8 +2433,8 @@ msgstr "Ongeldig kortingstype voor promocode {self.uuid}!" 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 "" @@ -2538,8 +2535,8 @@ msgstr "Je kunt niet meer producten toevoegen dan er op voorraad zijn" #: engine/core/models.py:1428 msgid "you cannot remove products from an order that is not a pending one" msgstr "" -"U kunt geen producten verwijderen uit een bestelling die niet in behandeling " -"is." +"U kunt geen producten verwijderen uit een bestelling die niet in behandeling" +" is." #: engine/core/models.py:1416 #, python-brace-format @@ -2574,8 +2571,8 @@ msgstr "Je kunt geen lege bestelling kopen!" #: engine/core/models.py:1522 msgid "you cannot buy an order without a user" msgstr "" -"U kunt geen producten verwijderen uit een bestelling die niet in behandeling " -"is." +"U kunt geen producten verwijderen uit een bestelling die niet in behandeling" +" is." #: engine/core/models.py:1536 msgid "a user without a balance cannot buy with balance" @@ -2598,7 +2595,8 @@ msgstr "" msgid "" "invalid payment method: {payment_method} from {available_payment_methods}" msgstr "" -"Ongeldige betalingsmethode: {payment_method} van {available_payment_methods}!" +"Ongeldige betalingsmethode: {payment_method} van " +"{available_payment_methods}!" #: engine/core/models.py:1699 msgid "" @@ -2609,8 +2607,8 @@ msgid "" "fields to effectively model and manage feedback data." msgstr "" "Beheert gebruikersfeedback voor producten. Deze klasse is ontworpen om " -"feedback van gebruikers over specifieke producten die ze hebben gekocht vast " -"te leggen en op te slaan. De klasse bevat attributen voor het opslaan van " +"feedback van gebruikers over specifieke producten die ze hebben gekocht vast" +" te leggen en op te slaan. De klasse bevat attributen voor het opslaan van " "opmerkingen van gebruikers, een verwijzing naar het betreffende product in " "de bestelling en een door de gebruiker toegekende beoordeling. De klasse " "gebruikt databasevelden om feedbackgegevens effectief te modelleren en te " @@ -2625,7 +2623,8 @@ msgid "feedback comments" msgstr "Reacties" #: engine/core/models.py:1719 -msgid "references the specific product in an order that this feedback is about" +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" @@ -2662,8 +2661,8 @@ msgstr "" "het producttegoed of het toevoegen van feedback. Dit model biedt ook " "methoden en eigenschappen die bedrijfslogica ondersteunen, zoals het " "berekenen van de totaalprijs of het genereren van een download-URL voor " -"digitale producten. Het model integreert met de modellen Order en Product en " -"slaat een verwijzing ernaar op." +"digitale producten. Het model integreert met de modellen Order en Product en" +" slaat een verwijzing ernaar op." #: engine/core/models.py:1757 msgid "the price paid by the customer for this product at purchase time" @@ -2733,8 +2732,8 @@ msgstr "Verkeerde actie opgegeven voor feedback: {action}!" #: engine/core/models.py:1888 msgid "you cannot feedback an order which is not received" msgstr "" -"U kunt geen producten verwijderen uit een bestelling die niet in behandeling " -"is." +"U kunt geen producten verwijderen uit een bestelling die niet in behandeling" +" is." #: engine/core/models.py:1894 msgid "name" @@ -2773,9 +2772,9 @@ 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 " @@ -2829,8 +2828,8 @@ msgid "No customer activity in the last 30 days." msgstr "Geen klantenactiviteit in de afgelopen 30 dagen." #: engine/core/templates/admin/dashboard/_daily_sales.html:5 -msgid "Daily sales (30d)" -msgstr "Dagelijkse verkoop (30d)" +msgid "Daily sales" +msgstr "Dagelijkse verkoop" #: engine/core/templates/admin/dashboard/_daily_sales.html:59 msgid "Orders (FINISHED)" @@ -2841,6 +2840,7 @@ msgid "Gross revenue" msgstr "Bruto-omzet" #: engine/core/templates/admin/dashboard/_daily_sales.html:106 +#: engine/core/templates/admin/dashboard/_kpis.html:20 msgid "Orders" msgstr "Bestellingen" @@ -2848,6 +2848,10 @@ msgstr "Bestellingen" msgid "Gross" msgstr "Bruto" +#: engine/core/templates/admin/dashboard/_header.html:3 +msgid "Dashboard" +msgstr "Dashboard" + #: engine/core/templates/admin/dashboard/_income_overview.html:7 msgid "Income overview" msgstr "Overzicht inkomsten" @@ -2876,20 +2880,32 @@ msgid "No data" msgstr "Geen datum" #: engine/core/templates/admin/dashboard/_kpis.html:6 -msgid "Revenue (gross, 30d)" -msgstr "Inkomsten (bruto, 30d)" +msgid "GMV" +msgstr "GMV" -#: engine/core/templates/admin/dashboard/_kpis.html:15 -msgid "Revenue (net, 30d)" -msgstr "Inkomsten (netto, 30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:34 +msgid "AOV" +msgstr "AOV" -#: engine/core/templates/admin/dashboard/_kpis.html:24 -msgid "Returns (30d)" -msgstr "Retourzendingen (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:48 +msgid "Net revenue" +msgstr "Netto-inkomsten" -#: engine/core/templates/admin/dashboard/_kpis.html:33 -msgid "Processed orders (30d)" -msgstr "Verwerkte orders (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:62 +msgid "Refund rate" +msgstr "Restitutie" + +#: engine/core/templates/admin/dashboard/_kpis.html:73 +msgid "returned" +msgstr "Geretourneerd" + +#: engine/core/templates/admin/dashboard/_low_stock.html:5 +msgid "Low stock" +msgstr "Lage voorraad" + +#: engine/core/templates/admin/dashboard/_low_stock.html:29 +msgid "No low stock items." +msgstr "Geen artikelen met weinig voorraad." #: engine/core/templates/admin/dashboard/_most_returned.html:5 msgid "Most returned products (30d)" @@ -2904,11 +2920,11 @@ msgid "Most wished product" msgstr "Meest gewenste product" #: engine/core/templates/admin/dashboard/_product_lists.html:33 -#: engine/core/templates/admin/dashboard/_product_lists.html:67 +#: engine/core/templates/admin/dashboard/_product_lists.html:68 msgid "No data yet." msgstr "Nog geen gegevens." -#: engine/core/templates/admin/dashboard/_product_lists.html:40 +#: engine/core/templates/admin/dashboard/_product_lists.html:41 msgid "Most popular product" msgstr "Populairste product" @@ -2944,10 +2960,6 @@ msgstr "Geen categorieverkopen in de afgelopen 30 dagen." msgid "Django site admin" msgstr "Django website beheerder" -#: engine/core/templates/admin/index.html:20 -msgid "Dashboard" -msgstr "Dashboard" - #: 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 @@ -2977,8 +2989,7 @@ msgstr "Hallo %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" "Hartelijk dank voor uw bestelling #%(order.pk)s! We zijn blij om u te " @@ -3093,8 +3104,7 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" "Bedankt voor uw bestelling! We zijn blij om uw aankoop te bevestigen. " @@ -3131,7 +3141,8 @@ msgstr "Zowel gegevens als time-out zijn vereist" #: 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" #: engine/core/utils/emailing.py:27 #, python-brace-format @@ -3168,7 +3179,7 @@ msgstr "" "Afbeeldingsafmetingen mogen niet groter zijn dan w{max_width} x " "h{max_height} pixels" -#: engine/core/views.py:90 +#: engine/core/views.py:91 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." @@ -3177,7 +3188,7 @@ msgstr "" "terug. Het zorgt ervoor dat het antwoord de juiste inhoudstype header voor " "XML bevat." -#: engine/core/views.py:105 +#: engine/core/views.py:106 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " @@ -3187,100 +3198,89 @@ msgstr "" "verwerkt het verzoek, haalt het juiste sitemap detail antwoord op en stelt " "de Content-Type header in voor XML." -#: engine/core/views.py:140 +#: engine/core/views.py:141 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "Geeft een lijst met ondersteunde talen en de bijbehorende informatie." -#: engine/core/views.py:172 +#: engine/core/views.py:173 msgid "Returns the parameters of the website as a JSON object." msgstr "Retourneert de parameters van de website als een JSON-object." -#: engine/core/views.py:191 +#: engine/core/views.py:192 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." msgstr "" -"Verwerkt cachebewerkingen zoals het lezen en instellen van cachegegevens met " -"een opgegeven sleutel en time-out." +"Verwerkt cachebewerkingen zoals het lezen en instellen van cachegegevens met" +" een opgegeven sleutel en time-out." -#: engine/core/views.py:218 +#: engine/core/views.py:219 msgid "Handles `contact us` form submissions." msgstr "Handelt `contact met ons` formulier inzendingen af." -#: engine/core/views.py:239 +#: engine/core/views.py:240 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." msgstr "" -"Handelt verzoeken af voor het verwerken en valideren van URL's van inkomende " -"POST-verzoeken." +"Handelt verzoeken af voor het verwerken en valideren van URL's van inkomende" +" POST-verzoeken." -#: engine/core/views.py:279 +#: engine/core/views.py:280 msgid "Handles global search queries." msgstr "Handelt globale zoekopdrachten af." -#: engine/core/views.py:294 +#: engine/core/views.py:295 msgid "Handles the logic of buying as a business without registration." msgstr "Behandelt de logica van kopen als bedrijf zonder registratie." -#: engine/core/views.py:331 +#: engine/core/views.py:332 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" -"Handelt het downloaden af van een digitaal actief dat is gekoppeld aan een " -"bestelling.\n" -"Deze functie probeert het digitale activabestand te serveren dat zich in de " -"opslagmap van het project bevindt. Als het bestand niet wordt gevonden, " -"wordt er een HTTP 404-fout weergegeven om aan te geven dat de bron niet " -"beschikbaar is." +"Handelt het downloaden af van een digitaal actief dat is gekoppeld aan een bestelling.\n" +"Deze functie probeert het digitale activabestand te serveren dat zich in de opslagmap van het project bevindt. Als het bestand niet wordt gevonden, wordt er een HTTP 404-fout weergegeven om aan te geven dat de bron niet beschikbaar is." -#: engine/core/views.py:342 +#: engine/core/views.py:343 msgid "order_product_uuid is required" msgstr "order_product_uuid is vereist" -#: engine/core/views.py:349 +#: engine/core/views.py:350 msgid "order product does not exist" msgstr "bestelproduct bestaat niet" -#: engine/core/views.py:352 +#: engine/core/views.py:353 msgid "you can only download the digital asset once" msgstr "U kunt het digitale goed maar één keer downloaden" -#: engine/core/views.py:355 +#: engine/core/views.py:356 msgid "the order must be paid before downloading the digital asset" msgstr "" "de bestelling moet worden betaald voordat het digitale actief kan worden " "gedownload" -#: engine/core/views.py:361 +#: engine/core/views.py:362 msgid "the order product does not have a product" msgstr "Het bestelde product heeft geen product" -#: engine/core/views.py:398 +#: engine/core/views.py:399 msgid "favicon not found" msgstr "favicon niet gevonden" -#: engine/core/views.py:403 +#: engine/core/views.py:404 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Handelt verzoeken af voor de favicon van een website.\n" -"Deze functie probeert het favicon-bestand te serveren dat zich in de " -"statische map van het project bevindt. Als het favicon-bestand niet wordt " -"gevonden, wordt er een HTTP 404-fout weergegeven om aan te geven dat de bron " -"niet beschikbaar is." +"Deze functie probeert het favicon-bestand te serveren dat zich in de statische map van het project bevindt. Als het favicon-bestand niet wordt gevonden, wordt er een HTTP 404-fout weergegeven om aan te geven dat de bron niet beschikbaar is." -#: engine/core/views.py:415 +#: engine/core/views.py:416 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 " @@ -3288,11 +3288,11 @@ msgstr "" "Django admin-interface. Het gebruikt Django's `redirect` functie voor het " "afhandelen van de HTTP-omleiding." -#: engine/core/views.py:428 +#: engine/core/views.py:429 msgid "Returns current version of the eVibes. " msgstr "Geeft als resultaat de huidige versie van eVibes." -#: engine/core/views.py:637 +#: engine/core/views.py:793 msgid "Returns custom variables for Dashboard. " msgstr "Geeft aangepaste variabelen voor Dashboard." @@ -3304,18 +3304,19 @@ 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." #: engine/core/viewsets.py:156 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, " @@ -3336,20 +3337,21 @@ msgstr "" "applicatie. Biedt een set API-eindpunten voor interactie met " "Attribuutgegevens. Deze klasse beheert het opvragen, filteren en seriëren " "van Attribuutobjecten, waardoor dynamische controle over de geretourneerde " -"gegevens mogelijk is, zoals filteren op specifieke velden of het ophalen van " -"gedetailleerde versus vereenvoudigde informatie afhankelijk van het verzoek." +"gegevens mogelijk is, zoals filteren op specifieke velden of het ophalen van" +" gedetailleerde versus vereenvoudigde informatie afhankelijk van het " +"verzoek." #: engine/core/viewsets.py:194 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." @@ -3365,8 +3367,8 @@ msgstr "" "CategoryViewSet is verantwoordelijk voor het afhandelen van bewerkingen met " "betrekking tot het categoriemodel in het systeem. Het ondersteunt het " "ophalen, filteren en seriëren van categoriegegevens. De viewset dwingt ook " -"rechten af om ervoor te zorgen dat alleen bevoegde gebruikers toegang hebben " -"tot specifieke gegevens." +"rechten af om ervoor te zorgen dat alleen bevoegde gebruikers toegang hebben" +" tot specifieke gegevens." #: engine/core/viewsets.py:326 msgid "" @@ -3410,8 +3412,8 @@ msgstr "" "Vertegenwoordigt een viewset voor het beheren van Vendor-objecten. Met deze " "viewset kunnen gegevens van een verkoper worden opgehaald, gefilterd en " "geserialiseerd. Het definieert de queryset, filter configuraties, en " -"serializer klassen gebruikt om verschillende acties af te handelen. Het doel " -"van deze klasse is om gestroomlijnde toegang te bieden tot Vendor-" +"serializer klassen gebruikt om verschillende acties af te handelen. Het doel" +" van deze klasse is om gestroomlijnde toegang te bieden tot Vendor-" "gerelateerde bronnen via het Django REST framework." #: engine/core/viewsets.py:594 @@ -3419,8 +3421,8 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `EvibesViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "Weergave van een weergaveset die Feedback-objecten afhandelt. Deze klasse " @@ -3436,9 +3438,9 @@ msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" "ViewSet voor het beheren van orders en gerelateerde operaties. Deze klasse " @@ -3455,15 +3457,15 @@ msgstr "" msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" -"Biedt een viewset voor het beheren van OrderProduct-entiteiten. Deze viewset " -"maakt CRUD-bewerkingen en aangepaste acties mogelijk die specifiek zijn voor " -"het OrderProduct-model. Het omvat filteren, toestemmingscontroles en " -"serializer-omschakeling op basis van de gevraagde actie. Bovendien biedt het " -"een gedetailleerde actie voor het afhandelen van feedback op OrderProduct " +"Biedt een viewset voor het beheren van OrderProduct-entiteiten. Deze viewset" +" maakt CRUD-bewerkingen en aangepaste acties mogelijk die specifiek zijn " +"voor het OrderProduct-model. Het omvat filteren, toestemmingscontroles en " +"serializer-omschakeling op basis van de gevraagde actie. Bovendien biedt het" +" een gedetailleerde actie voor het afhandelen van feedback op OrderProduct " "instanties" #: engine/core/viewsets.py:879 @@ -3476,8 +3478,8 @@ msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." msgstr "" -"Beheert het ophalen en afhandelen van PromoCode-instanties via verschillende " -"API-acties." +"Beheert het ophalen en afhandelen van PromoCode-instanties via verschillende" +" API-acties." #: engine/core/viewsets.py:914 msgid "Represents a view set for managing promotions. " @@ -3492,8 +3494,8 @@ msgstr "" msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." @@ -3515,9 +3517,9 @@ msgid "" "different HTTP methods, serializer overrides, and permission handling based " "on the request context." msgstr "" -"Deze klasse biedt viewsetfunctionaliteit voor het beheren van `Adres`-" -"objecten. De klasse AddressViewSet maakt CRUD-bewerkingen, filteren en " -"aangepaste acties met betrekking tot adresentiteiten mogelijk. Het bevat " +"Deze klasse biedt viewsetfunctionaliteit voor het beheren van " +"`Adres`-objecten. De klasse AddressViewSet maakt CRUD-bewerkingen, filteren " +"en aangepaste acties met betrekking tot adresentiteiten mogelijk. Het bevat " "gespecialiseerde gedragingen voor verschillende HTTP methoden, serializer " "omzeilingen en toestemmingsafhandeling gebaseerd op de verzoekcontext." @@ -3535,8 +3537,8 @@ msgid "" "serializers based on the action being performed." msgstr "" "Behandelt bewerkingen met betrekking tot Product Tags binnen de applicatie. " -"Deze klasse biedt functionaliteit voor het ophalen, filteren en serialiseren " -"van Product Tag objecten. Het ondersteunt flexibel filteren op specifieke " +"Deze klasse biedt functionaliteit voor het ophalen, filteren en serialiseren" +" van Product Tag objecten. Het ondersteunt flexibel filteren op specifieke " "attributen met behulp van de gespecificeerde filter backend en gebruikt " "dynamisch verschillende serializers op basis van de actie die wordt " "uitgevoerd." diff --git a/engine/core/locale/no_NO/LC_MESSAGES/django.mo b/engine/core/locale/no_NO/LC_MESSAGES/django.mo index a47aa432ca5308e943ce67f28b564c83059fcef4..ce166568760ba6446734778bf2707e8ff3dc6a94 100644 GIT binary patch delta 14878 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 dmE{{us*t8)MV delta 14869 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 Yd!wAbr4;Yno6$3-%Fft&o)!iE4}jFG3IG5A diff --git a/engine/core/locale/no_NO/LC_MESSAGES/django.po b/engine/core/locale/no_NO/LC_MESSAGES/django.po index 83b3463f..46dfb593 100644 --- a/engine/core/locale/no_NO/LC_MESSAGES/django.po +++ b/engine/core/locale/no_NO/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -28,7 +28,8 @@ msgstr "Er aktiv" #: engine/core/abstract.py: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" @@ -155,7 +156,8 @@ msgstr "Leveres" msgid "canceled" msgstr "Avlyst" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Mislyktes" @@ -193,8 +195,8 @@ msgid "" "negotiation. Language can be selected with Accept-Language and query " "parameter both." msgstr "" -"OpenApi3-skjema for dette API-et. Format kan velges via innholdsforhandling. " -"Språk kan velges både med Accept-Language og spørringsparameteren." +"OpenApi3-skjema for dette API-et. Format kan velges via innholdsforhandling." +" Språk kan velges både med Accept-Language og spørringsparameteren." #: engine/core/docs/drf/views.py:44 engine/core/graphene/mutations.py:37 msgid "cache I/O" @@ -206,8 +208,7 @@ msgid "" "apply key, data and timeout with authentication to write data to cache." msgstr "" "Bruk bare en nøkkel for å lese tillatte data fra hurtigbufferen.\n" -"Bruk nøkkel, data og tidsavbrudd med autentisering for å skrive data til " -"hurtigbufferen." +"Bruk nøkkel, data og tidsavbrudd med autentisering for å skrive data til hurtigbufferen." #: engine/core/docs/drf/views.py:62 msgid "get a list of supported languages" @@ -272,7 +273,8 @@ msgstr "" "attributter" #: engine/core/docs/drf/viewsets.py:96 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Skriv om noen av feltene i en eksisterende attributtgruppe for å lagre ikke-" "redigerbare felt" @@ -327,7 +329,8 @@ msgstr "" "attributter" #: engine/core/docs/drf/viewsets.py:186 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" "Skriv om noen av feltene i en eksisterende attributtverdi og lagre ikke-" "redigerbare felt" @@ -384,8 +387,8 @@ msgstr "For ikke-ansatte brukere returneres bare deres egne bestillinger." #: engine/core/docs/drf/viewsets.py:281 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" "Søk etter store og små bokstaver på tvers av human_readable_id, " "order_products.product.name og order_products.product.partnumber" @@ -420,13 +423,13 @@ msgstr "Filtrer etter ordrestatus (skiller mellom store og små bokstaver)" #: engine/core/docs/drf/viewsets.py:324 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "Bestill etter en av: uuid, human_readable_id, user_email, user, status, " -"created, modified, buy_time, random. Prefiks med '-' for synkende rekkefølge " -"(f.eks. '-buy_time')." +"created, modified, buy_time, random. Prefiks med '-' for synkende rekkefølge" +" (f.eks. '-buy_time')." #: engine/core/docs/drf/viewsets.py:336 msgid "retrieve a single order (detailed view)" @@ -497,8 +500,8 @@ msgid "" "adds a product to an order using the provided `product_uuid` and " "`attributes`." msgstr "" -"Legger til et produkt i en bestilling ved hjelp av de angitte `product_uuid` " -"og `attributtene`." +"Legger til et produkt i en bestilling ved hjelp av de angitte `product_uuid`" +" og `attributtene`." #: engine/core/docs/drf/viewsets.py:429 msgid "add a list of products to order, quantities will not count" @@ -598,7 +601,8 @@ msgstr "Fjern et produkt fra ønskelisten" #: engine/core/docs/drf/viewsets.py:524 msgid "removes a product from an wishlist using the provided `product_uuid`" msgstr "" -"Fjerner et produkt fra en ønskeliste ved hjelp av den angitte `product_uuid`." +"Fjerner et produkt fra en ønskeliste ved hjelp av den angitte " +"`product_uuid`." #: engine/core/docs/drf/viewsets.py:532 msgid "add many products to wishlist" @@ -625,28 +629,18 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "Filtrer etter ett eller flere attributtnavn/verdipar. \n" "- **Syntaks**: `attr_name=metode-verdi[;attr2=metode2-verdi2]...`.\n" -"- **Metoder** (standardinnstilling er `icontains` hvis utelatt): `iexact`, " -"`exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, " -"`endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`.\n" -"- **Vertyping av verdi**: JSON forsøkes først (slik at du kan sende lister/" -"dikter), `true`/`false` for booleans, heltall, floats; ellers behandlet som " -"streng. \n" -"- **Base64**: prefiks med `b64-` for URL-sikker base64-koding av " -"råverdien. \n" +"- **Metoder** (standardinnstilling er `icontains` hvis utelatt): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`.\n" +"- **Vertyping av verdi**: JSON forsøkes først (slik at du kan sende lister/dikter), `true`/`false` for booleans, heltall, floats; ellers behandlet som streng. \n" +"- **Base64**: prefiks med `b64-` for URL-sikker base64-koding av råverdien. \n" "Eksempler: \n" "`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`,\n" "`b64-beskrivelse=icontains-aGVhdC1jb2xk`" @@ -661,12 +655,10 @@ msgstr "(nøyaktig) Produkt UUID" #: engine/core/docs/drf/viewsets.py:581 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Kommaseparert liste over felt som skal sorteres etter. Prefiks med `-` for " -"synkende sortering. \n" +"Kommaseparert liste over felt som skal sorteres etter. Prefiks med `-` for synkende sortering. \n" "**Tillatt:** uuid, vurdering, navn, slug, opprettet, endret, pris, tilfeldig" #: engine/core/docs/drf/viewsets.py:598 engine/core/docs/drf/viewsets.py:599 @@ -1141,7 +1133,7 @@ msgstr "Bufret data" msgid "camelized JSON data from the requested URL" msgstr "Camelized JSON-data fra den forespurte URL-en" -#: engine/core/graphene/mutations.py:67 engine/core/views.py:256 +#: engine/core/graphene/mutations.py:67 engine/core/views.py:257 msgid "only URLs starting with http(s):// are allowed" msgstr "Bare nettadresser som begynner med http(s):// er tillatt" @@ -1226,8 +1218,8 @@ msgstr "Kjøp en ordre" #: engine/core/graphene/mutations.py:516 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" @@ -1301,10 +1293,12 @@ msgstr "Påslag i prosent" #: 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." #: engine/core/graphene/object_types.py:203 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" "Minimums- og maksimumspriser for produkter i denne kategorien, hvis " "tilgjengelig." @@ -1516,8 +1510,7 @@ msgstr "Telefonnummer til selskapet" #: engine/core/graphene/object_types.py:680 msgid "email from, sometimes it must be used instead of host user value" -msgstr "" -"\"e-post fra\", noen ganger må den brukes i stedet for vertsbrukerverdien" +msgstr "\"e-post fra\", noen ganger må den brukes i stedet for vertsbrukerverdien" #: engine/core/graphene/object_types.py:681 msgid "email host user" @@ -1576,11 +1569,11 @@ msgid "" "parent group, forming a hierarchical structure. This can be useful for " "categorizing and managing attributes more effectively in acomplex system." msgstr "" -"Representerer en gruppe attributter, som kan være hierarkiske. Denne klassen " -"brukes til å administrere og organisere attributtgrupper. En attributtgruppe " -"kan ha en overordnet gruppe som danner en hierarkisk struktur. Dette kan " -"være nyttig for å kategorisere og administrere attributter på en mer " -"effektiv måte i et komplekst system." +"Representerer en gruppe attributter, som kan være hierarkiske. Denne klassen" +" brukes til å administrere og organisere attributtgrupper. En " +"attributtgruppe kan ha en overordnet gruppe som danner en hierarkisk " +"struktur. Dette kan være nyttig for å kategorisere og administrere " +"attributter på en mer effektiv måte i et komplekst system." #: engine/core/models.py:91 msgid "parent of this group" @@ -1609,8 +1602,8 @@ msgid "" "use in systems that interact with third-party vendors." msgstr "" "Representerer en leverandørenhet som kan lagre informasjon om eksterne " -"leverandører og deres interaksjonskrav. Vendor-klassen brukes til å definere " -"og administrere informasjon knyttet til en ekstern leverandør. Den lagrer " +"leverandører og deres interaksjonskrav. Vendor-klassen brukes til å definere" +" og administrere informasjon knyttet til en ekstern leverandør. Den lagrer " "leverandørens navn, autentiseringsdetaljer som kreves for kommunikasjon, og " "prosentmarkeringen som brukes på produkter som hentes fra leverandøren. " "Denne modellen inneholder også ytterligere metadata og begrensninger, noe " @@ -1668,8 +1661,8 @@ msgid "" "metadata customization for administrative purposes." msgstr "" "Representerer en produkttagg som brukes til å klassifisere eller " -"identifisere produkter. ProductTag-klassen er utformet for å identifisere og " -"klassifisere produkter på en unik måte ved hjelp av en kombinasjon av en " +"identifisere produkter. ProductTag-klassen er utformet for å identifisere og" +" klassifisere produkter på en unik måte ved hjelp av en kombinasjon av en " "intern tagg-identifikator og et brukervennlig visningsnavn. Den støtter " "operasjoner som eksporteres gjennom mixins, og gir metadatatilpasning for " "administrative formål." @@ -1702,8 +1695,8 @@ msgid "" msgstr "" "Representerer en kategorikode som brukes for produkter. Denne klassen " "modellerer en kategorikode som kan brukes til å knytte til og klassifisere " -"produkter. Den inneholder attributter for en intern tagg-identifikator og et " -"brukervennlig visningsnavn." +"produkter. Den inneholder attributter for en intern tagg-identifikator og et" +" brukervennlig visningsnavn." #: engine/core/models.py:254 msgid "category tag" @@ -1726,8 +1719,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 " @@ -1784,7 +1777,8 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" "Representerer et merkevareobjekt i systemet. Denne klassen håndterer " "informasjon og attributter knyttet til et merke, inkludert navn, logoer, " @@ -1834,16 +1828,16 @@ msgstr "Kategorier" #: engine/core/models.py:508 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." @@ -1987,8 +1981,8 @@ 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 " @@ -2049,7 +2043,8 @@ msgstr "er filtrerbar" #: engine/core/models.py:759 msgid "designates whether this attribute can be used for filtering or not" msgstr "" -"Hvilke attributter og verdier som kan brukes til å filtrere denne kategorien." +"Hvilke attributter og verdier som kan brukes til å filtrere denne " +"kategorien." #: engine/core/models.py:771 engine/core/models.py:789 #: engine/core/templates/digital_order_delivered_email.html:134 @@ -2058,9 +2053,9 @@ msgstr "Attributt" #: engine/core/models.py:777 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 " @@ -2081,14 +2076,14 @@ msgstr "Den spesifikke verdien for dette attributtet" #: engine/core/models.py:815 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." @@ -2130,11 +2125,11 @@ msgid "" "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 " @@ -2179,8 +2174,8 @@ msgid "" "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." @@ -2206,11 +2201,11 @@ msgid "" "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 " @@ -2230,23 +2225,23 @@ msgstr "Uavklart" #: engine/core/models.py:1014 msgid "" -"Represents an address entity that includes location details and associations " -"with a user. Provides functionality for geographic and address data storage, " -"as well as integration with geocoding services. This class is designed to " -"store detailed address information including components like street, city, " -"region, country, and geolocation (longitude and latitude). It supports " -"integration with geocoding APIs, enabling the storage of raw API responses " -"for further processing or inspection. The class also allows associating an " -"address with a user, facilitating personalized data handling." +"Represents an address entity that includes location details and associations" +" with a user. Provides functionality for geographic and address data " +"storage, as well as integration with geocoding services. This class is " +"designed to store detailed address information including components like " +"street, city, region, country, and geolocation (longitude and latitude). It " +"supports integration with geocoding APIs, enabling the storage of raw API " +"responses for further processing or inspection. The class also allows " +"associating an address with a user, facilitating personalized data handling." msgstr "" "Representerer en adresseenhet som inneholder stedsdetaljer og assosiasjoner " "til en bruker. Tilbyr funksjonalitet for lagring av geografiske data og " "adressedata, samt integrering med geokodingstjenester. Denne klassen er " -"utformet for å lagre detaljert adresseinformasjon, inkludert komponenter som " -"gate, by, region, land og geolokalisering (lengde- og breddegrad). Den " +"utformet for å lagre detaljert adresseinformasjon, inkludert komponenter som" +" gate, by, region, land og geolokalisering (lengde- og breddegrad). Den " "støtter integrasjon med API-er for geokoding, og gjør det mulig å lagre rå " -"API-svar for videre behandling eller inspeksjon. Klassen gjør det også mulig " -"å knytte en adresse til en bruker, noe som gjør det enklere å tilpasse " +"API-svar for videre behandling eller inspeksjon. Klassen gjør det også mulig" +" å knytte en adresse til en bruker, noe som gjør det enklere å tilpasse " "datahåndteringen." #: engine/core/models.py:1029 @@ -2312,11 +2307,11 @@ msgid "" msgstr "" "Representerer en kampanjekode som kan brukes til rabatter, og styrer dens " "gyldighet, rabattype og anvendelse. PromoCode-klassen lagrer informasjon om " -"en kampanjekode, inkludert dens unike identifikator, rabattegenskaper (beløp " -"eller prosent), gyldighetsperiode, tilknyttet bruker (hvis noen) og status " +"en kampanjekode, inkludert dens unike identifikator, rabattegenskaper (beløp" +" eller prosent), gyldighetsperiode, tilknyttet bruker (hvis noen) og status " "for bruken av den. Den inneholder funksjonalitet for å validere og bruke " -"kampanjekoden på en bestilling, samtidig som den sikrer at begrensningene er " -"oppfylt." +"kampanjekoden på en bestilling, samtidig som den sikrer at begrensningene er" +" oppfylt." #: engine/core/models.py:1087 msgid "unique code used by a user to redeem a discount" @@ -2361,7 +2356,8 @@ msgstr "Start gyldighetstid" #: engine/core/models.py:1120 msgid "timestamp when the promocode was used, blank if not used yet" msgstr "" -"Tidsstempel for når kampanjekoden ble brukt, tomt hvis den ikke er brukt ennå" +"Tidsstempel for når kampanjekoden ble brukt, tomt hvis den ikke er brukt " +"ennå" #: engine/core/models.py:1121 msgid "usage timestamp" @@ -2404,18 +2400,18 @@ msgstr "Ugyldig rabattype for kampanjekode {self.uuid}!" msgid "" "Represents an order placed by a user. This class models an order within the " "application, including its various attributes such as billing and shipping " -"information, status, associated user, notifications, and related operations. " -"Orders can have associated products, promotions can be applied, addresses " +"information, status, associated user, notifications, and related operations." +" Orders can have associated products, promotions can be applied, addresses " "set, and shipping or billing details updated. Equally, functionality " "supports managing the products in the order lifecycle." msgstr "" "Representerer en bestilling som er lagt inn av en bruker. Denne klassen " "modellerer en bestilling i applikasjonen, inkludert ulike attributter som " -"fakturerings- og leveringsinformasjon, status, tilknyttet bruker, varsler og " -"relaterte operasjoner. Bestillinger kan ha tilknyttede produkter, kampanjer " -"kan brukes, adresser kan angis, og frakt- eller faktureringsopplysninger kan " -"oppdateres. På samme måte støtter funksjonaliteten håndtering av produktene " -"i bestillingens livssyklus." +"fakturerings- og leveringsinformasjon, status, tilknyttet bruker, varsler og" +" relaterte operasjoner. Bestillinger kan ha tilknyttede produkter, kampanjer" +" kan brukes, adresser kan angis, og frakt- eller faktureringsopplysninger " +"kan oppdateres. På samme måte støtter funksjonaliteten håndtering av " +"produktene i bestillingens livssyklus." #: engine/core/models.py:1213 msgid "the billing address used for this order" @@ -2574,8 +2570,8 @@ msgid "" "product in the order, and a user-assigned rating. The class uses database " "fields to effectively model and manage feedback data." msgstr "" -"Håndterer brukernes tilbakemeldinger på produkter. Denne klassen er utformet " -"for å fange opp og lagre tilbakemeldinger fra brukerne om spesifikke " +"Håndterer brukernes tilbakemeldinger på produkter. Denne klassen er utformet" +" for å fange opp og lagre tilbakemeldinger fra brukerne om spesifikke " "produkter de har kjøpt. Den inneholder attributter for å lagre " "brukerkommentarer, en referanse til det relaterte produktet i bestillingen " "og en brukertildelt vurdering. Klassen bruker databasefelt for å modellere " @@ -2590,10 +2586,11 @@ msgid "feedback comments" msgstr "Tilbakemeldinger og kommentarer" #: engine/core/models.py:1719 -msgid "references the specific product in an order that this feedback is about" +msgid "" +"references the specific product in an order that this feedback is about" msgstr "" -"Refererer til det spesifikke produktet i en ordre som denne tilbakemeldingen " -"handler om" +"Refererer til det spesifikke produktet i en ordre som denne tilbakemeldingen" +" handler om" #: engine/core/models.py:1720 msgid "related order product" @@ -2737,12 +2734,12 @@ 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 " @@ -2793,8 +2790,8 @@ msgid "No customer activity in the last 30 days." msgstr "Ingen kundeaktivitet de siste 30 dagene." #: engine/core/templates/admin/dashboard/_daily_sales.html:5 -msgid "Daily sales (30d)" -msgstr "Daglig salg (30d)" +msgid "Daily sales" +msgstr "Daglig salg" #: engine/core/templates/admin/dashboard/_daily_sales.html:59 msgid "Orders (FINISHED)" @@ -2805,6 +2802,7 @@ msgid "Gross revenue" msgstr "Brutto inntekter" #: engine/core/templates/admin/dashboard/_daily_sales.html:106 +#: engine/core/templates/admin/dashboard/_kpis.html:20 msgid "Orders" msgstr "Bestillinger" @@ -2812,6 +2810,10 @@ msgstr "Bestillinger" msgid "Gross" msgstr "Brutto" +#: engine/core/templates/admin/dashboard/_header.html:3 +msgid "Dashboard" +msgstr "Dashbord" + #: engine/core/templates/admin/dashboard/_income_overview.html:7 msgid "Income overview" msgstr "Oversikt over inntekter" @@ -2840,20 +2842,32 @@ msgid "No data" msgstr "Ingen dato" #: engine/core/templates/admin/dashboard/_kpis.html:6 -msgid "Revenue (gross, 30d)" -msgstr "Inntekter (brutto, 30d)" +msgid "GMV" +msgstr "GMV" -#: engine/core/templates/admin/dashboard/_kpis.html:15 -msgid "Revenue (net, 30d)" -msgstr "Inntekter (netto, 30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:34 +msgid "AOV" +msgstr "AOV" -#: engine/core/templates/admin/dashboard/_kpis.html:24 -msgid "Returns (30d)" -msgstr "Returnerer (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:48 +msgid "Net revenue" +msgstr "Netto inntekter" -#: engine/core/templates/admin/dashboard/_kpis.html:33 -msgid "Processed orders (30d)" -msgstr "Behandlede bestillinger (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:62 +msgid "Refund rate" +msgstr "Refusjonsgrad" + +#: engine/core/templates/admin/dashboard/_kpis.html:73 +msgid "returned" +msgstr "Returneres" + +#: engine/core/templates/admin/dashboard/_low_stock.html:5 +msgid "Low stock" +msgstr "Lav lagerbeholdning" + +#: engine/core/templates/admin/dashboard/_low_stock.html:29 +msgid "No low stock items." +msgstr "Ingen varer med lav lagerbeholdning." #: engine/core/templates/admin/dashboard/_most_returned.html:5 msgid "Most returned products (30d)" @@ -2868,11 +2882,11 @@ msgid "Most wished product" msgstr "Mest ønskede produkt" #: engine/core/templates/admin/dashboard/_product_lists.html:33 -#: engine/core/templates/admin/dashboard/_product_lists.html:67 +#: engine/core/templates/admin/dashboard/_product_lists.html:68 msgid "No data yet." msgstr "Ingen data ennå." -#: engine/core/templates/admin/dashboard/_product_lists.html:40 +#: engine/core/templates/admin/dashboard/_product_lists.html:41 msgid "Most popular product" msgstr "Mest populære produkt" @@ -2908,10 +2922,6 @@ msgstr "Ingen kategorisalg de siste 30 dagene." msgid "Django site admin" msgstr "Django site admin" -#: engine/core/templates/admin/index.html:20 -msgid "Dashboard" -msgstr "Dashbord" - #: 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 @@ -2941,13 +2951,12 @@ msgstr "Hallo %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" -"Takk for din bestilling #%(order.pk)s! Vi er glade for å informere deg om at " -"vi har tatt bestillingen din i arbeid. Nedenfor er detaljene i bestillingen " -"din:" +"Takk for din bestilling #%(order.pk)s! Vi er glade for å informere deg om at" +" vi har tatt bestillingen din i arbeid. Nedenfor er detaljene i bestillingen" +" din:" #: engine/core/templates/digital_order_created_email.html:112 #: engine/core/templates/digital_order_delivered_email.html:110 @@ -3057,8 +3066,7 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" "Takk for bestillingen din! Vi er glade for å kunne bekrefte kjøpet ditt. " @@ -3131,15 +3139,15 @@ 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!" -#: engine/core/views.py:90 +#: engine/core/views.py:91 msgid "" "Handles the request for the sitemap index and returns an XML response. It " "ensures the response includes the appropriate content type header for XML." msgstr "" -"Håndterer forespørselen om områdekartindeksen og returnerer et XML-svar. Den " -"sørger for at svaret inneholder riktig innholdstypeoverskrift for XML." +"Håndterer forespørselen om områdekartindeksen og returnerer et XML-svar. Den" +" sørger for at svaret inneholder riktig innholdstypeoverskrift for XML." -#: engine/core/views.py:105 +#: engine/core/views.py:106 msgid "" "Handles the detailed view response for a sitemap. This function processes " "the request, fetches the appropriate sitemap detail response, and sets the " @@ -3149,17 +3157,17 @@ msgstr "" "behandler forespørselen, henter det aktuelle detaljsvaret for områdekartet " "og angir overskriften Content-Type for XML." -#: engine/core/views.py:140 +#: engine/core/views.py:141 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." -#: engine/core/views.py:172 +#: engine/core/views.py:173 msgid "Returns the parameters of the website as a JSON object." msgstr "Returnerer nettstedets parametere som et JSON-objekt." -#: engine/core/views.py:191 +#: engine/core/views.py:192 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." @@ -3167,79 +3175,70 @@ msgstr "" "Håndterer cache-operasjoner som lesing og innstilling av cachedata med en " "spesifisert nøkkel og tidsavbrudd." -#: engine/core/views.py:218 +#: engine/core/views.py:219 msgid "Handles `contact us` form submissions." msgstr "Håndterer innsendinger av `kontakt oss`-skjemaer." -#: engine/core/views.py:239 +#: engine/core/views.py:240 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." msgstr "" -"Håndterer forespørsler om behandling og validering av URL-er fra innkommende " -"POST-forespørsler." +"Håndterer forespørsler om behandling og validering av URL-er fra innkommende" +" POST-forespørsler." -#: engine/core/views.py:279 +#: engine/core/views.py:280 msgid "Handles global search queries." msgstr "Håndterer globale søk." -#: engine/core/views.py:294 +#: engine/core/views.py:295 msgid "Handles the logic of buying as a business without registration." msgstr "Håndterer logikken med å kjøpe som en bedrift uten registrering." -#: engine/core/views.py:331 +#: engine/core/views.py:332 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" -"Håndterer nedlastingen av en digital ressurs som er knyttet til en " -"bestilling.\n" -"Denne funksjonen forsøker å levere den digitale ressursfilen som ligger i " -"lagringskatalogen til prosjektet. Hvis filen ikke blir funnet, vises en HTTP " -"404-feil for å indikere at ressursen ikke er tilgjengelig." +"Håndterer nedlastingen av en digital ressurs som er knyttet til en bestilling.\n" +"Denne funksjonen forsøker å levere den digitale ressursfilen som ligger i lagringskatalogen til prosjektet. Hvis filen ikke blir funnet, vises en HTTP 404-feil for å indikere at ressursen ikke er tilgjengelig." -#: engine/core/views.py:342 +#: engine/core/views.py:343 msgid "order_product_uuid is required" msgstr "order_product_uuid er påkrevd" -#: engine/core/views.py:349 +#: engine/core/views.py:350 msgid "order product does not exist" msgstr "ordreproduktet eksisterer ikke" -#: engine/core/views.py:352 +#: engine/core/views.py:353 msgid "you can only download the digital asset once" msgstr "Du kan bare laste ned den digitale ressursen én gang" -#: engine/core/views.py:355 +#: engine/core/views.py:356 msgid "the order must be paid before downloading the digital asset" msgstr "bestillingen må betales før nedlasting av den digitale ressursen" -#: engine/core/views.py:361 +#: engine/core/views.py:362 msgid "the order product does not have a product" msgstr "Ordreproduktet har ikke et produkt" -#: engine/core/views.py:398 +#: engine/core/views.py:399 msgid "favicon not found" msgstr "favicon ble ikke funnet" -#: engine/core/views.py:403 +#: engine/core/views.py:404 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Håndterer forespørsler om faviconet til et nettsted.\n" -"Denne funksjonen forsøker å vise favicon-filen som ligger i den statiske " -"katalogen i prosjektet. Hvis favicon-filen ikke blir funnet, vises en HTTP " -"404-feil for å indikere at ressursen ikke er tilgjengelig." +"Denne funksjonen forsøker å vise favicon-filen som ligger i den statiske katalogen i prosjektet. Hvis favicon-filen ikke blir funnet, vises en HTTP 404-feil for å indikere at ressursen ikke er tilgjengelig." -#: engine/core/views.py:415 +#: engine/core/views.py:416 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 " @@ -3247,11 +3246,11 @@ msgstr "" "administrasjonsgrensesnittet. Den bruker Djangos `redirect`-funksjon for å " "håndtere HTTP-omdirigeringen." -#: engine/core/views.py:428 +#: engine/core/views.py:429 msgid "Returns current version of the eVibes. " msgstr "Returnerer gjeldende versjon av eVibes." -#: engine/core/views.py:637 +#: engine/core/views.py:793 msgid "Returns custom variables for Dashboard. " msgstr "Returnerer egendefinerte variabler for Dashboard." @@ -3271,10 +3270,11 @@ msgstr "" #: engine/core/viewsets.py:156 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, " @@ -3291,20 +3291,20 @@ msgid "" "specific fields or retrieving detailed versus simplified information " "depending on the request." msgstr "" -"Håndterer operasjoner knyttet til Attribute-objekter i applikasjonen. Tilbyr " -"et sett med API-endepunkter for interaksjon med attributtdata. Denne klassen " -"håndterer spørring, filtrering og serialisering av Attribute-objekter, noe " -"som gir dynamisk kontroll over dataene som returneres, for eksempel " -"filtrering etter bestemte felt eller henting av detaljert versus forenklet " -"informasjon avhengig av forespørselen." +"Håndterer operasjoner knyttet til Attribute-objekter i applikasjonen. Tilbyr" +" et sett med API-endepunkter for interaksjon med attributtdata. Denne " +"klassen håndterer spørring, filtrering og serialisering av Attribute-" +"objekter, noe som gir dynamisk kontroll over dataene som returneres, for " +"eksempel filtrering etter bestemte felt eller henting av detaljert versus " +"forenklet informasjon avhengig av forespørselen." #: engine/core/viewsets.py:194 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, " @@ -3353,8 +3353,8 @@ 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." #: engine/core/viewsets.py:574 msgid "" @@ -3366,9 +3366,9 @@ msgid "" msgstr "" "Representerer et visningssett for håndtering av Vendor-objekter. Dette " "visningssettet gjør det mulig å hente, filtrere og serialisere Vendor-data. " -"Den definerer spørresettet, filterkonfigurasjonene og serialiseringsklassene " -"som brukes til å håndtere ulike handlinger. Formålet med denne klassen er å " -"gi strømlinjeformet tilgang til Vendor-relaterte ressurser gjennom Django " +"Den definerer spørresettet, filterkonfigurasjonene og serialiseringsklassene" +" som brukes til å håndtere ulike handlinger. Formålet med denne klassen er å" +" gi strømlinjeformet tilgang til Vendor-relaterte ressurser gjennom Django " "REST-rammeverket." #: engine/core/viewsets.py:594 @@ -3376,8 +3376,8 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `EvibesViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "Representasjon av et visningssett som håndterer Feedback-objekter. Denne " @@ -3393,9 +3393,9 @@ msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" "ViewSet for håndtering av bestillinger og relaterte operasjoner. Denne " @@ -3404,22 +3404,22 @@ msgstr "" "ordreoperasjoner, for eksempel å legge til eller fjerne produkter, utføre " "kjøp for både registrerte og uregistrerte brukere og hente den aktuelle " "autentiserte brukerens ventende bestillinger. ViewSet bruker flere " -"serialisatorer basert på den spesifikke handlingen som utføres, og håndhever " -"tillatelser i samsvar med dette under samhandling med ordredata." +"serialisatorer basert på den spesifikke handlingen som utføres, og håndhever" +" tillatelser i samsvar med dette under samhandling med ordredata." #: engine/core/viewsets.py:825 msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "Tilbyr et visningssett for håndtering av OrderProduct-enheter. Dette " -"visningssettet muliggjør CRUD-operasjoner og egendefinerte handlinger som er " -"spesifikke for OrderProduct-modellen. Det inkluderer filtrering, kontroll av " -"tillatelser og bytte av serializer basert på den forespurte handlingen. I " -"tillegg inneholder det en detaljert handling for håndtering av " +"visningssettet muliggjør CRUD-operasjoner og egendefinerte handlinger som er" +" spesifikke for OrderProduct-modellen. Det inkluderer filtrering, kontroll " +"av tillatelser og bytte av serializer basert på den forespurte handlingen. I" +" tillegg inneholder det en detaljert handling for håndtering av " "tilbakemeldinger på OrderProduct-instanser" #: engine/core/viewsets.py:879 @@ -3431,8 +3431,8 @@ msgid "" "Manages the retrieval and handling of PromoCode instances through various " "API actions." msgstr "" -"Administrerer henting og håndtering av PromoCode-instanser gjennom ulike API-" -"handlinger." +"Administrerer henting og håndtering av PromoCode-instanser gjennom ulike " +"API-handlinger." #: engine/core/viewsets.py:914 msgid "Represents a view set for managing promotions. " @@ -3446,8 +3446,8 @@ msgstr "Håndterer operasjoner knyttet til lagerdata i systemet." msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." @@ -3457,8 +3457,8 @@ msgstr "" "gjør det mulig å hente, endre og tilpasse produkter i ønskelisten. Dette " "ViewSetet legger til rette for funksjonalitet som å legge til, fjerne og " "utføre massehandlinger for ønskelisteprodukter. Tillatelseskontroller er " -"integrert for å sikre at brukere bare kan administrere sine egne ønskelister " -"med mindre eksplisitte tillatelser er gitt." +"integrert for å sikre at brukere bare kan administrere sine egne ønskelister" +" med mindre eksplisitte tillatelser er gitt." #: engine/core/viewsets.py:1056 msgid "" @@ -3468,11 +3468,11 @@ msgid "" "different HTTP methods, serializer overrides, and permission handling based " "on the request context." msgstr "" -"Denne klassen tilbyr visningssettfunksjonalitet for håndtering av `Address`-" -"objekter. AddressViewSet-klassen muliggjør CRUD-operasjoner, filtrering og " -"egendefinerte handlinger knyttet til adresseenheter. Den inkluderer " -"spesialisert atferd for ulike HTTP-metoder, overstyring av serializer og " -"håndtering av tillatelser basert på forespørselskonteksten." +"Denne klassen tilbyr visningssettfunksjonalitet for håndtering av " +"`Address`-objekter. AddressViewSet-klassen muliggjør CRUD-operasjoner, " +"filtrering og egendefinerte handlinger knyttet til adresseenheter. Den " +"inkluderer spesialisert atferd for ulike HTTP-metoder, overstyring av " +"serializer og håndtering av tillatelser basert på forespørselskonteksten." #: engine/core/viewsets.py:1123 #, python-brace-format diff --git a/engine/core/locale/pl_PL/LC_MESSAGES/django.mo b/engine/core/locale/pl_PL/LC_MESSAGES/django.mo index 3fd58e80448c310198363b7263afa0541f609d96..1223ac2be2bdb8345a0cd29920d25d923eb0a247 100644 GIT binary patch delta 14894 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 OgA(`deAks&`2PU#O2h2{ delta 14876 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 diff --git a/engine/core/locale/pl_PL/LC_MESSAGES/django.po b/engine/core/locale/pl_PL/LC_MESSAGES/django.po index 554d32be..fe3dd2b5 100644 --- a/engine/core/locale/pl_PL/LC_MESSAGES/django.po +++ b/engine/core/locale/pl_PL/LC_MESSAGES/django.po @@ -1,9 +1,9 @@ -# +# msgid "" msgstr "" "Project-Id-Version: EVIBES 2025.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-08 10:56+0300\n" +"POT-Creation-Date: 2025-12-10 21:44+0300\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: BRITISH ENGLISH \n" @@ -29,7 +29,8 @@ msgstr "Jest aktywny" #: engine/core/abstract.py: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ń." @@ -156,7 +157,8 @@ msgstr "Dostarczone" msgid "canceled" msgstr "Anulowane" -#: engine/core/choices.py:8 engine/core/choices.py:16 engine/core/choices.py:24 +#: engine/core/choices.py:8 engine/core/choices.py:16 +#: engine/core/choices.py:24 msgid "failed" msgstr "Nie powiodło się" @@ -208,8 +210,7 @@ msgid "" "apply key, data and timeout with authentication to write data to cache." msgstr "" "Zastosuj tylko klucz, aby odczytać dozwolone dane z pamięci podręcznej.\n" -"Zastosuj klucz, dane i limit czasu z uwierzytelnianiem, aby zapisać dane w " -"pamięci podręcznej." +"Zastosuj klucz, dane i limit czasu z uwierzytelnianiem, aby zapisać dane w pamięci podręcznej." #: engine/core/docs/drf/views.py:62 msgid "get a list of supported languages" @@ -274,7 +275,8 @@ msgstr "" "nieedytowalnych" #: engine/core/docs/drf/viewsets.py:96 -msgid "rewrite some fields of an existing attribute group saving non-editables" +msgid "" +"rewrite some fields of an existing attribute group saving non-editables" msgstr "" "Przepisanie niektórych pól istniejącej grupy atrybutów z zachowaniem " "atrybutów nieedytowalnych" @@ -329,7 +331,8 @@ msgstr "" "nieedytowalnych" #: engine/core/docs/drf/viewsets.py:186 -msgid "rewrite some fields of an existing attribute value saving non-editables" +msgid "" +"rewrite some fields of an existing attribute value saving non-editables" msgstr "" "Przepisz niektóre pola istniejącej wartości atrybutu, zapisując wartości " "nieedytowalne" @@ -388,11 +391,11 @@ msgstr "" #: engine/core/docs/drf/viewsets.py:281 msgid "" -"Case-insensitive substring search across human_readable_id, order_products." -"product.name, and order_products.product.partnumber" +"Case-insensitive substring search across human_readable_id, " +"order_products.product.name, and order_products.product.partnumber" msgstr "" -"Wyszukiwanie podciągów z uwzględnieniem wielkości liter w human_readable_id, " -"order_products.product.name i order_products.product.partnumber." +"Wyszukiwanie podciągów z uwzględnieniem wielkości liter w human_readable_id," +" order_products.product.name i order_products.product.partnumber." #: engine/core/docs/drf/viewsets.py:288 msgid "Filter orders with buy_time >= this ISO 8601 datetime" @@ -425,14 +428,14 @@ msgstr "Filtrowanie według identyfikatora UUID użytkownika" #: engine/core/docs/drf/viewsets.py:318 msgid "Filter by order status (case-insensitive substring match)" msgstr "" -"Filtrowanie według statusu zamówienia (dopasowanie podciągu z uwzględnieniem " -"wielkości liter)" +"Filtrowanie według statusu zamówienia (dopasowanie podciągu z uwzględnieniem" +" wielkości liter)" #: engine/core/docs/drf/viewsets.py:324 msgid "" -"Order by one of: uuid, human_readable_id, user_email, user, status, created, " -"modified, buy_time, random. Prefix with '-' for descending (e.g. '-" -"buy_time')." +"Order by one of: uuid, human_readable_id, user_email, user, status, created," +" modified, buy_time, random. Prefix with '-' for descending (e.g. " +"'-buy_time')." msgstr "" "Kolejność według jednego z: uuid, human_readable_id, user_email, user, " "status, created, modified, buy_time, random. Prefiks z \"-\" dla malejącego " @@ -444,7 +447,8 @@ msgstr "Pobieranie pojedynczej kategorii (widok szczegółowy)" #: engine/core/docs/drf/viewsets.py:341 msgid "Order UUID or human-readable id" -msgstr "Identyfikator UUID zamówienia lub identyfikator czytelny dla człowieka" +msgstr "" +"Identyfikator UUID zamówienia lub identyfikator czytelny dla człowieka" #: engine/core/docs/drf/viewsets.py:351 msgid "create an order" @@ -632,28 +636,18 @@ msgstr "" msgid "" "Filter by one or more attribute name/value pairs. \n" "• **Syntax**: `attr_name=method-value[;attr2=method2-value2]…` \n" -"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" -"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), " -"`true`/`false` for booleans, integers, floats; otherwise treated as " -"string. \n" +"• **Methods** (defaults to `icontains` if omitted): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in` \n" +"• **Value typing**: JSON is attempted first (so you can pass lists/dicts), `true`/`false` for booleans, integers, floats; otherwise treated as string. \n" "• **Base64**: prefix with `b64-` to URL-safe base64-encode the raw value. \n" "Examples: \n" -"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\"," -"\"bluetooth\"]`, \n" +"`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\",\"bluetooth\"]`, \n" "`b64-description=icontains-aGVhdC1jb2xk`" msgstr "" "Filtrowanie według jednej lub więcej par atrybut/wartość. \n" "- Składnia**: `attr_name=method-value[;attr2=method2-value2]...`\n" -"- **Metody** (domyślnie `icontains` jeśli pominięte): `iexact`, `exact`, " -"`icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, " -"`iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" -"- Wpisywanie wartości**: JSON jest próbowany jako pierwszy (więc można " -"przekazywać listy/dykty), `true`/`false` dla booleans, integers, floats; w " -"przeciwnym razie traktowane jako string. \n" -"- Base64**: prefiks z `b64-` do bezpiecznego dla adresów URL kodowania " -"base64 surowej wartości. \n" +"- **Metody** (domyślnie `icontains` jeśli pominięte): `iexact`, `exact`, `icontains`, `contains`, `isnull`, `startswith`, `istartswith`, `endswith`, `iendswith`, `regex`, `iregex`, `lt`, `lte`, `gt`, `gte`, `in`\n" +"- Wpisywanie wartości**: JSON jest próbowany jako pierwszy (więc można przekazywać listy/dykty), `true`/`false` dla booleans, integers, floats; w przeciwnym razie traktowane jako string. \n" +"- Base64**: prefiks z `b64-` do bezpiecznego dla adresów URL kodowania base64 surowej wartości. \n" "Przykłady: \n" "`color=exact-red`, `size=gt-10`, `features=in-[\"wifi\", \"bluetooth\"]`,\n" "`b64-description=icontains-aGVhdC1jb2xk`" @@ -668,12 +662,10 @@ msgstr "(dokładny) UUID produktu" #: engine/core/docs/drf/viewsets.py:581 msgid "" -"Comma-separated list of fields to sort by. Prefix with `-` for " -"descending. \n" +"Comma-separated list of fields to sort by. Prefix with `-` for descending. \n" "**Allowed:** uuid, rating, name, slug, created, modified, price, random" msgstr "" -"Rozdzielana przecinkami lista pól do posortowania. Prefiks z `-` dla " -"sortowania malejącego. \n" +"Rozdzielana przecinkami lista pól do posortowania. Prefiks z `-` dla sortowania malejącego. \n" "**Dozwolone:** uuid, rating, name, slug, created, modified, price, random" #: engine/core/docs/drf/viewsets.py:598 engine/core/docs/drf/viewsets.py:599 @@ -1147,7 +1139,7 @@ msgstr "Dane w pamięci podręcznej" msgid "camelized JSON data from the requested URL" msgstr "Kamelizowane dane JSON z żądanego adresu URL" -#: engine/core/graphene/mutations.py:67 engine/core/views.py:256 +#: engine/core/graphene/mutations.py:67 engine/core/views.py:257 msgid "only URLs starting with http(s):// are allowed" msgstr "Dozwolone są tylko adresy URL zaczynające się od http(s)://" @@ -1231,8 +1223,8 @@ msgstr "Kup zamówienie" #: engine/core/graphene/mutations.py:516 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" @@ -1310,7 +1302,8 @@ msgstr "" "Które atrybuty i wartości mogą być używane do filtrowania tej kategorii." #: engine/core/graphene/object_types.py:203 -msgid "minimum and maximum prices for products in this category, if available." +msgid "" +"minimum and maximum prices for products in this category, if available." msgstr "" "Minimalne i maksymalne ceny produktów w tej kategorii, jeśli są dostępne." @@ -1521,8 +1514,7 @@ msgstr "Numer telefonu firmy" #: engine/core/graphene/object_types.py:680 msgid "email from, sometimes it must be used instead of host user value" -msgstr "" -"\"email from\", czasami musi być użyty zamiast wartości użytkownika hosta" +msgstr "\"email from\", czasami musi być użyty zamiast wartości użytkownika hosta" #: engine/core/graphene/object_types.py:681 msgid "email host user" @@ -1616,8 +1608,8 @@ msgstr "" "Reprezentuje jednostkę dostawcy zdolną do przechowywania informacji o " "zewnętrznych dostawcach i ich wymaganiach dotyczących interakcji. Klasa " "Vendor służy do definiowania i zarządzania informacjami związanymi z " -"zewnętrznym dostawcą. Przechowuje nazwę dostawcy, szczegóły uwierzytelniania " -"wymagane do komunikacji oraz procentowe znaczniki stosowane do produktów " +"zewnętrznym dostawcą. Przechowuje nazwę dostawcy, szczegóły uwierzytelniania" +" wymagane do komunikacji oraz procentowe znaczniki stosowane do produktów " "pobieranych od dostawcy. Model ten zachowuje również dodatkowe metadane i " "ograniczenia, dzięki czemu nadaje się do użytku w systemach, które " "współpracują z zewnętrznymi dostawcami." @@ -1789,11 +1781,12 @@ msgid "" "Represents a Brand object in the system. This class handles information and " "attributes related to a brand, including its name, logos, description, " "associated categories, a unique slug, and priority order. It allows for the " -"organization and representation of brand-related data within the application." +"organization and representation of brand-related data within the " +"application." msgstr "" "Reprezentuje obiekt marki w systemie. Ta klasa obsługuje informacje i " -"atrybuty związane z marką, w tym jej nazwę, logo, opis, powiązane kategorie, " -"unikalny slug i kolejność priorytetów. Pozwala na organizację i " +"atrybuty związane z marką, w tym jej nazwę, logo, opis, powiązane kategorie," +" unikalny slug i kolejność priorytetów. Pozwala na organizację i " "reprezentację danych związanych z marką w aplikacji." #: engine/core/models.py:448 @@ -1838,8 +1831,8 @@ msgstr "Kategorie" #: engine/core/models.py:508 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 " @@ -1991,8 +1984,8 @@ 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 " @@ -2062,9 +2055,9 @@ msgstr "Atrybut" #: engine/core/models.py:777 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 " @@ -2085,8 +2078,8 @@ msgstr "Konkretna wartość dla tego atrybutu" #: engine/core/models.py:815 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 "" @@ -2098,7 +2091,8 @@ msgstr "" #: engine/core/models.py:826 msgid "provide alternative text for the image for accessibility" -msgstr "Zapewnienie alternatywnego tekstu dla obrazu w celu ułatwienia dostępu" +msgstr "" +"Zapewnienie alternatywnego tekstu dla obrazu w celu ułatwienia dostępu" #: engine/core/models.py:827 msgid "image alt text" @@ -2134,12 +2128,12 @@ msgid "" "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." @@ -2184,8 +2178,8 @@ msgid "" "operations for adding and removing multiple products at once." msgstr "" "Reprezentuje listę życzeń użytkownika do przechowywania i zarządzania " -"pożądanymi produktami. Klasa zapewnia funkcjonalność do zarządzania kolekcją " -"produktów, wspierając operacje takie jak dodawanie i usuwanie produktów, a " +"pożądanymi produktami. Klasa zapewnia funkcjonalność do zarządzania kolekcją" +" produktów, wspierając operacje takie jak dodawanie i usuwanie produktów, a " "także wspierając operacje dodawania i usuwania wielu produktów jednocześnie." #: engine/core/models.py:926 @@ -2210,13 +2204,13 @@ msgid "" "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." @@ -2234,14 +2228,14 @@ msgstr "Nierozwiązany" #: engine/core/models.py:1014 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 " @@ -2249,8 +2243,8 @@ 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." @@ -2410,8 +2404,8 @@ msgstr "Nieprawidłowy typ rabatu dla kodu promocyjnego {self.uuid}!" 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 "" @@ -2491,7 +2485,8 @@ msgstr "Zamówienie" #: engine/core/models.py:1319 msgid "a user must have only one pending order at a time" -msgstr "Użytkownik może mieć tylko jedno oczekujące zlecenie w danym momencie!" +msgstr "" +"Użytkownik może mieć tylko jedno oczekujące zlecenie w danym momencie!" #: engine/core/models.py:1351 msgid "you cannot add products to an order that is not a pending one" @@ -2588,8 +2583,8 @@ msgstr "" "temat konkretnych produktów, które zostały przez nich zakupione. Zawiera " "atrybuty do przechowywania komentarzy użytkowników, odniesienie do " "powiązanego produktu w zamówieniu oraz ocenę przypisaną przez użytkownika. " -"Klasa wykorzystuje pola bazy danych do efektywnego modelowania i zarządzania " -"danymi opinii." +"Klasa wykorzystuje pola bazy danych do efektywnego modelowania i zarządzania" +" danymi opinii." #: engine/core/models.py:1711 msgid "user-provided comments about their experience with the product" @@ -2600,7 +2595,8 @@ msgid "feedback comments" msgstr "Komentarze zwrotne" #: engine/core/models.py:1719 -msgid "references the specific product in an order that this feedback is about" +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." @@ -2631,13 +2627,13 @@ msgid "" msgstr "" "Reprezentuje produkty powiązane z zamówieniami i ich atrybutami. Model " "OrderProduct przechowuje informacje o produkcie, który jest częścią " -"zamówienia, w tym szczegóły, takie jak cena zakupu, ilość, atrybuty produktu " -"i status. Zarządza powiadomieniami dla użytkownika i administratorów oraz " -"obsługuje operacje, takie jak zwracanie salda produktu lub dodawanie opinii. " -"Model ten zapewnia również metody i właściwości, które obsługują logikę " +"zamówienia, w tym szczegóły, takie jak cena zakupu, ilość, atrybuty produktu" +" i status. Zarządza powiadomieniami dla użytkownika i administratorów oraz " +"obsługuje operacje, takie jak zwracanie salda produktu lub dodawanie opinii." +" Model ten zapewnia również metody i właściwości, które obsługują logikę " "biznesową, taką jak obliczanie całkowitej ceny lub generowanie adresu URL " -"pobierania dla produktów cyfrowych. Model ten integruje się z modelami Order " -"i Product i przechowuje odniesienia do nich." +"pobierania dla produktów cyfrowych. Model ten integruje się z modelami Order" +" i Product i przechowuje odniesienia do nich." #: engine/core/models.py:1757 msgid "the price paid by the customer for this product at purchase time" @@ -2650,7 +2646,8 @@ msgstr "Cena zakupu w momencie zamówienia" #: engine/core/models.py:1763 msgid "internal comments for admins about this ordered product" msgstr "" -"Wewnętrzne komentarze dla administratorów dotyczące tego zamówionego produktu" +"Wewnętrzne komentarze dla administratorów dotyczące tego zamówionego " +"produktu" #: engine/core/models.py:1764 msgid "internal comments" @@ -2748,9 +2745,9 @@ 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 " @@ -2804,8 +2801,8 @@ msgid "No customer activity in the last 30 days." msgstr "Brak aktywności klienta w ciągu ostatnich 30 dni." #: engine/core/templates/admin/dashboard/_daily_sales.html:5 -msgid "Daily sales (30d)" -msgstr "Dzienna sprzedaż (30d)" +msgid "Daily sales" +msgstr "Dzienna sprzedaż" #: engine/core/templates/admin/dashboard/_daily_sales.html:59 msgid "Orders (FINISHED)" @@ -2816,6 +2813,7 @@ msgid "Gross revenue" msgstr "Przychód brutto" #: engine/core/templates/admin/dashboard/_daily_sales.html:106 +#: engine/core/templates/admin/dashboard/_kpis.html:20 msgid "Orders" msgstr "Zamówienia" @@ -2823,6 +2821,10 @@ msgstr "Zamówienia" msgid "Gross" msgstr "Brutto" +#: engine/core/templates/admin/dashboard/_header.html:3 +msgid "Dashboard" +msgstr "Pulpit nawigacyjny" + #: engine/core/templates/admin/dashboard/_income_overview.html:7 msgid "Income overview" msgstr "Przegląd dochodów" @@ -2851,20 +2853,32 @@ msgid "No data" msgstr "Brak daty" #: engine/core/templates/admin/dashboard/_kpis.html:6 -msgid "Revenue (gross, 30d)" -msgstr "Przychody (brutto, 30d)" +msgid "GMV" +msgstr "GMV" -#: engine/core/templates/admin/dashboard/_kpis.html:15 -msgid "Revenue (net, 30d)" -msgstr "Przychody (netto, 30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:34 +msgid "AOV" +msgstr "AOV" -#: engine/core/templates/admin/dashboard/_kpis.html:24 -msgid "Returns (30d)" -msgstr "Zwroty (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:48 +msgid "Net revenue" +msgstr "Przychody netto" -#: engine/core/templates/admin/dashboard/_kpis.html:33 -msgid "Processed orders (30d)" -msgstr "Przetworzone zamówienia (30d)" +#: engine/core/templates/admin/dashboard/_kpis.html:62 +msgid "Refund rate" +msgstr "Stopa zwrotu" + +#: engine/core/templates/admin/dashboard/_kpis.html:73 +msgid "returned" +msgstr "Zwrócony" + +#: engine/core/templates/admin/dashboard/_low_stock.html:5 +msgid "Low stock" +msgstr "Niskie stany magazynowe" + +#: engine/core/templates/admin/dashboard/_low_stock.html:29 +msgid "No low stock items." +msgstr "Brak pozycji o niskim stanie magazynowym." #: engine/core/templates/admin/dashboard/_most_returned.html:5 msgid "Most returned products (30d)" @@ -2879,11 +2893,11 @@ msgid "Most wished product" msgstr "Najbardziej pożądany produkt" #: engine/core/templates/admin/dashboard/_product_lists.html:33 -#: engine/core/templates/admin/dashboard/_product_lists.html:67 +#: engine/core/templates/admin/dashboard/_product_lists.html:68 msgid "No data yet." msgstr "Brak danych." -#: engine/core/templates/admin/dashboard/_product_lists.html:40 +#: engine/core/templates/admin/dashboard/_product_lists.html:41 msgid "Most popular product" msgstr "Najpopularniejszy produkt" @@ -2919,10 +2933,6 @@ msgstr "Brak sprzedaży kategorii w ciągu ostatnich 30 dni." msgid "Django site admin" msgstr "Administrator strony Django" -#: engine/core/templates/admin/index.html:20 -msgid "Dashboard" -msgstr "Pulpit nawigacyjny" - #: 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 @@ -2952,8 +2962,7 @@ msgstr "Witaj %(order.user.first_name)s," #, python-format msgid "" "thank you for your order #%(order.pk)s! we are pleased to inform you that\n" -" we have taken your order into work. below are " -"the details of your\n" +" we have taken your order into work. below are the details of your\n" " order:" msgstr "" "Dziękujemy za zamówienie #%(order.pk)s! Z przyjemnością informujemy, że " @@ -3012,8 +3021,8 @@ msgid "" "we have successfully processed your order №%(order_uuid)s! below are the\n" " details of your order:" msgstr "" -"Pomyślnie przetworzyliśmy Twoje zamówienie №%(order_uuid)s! Poniżej znajdują " -"się szczegóły zamówienia:" +"Pomyślnie przetworzyliśmy Twoje zamówienie №%(order_uuid)s! Poniżej znajdują" +" się szczegóły zamówienia:" #: engine/core/templates/digital_order_delivered_email.html:128 msgid "" @@ -3068,8 +3077,7 @@ msgstr "" #: engine/core/templates/shipped_order_created_email.html:101 #: engine/core/templates/shipped_order_delivered_email.html:101 msgid "" -"thank you for your order! we are pleased to confirm your purchase. below " -"are\n" +"thank you for your order! we are pleased to confirm your purchase. below are\n" " the details of your order:" msgstr "" "Dziękujemy za zamówienie! Z przyjemnością potwierdzamy zakup. Poniżej " @@ -3144,7 +3152,7 @@ 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." -#: engine/core/views.py:90 +#: engine/core/views.py:91 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." @@ -3152,26 +3160,26 @@ msgstr "" "Obsługuje żądanie indeksu mapy witryny i zwraca odpowiedź XML. Zapewnia, że " "odpowiedź zawiera odpowiedni nagłówek typu zawartości dla XML." -#: engine/core/views.py:105 +#: engine/core/views.py:106 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." -#: engine/core/views.py:140 +#: engine/core/views.py:141 msgid "" "Returns a list of supported languages and their corresponding information." msgstr "Zwraca listę obsługiwanych języków i odpowiadające im informacje." -#: engine/core/views.py:172 +#: engine/core/views.py:173 msgid "Returns the parameters of the website as a JSON object." msgstr "Zwraca parametry strony internetowej jako obiekt JSON." -#: engine/core/views.py:191 +#: engine/core/views.py:192 msgid "" "Handles cache operations such as reading and setting cache data with a " "specified key and timeout." @@ -3179,11 +3187,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." -#: engine/core/views.py:218 +#: engine/core/views.py:219 msgid "Handles `contact us` form submissions." msgstr "Obsługuje zgłoszenia formularzy `kontaktuj się z nami`." -#: engine/core/views.py:239 +#: engine/core/views.py:240 msgid "" "Handles requests for processing and validating URLs from incoming POST " "requests." @@ -3191,66 +3199,58 @@ msgstr "" "Obsługuje żądania przetwarzania i sprawdzania poprawności adresów URL z " "przychodzących żądań POST." -#: engine/core/views.py:279 +#: engine/core/views.py:280 msgid "Handles global search queries." msgstr "Obsługuje globalne zapytania wyszukiwania." -#: engine/core/views.py:294 +#: engine/core/views.py:295 msgid "Handles the logic of buying as a business without registration." msgstr "Obsługuje logikę zakupu jako firma bez rejestracji." -#: engine/core/views.py:331 +#: engine/core/views.py:332 msgid "" "Handles the downloading of a digital asset associated with an order.\n" -"This function attempts to serve the digital asset file located in the " -"storage directory of the project. If the file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the digital asset file located in the storage directory of the project. If the file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Obsługuje pobieranie zasobu cyfrowego powiązanego z zamówieniem.\n" -"Ta funkcja próbuje obsłużyć plik zasobu cyfrowego znajdujący się w katalogu " -"przechowywania projektu. Jeśli plik nie zostanie znaleziony, zgłaszany jest " -"błąd HTTP 404 wskazujący, że zasób jest niedostępny." +"Ta funkcja próbuje obsłużyć plik zasobu cyfrowego znajdujący się w katalogu przechowywania projektu. Jeśli plik nie zostanie znaleziony, zgłaszany jest błąd HTTP 404 wskazujący, że zasób jest niedostępny." -#: engine/core/views.py:342 +#: engine/core/views.py:343 msgid "order_product_uuid is required" msgstr "Order_product_uuid jest wymagany" -#: engine/core/views.py:349 +#: engine/core/views.py:350 msgid "order product does not exist" msgstr "zamówiony produkt nie istnieje" -#: engine/core/views.py:352 +#: engine/core/views.py:353 msgid "you can only download the digital asset once" msgstr "Zasób cyfrowy można pobrać tylko raz" -#: engine/core/views.py:355 +#: engine/core/views.py:356 msgid "the order must be paid before downloading the digital asset" msgstr "zamówienie musi zostać opłacone przed pobraniem zasobu cyfrowego" -#: engine/core/views.py:361 +#: engine/core/views.py:362 msgid "the order product does not have a product" msgstr "Produkt zamówienia nie ma produktu" -#: engine/core/views.py:398 +#: engine/core/views.py:399 msgid "favicon not found" msgstr "nie znaleziono favicon" -#: engine/core/views.py:403 +#: engine/core/views.py:404 msgid "" "Handles requests for the favicon of a website.\n" -"This function attempts to serve the favicon file located in the static " -"directory of the project. If the favicon file is not found, an HTTP 404 " -"error is raised to indicate the resource is unavailable." +"This function attempts to serve the favicon file located in the static directory of the project. If the favicon file is not found, an HTTP 404 error is raised to indicate the resource is unavailable." msgstr "" "Obsługuje żądania favicon strony internetowej.\n" -"Ta funkcja próbuje obsłużyć plik favicon znajdujący się w katalogu " -"statycznym projektu. Jeśli plik favicon nie zostanie znaleziony, zgłaszany " -"jest błąd HTTP 404 wskazujący, że zasób jest niedostępny." +"Ta funkcja próbuje obsłużyć plik favicon znajdujący się w katalogu statycznym projektu. Jeśli plik favicon nie zostanie znaleziony, zgłaszany jest błąd HTTP 404 wskazujący, że zasób jest niedostępny." -#: engine/core/views.py:415 +#: engine/core/views.py:416 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 " @@ -3258,11 +3258,11 @@ msgstr "" "administratora Django. Używa funkcji `redirect` Django do obsługi " "przekierowania HTTP." -#: engine/core/views.py:428 +#: engine/core/views.py:429 msgid "Returns current version of the eVibes. " msgstr "Zwraca aktualną wersję aplikacji eVibes." -#: engine/core/views.py:637 +#: engine/core/views.py:793 msgid "Returns custom variables for Dashboard. " msgstr "Zwraca zmienne niestandardowe dla Dashboard." @@ -3282,16 +3282,17 @@ msgstr "" #: engine/core/viewsets.py:156 msgid "" -"Represents a viewset for managing AttributeGroup objects. Handles operations " -"related to AttributeGroup, including filtering, serialization, and retrieval " -"of data. This class is part of the application's API layer and provides a " -"standardized way to process requests and responses for AttributeGroup data." +"Represents a viewset for managing AttributeGroup objects. Handles operations" +" related to AttributeGroup, including filtering, serialization, and " +"retrieval of data. This class is part of the application's API layer and " +"provides a standardized way to process requests and responses for " +"AttributeGroup data." msgstr "" "Reprezentuje zestaw widoków do zarządzania obiektami AttributeGroup. " "Obsługuje operacje związane z AttributeGroup, w tym filtrowanie, " "serializację i pobieranie danych. Klasa ta jest częścią warstwy API " -"aplikacji i zapewnia ustandaryzowany sposób przetwarzania żądań i odpowiedzi " -"dla danych AttributeGroup." +"aplikacji i zapewnia ustandaryzowany sposób przetwarzania żądań i odpowiedzi" +" dla danych AttributeGroup." #: engine/core/viewsets.py:175 msgid "" @@ -3314,14 +3315,14 @@ msgid "" "A viewset for managing AttributeValue objects. This viewset provides " "functionality for listing, retrieving, creating, updating, and deleting " "AttributeValue objects. It integrates with Django REST Framework's viewset " -"mechanisms and uses appropriate serializers for different actions. Filtering " -"capabilities are provided through the DjangoFilterBackend." +"mechanisms and uses appropriate serializers for different actions. Filtering" +" capabilities are provided through the DjangoFilterBackend." msgstr "" -"Zestaw widoków do zarządzania obiektami AttributeValue. Ten viewset zapewnia " -"funkcjonalność do listowania, pobierania, tworzenia, aktualizowania i " +"Zestaw widoków do zarządzania obiektami AttributeValue. Ten viewset zapewnia" +" funkcjonalność do listowania, pobierania, tworzenia, aktualizowania i " "usuwania obiektów AttributeValue. Integruje się z mechanizmami viewset " -"Django REST Framework i używa odpowiednich serializatorów dla różnych akcji. " -"Możliwości filtrowania są dostarczane przez DjangoFilterBackend." +"Django REST Framework i używa odpowiednich serializatorów dla różnych akcji." +" Możliwości filtrowania są dostarczane przez DjangoFilterBackend." #: engine/core/viewsets.py:213 msgid "" @@ -3332,8 +3333,8 @@ msgid "" "can access specific data." msgstr "" "Zarządza widokami dla operacji związanych z kategoriami. Klasa " -"CategoryViewSet jest odpowiedzialna za obsługę operacji związanych z modelem " -"kategorii w systemie. Obsługuje pobieranie, filtrowanie i serializowanie " +"CategoryViewSet jest odpowiedzialna za obsługę operacji związanych z modelem" +" kategorii w systemie. Obsługuje pobieranie, filtrowanie i serializowanie " "danych kategorii. Zestaw widoków wymusza również uprawnienia, aby zapewnić, " "że tylko autoryzowani użytkownicy mają dostęp do określonych danych." @@ -3363,8 +3364,8 @@ 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." #: engine/core/viewsets.py:574 @@ -3377,8 +3378,8 @@ msgid "" msgstr "" "Reprezentuje zestaw widoków do zarządzania obiektami Vendor. Ten zestaw " "widoków umożliwia pobieranie, filtrowanie i serializowanie danych dostawcy. " -"Definiuje zestaw zapytań, konfiguracje filtrów i klasy serializatora używane " -"do obsługi różnych działań. Celem tej klasy jest zapewnienie usprawnionego " +"Definiuje zestaw zapytań, konfiguracje filtrów i klasy serializatora używane" +" do obsługi różnych działań. Celem tej klasy jest zapewnienie usprawnionego " "dostępu do zasobów związanych z Vendorem poprzez framework Django REST." #: engine/core/viewsets.py:594 @@ -3386,8 +3387,8 @@ msgid "" "Representation of a view set handling Feedback objects. This class manages " "operations related to Feedback objects, including listing, filtering, and " "retrieving details. The purpose of this view set is to provide different " -"serializers for different actions and implement permission-based handling of " -"accessible Feedback objects. It extends the base `EvibesViewSet` and makes " +"serializers for different actions and implement permission-based handling of" +" accessible Feedback objects. It extends the base `EvibesViewSet` and makes " "use of Django's filtering system for querying data." msgstr "" "Reprezentacja zestawu widoków obsługujących obiekty opinii. Ta klasa " @@ -3403,9 +3404,9 @@ msgid "" "ViewSet for managing orders and related operations. This class provides " "functionality to retrieve, modify, and manage order objects. It includes " "various endpoints for handling order operations such as adding or removing " -"products, performing purchases for registered as well as unregistered users, " -"and retrieving the current authenticated user's pending orders. The ViewSet " -"uses multiple serializers based on the specific action being performed and " +"products, performing purchases for registered as well as unregistered users," +" and retrieving the current authenticated user's pending orders. The ViewSet" +" uses multiple serializers based on the specific action being performed and " "enforces permissions accordingly while interacting with order data." msgstr "" "ViewSet do zarządzania zamówieniami i powiązanymi operacjami. Klasa ta " @@ -3421,8 +3422,8 @@ msgstr "" msgid "" "Provides a viewset for managing OrderProduct entities. This viewset enables " "CRUD operations and custom actions specific to the OrderProduct model. It " -"includes filtering, permission checks, and serializer switching based on the " -"requested action. Additionally, it provides a detailed action for handling " +"includes filtering, permission checks, and serializer switching based on the" +" requested action. Additionally, it provides a detailed action for handling " "feedback on OrderProduct instances" msgstr "" "Udostępnia zestaw widoków do zarządzania jednostkami OrderProduct. Ten " @@ -3455,8 +3456,8 @@ msgstr "Obsługuje operacje związane z danymi Stock w systemie." msgid "" "ViewSet for managing Wishlist operations. The WishlistViewSet provides " "endpoints for interacting with a user's wish list, allowing for the " -"retrieval, modification, and customization of products within the wish list. " -"This ViewSet facilitates functionality such as adding, removing, and bulk " +"retrieval, modification, and customization of products within the wish list." +" This ViewSet facilitates functionality such as adding, removing, and bulk " "actions for wishlist products. Permission checks are integrated to ensure " "that users can only manage their own wishlists unless explicit permissions " "are granted." @@ -3480,8 +3481,8 @@ msgstr "" "Ta klasa zapewnia funkcjonalność zestawu widoków do zarządzania obiektami " "`Address`. Klasa AddressViewSet umożliwia operacje CRUD, filtrowanie i " "niestandardowe akcje związane z jednostkami adresowymi. Obejmuje ona " -"wyspecjalizowane zachowania dla różnych metod HTTP, zastępowanie serializera " -"i obsługę uprawnień w oparciu o kontekst żądania." +"wyspecjalizowane zachowania dla różnych metod HTTP, zastępowanie serializera" +" i obsługę uprawnień w oparciu o kontekst żądania." #: engine/core/viewsets.py:1123 #, python-brace-format diff --git a/engine/core/locale/pt_BR/LC_MESSAGES/django.mo b/engine/core/locale/pt_BR/LC_MESSAGES/django.mo index 99f60e1849f9e5999b707b56a824db64314fe6d6..dd77c31b3ccac257fd2bbf8e5bc51013ec9f1363 100644 GIT binary patch delta 14877 zcmZYF2YgT0~%t zre<)QX{D6wIJ>GiPHxR&yL5jKa(qgITaP=EnpK#2)C4<1hdxq3&OV z86C&%EF&_8jMbN%Ali416WPw_Z(&sm7S}QjpT%g>53EJvOu98{1k+J7GaEI+wWx+R zVs_kzCGaFB;U8ECTgE%iXqV#*#wKnezt?u0$`sV9>o`qu7(T~ixDCIq#|Wu6u)gEO zk{;8*%*Z}u3Y~Wwnugn;roI>E#qsEei_jN8L(SY5m=E`(TRlHdL^u9|zW5yJtmC{x zB^r*$RwTU|J5FoTZLv0PYhvm@OEA7h&4_QJ*-M2`OB91eFcH<^0jL=qn#lZX?M9HH zDVvCzvbk6i_n_AB7G}eTs0aRK&B1gPCS4TSmrgutH;=UWIh(PZq|2lB&MC}^KiTx{ zW~{&G!DOiCe_>Nb=GWZp?#}O;&6R>zDIa3fEn7Iwr_@Wr(wLR$Y0n<2(%Nw@QEzTr z>XP5D9h(hrwP!Lhdk4p9gKau8!_?pA?<N$@n9Qb;0Rf9p?lOh)-q;N$2QJ8AkMQ zoU-H>PC?R%_&aHLFUM&|dSI&KG~|J&dNTv0^Yt?w+|=K3`jg*!pyTW$|L9=HnSf)5 znwfNG8fK&nB)_fXj z31-{$0%Y&Goux#&QLq|yZhb~LP6+9SBh4=Eg?hj^^u>vo1!v&_>MzC&jIh&a-WlX~ zWl6PnW~27f9xRX7u^i?eYnHYyhUxq#5DBGVDC)*VSQ-zaX5tAdKX9Dm@Q!k7V-SwP zg1FGS6IJgl>b>zAwWp##Fvsm3)C_k)Kiq_wY2VpPMCbJoYBT>gFR6!fu2O&e`yl)uPJ{;h7V?$ zY(|<3^R3ti!4{|ocR)4R)8-FDt@Sw6l+Q=a;2KneyHM>Mw&@=+g!DBx5g#I6 zADLaA6*H6eM>UWiwIt!F2h>D0)Ce zLWU`3P4c69UK-VKEUF_dZFw>Vk{)hNv*nvm_w7Y>=roqb3#d)$J=HW=9+hr@RdoIb z6RAqZCe#S-phocA>NCysI0)6_2-Jw;QJbhWs^L^rhsU5gJQwwxPf+!CpgMlsdK3M0 z{{JPS&5&cdc~E)uC0z%zU;@TtTa3abm<_+jX#5$~K)?($fD))Fjz%qQJoDJ!8JC$8TFj6u_PWx zy~>~B8Z14F`PU6+h-m6AV?}&|I#wlSn~&Af7(+T4%i~Ja8vlslco{XKjC0H@w*;!8 zCaCwq1Ps8XsHNMAA$VvG^RE}eZ8CDAD~+2l7Y@ZF?1L9j9jZ6iOmSnZN4h;~gsV_9 zu@Uv0bkvLL=dQ`aAZ@B`EyT58j4u|DZcA6Jd(KjO{&NvgL!lUq