Features: 1) Add datetime library import; 2) Introduce id_for_label properties for all fields in NiceModel;

Fixes: 1) Correct field type hints and add `# type: ignore` to suppress validation issues;

Extra: Refactor code for formatting consistency and readability.
This commit is contained in:
Egor Pavlovich Gorbunov 2025-06-22 15:54:43 +03:00
parent 8b46c0a2c5
commit 5425225e31
35 changed files with 889 additions and 582 deletions

View file

@ -1,4 +1,5 @@
import uuid import uuid
from datetime import datetime
from django.db.models import BooleanField, Model, UUIDField from django.db.models import BooleanField, Model, UUIDField
from django.utils.translation import gettext_lazy as _ from django.utils.translation import gettext_lazy as _
@ -7,23 +8,35 @@ from django_extensions.db.fields import CreationDateTimeField, ModificationDateT
class NiceModel(Model): class NiceModel(Model):
id = None id = None
uuid: UUIDField = UUIDField( uuid: uuid = UUIDField( # type: ignore
verbose_name=_("unique id"), verbose_name=_("unique id"),
help_text=_("unique id is used to surely identify any database object"), help_text=_("unique id is used to surely identify any database object"),
primary_key=True, primary_key=True,
default=uuid.uuid4, default=uuid.uuid4,
editable=False, editable=False,
) )
is_active: BooleanField = BooleanField( uuid.id_for_label = "uuid"
is_active: bool = BooleanField( # type: ignore
default=True, default=True,
verbose_name=_("is active"), verbose_name=_("is active"),
help_text=_("if set to false, this object can't be seen by users without needed permission"), help_text=_(
"if set to false, this object can't be seen by users without needed permission"
),
) )
created = CreationDateTimeField(_("created"), help_text=_("when the object first appeared on the database")) is_active.id_for_label = "is_active"
modified = ModificationDateTimeField(_("modified"), help_text=_("when the object was last modified")) created: datetime = CreationDateTimeField( # type: ignore
_("created"), help_text=_("when the object first appeared on the database")
)
created.id_for_label = "created"
modified: datetime = ModificationDateTimeField( # type: ignore
_("modified"), help_text=_("when the object was last modified")
)
modified.id_for_label = "modified"
def save(self, **kwargs): def save(self, **kwargs):
self.update_modified = kwargs.pop("update_modified", getattr(self, "update_modified", True)) self.update_modified = kwargs.pop(
"update_modified", getattr(self, "update_modified", True)
)
super().save(**kwargs) super().save(**kwargs)
class Meta: class Meta:

View file

@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 1\n" "Project-Id-Version: 1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-06-21 22:42+0100\n" "POT-Creation-Date: 2025-06-22 13:52+0100\n"
"PO-Revision-Date: 2025-01-30 03:27+0000\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n"
"Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n" "Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n"
"Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n" "Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n"
@ -13,81 +13,105 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: core/abstract.py:11 #: core/abstract.py:12
msgid "unique id" msgid "unique id"
msgstr "المعرف الفريد" msgstr "المعرف الفريد"
#: core/abstract.py:12 #: core/abstract.py:13
msgid "unique id is used to surely identify any database object" msgid "unique id is used to surely identify any database object"
msgstr "يستخدم المعرف الفريد لتحديد أي كائن قاعدة بيانات بالتأكيد" msgstr "يستخدم المعرف الفريد لتحديد أي كائن قاعدة بيانات بالتأكيد"
#: core/abstract.py:19 #: core/abstract.py:21
msgid "is active" msgid "is active"
msgstr "نشط" msgstr "نشط"
#: core/abstract.py:20 #: core/abstract.py:23
msgid "" msgid ""
"if set to false, this object can't be seen by users without needed " "if set to false, this object can't be seen by users without needed "
"permission" "permission"
msgstr "" msgstr ""
"إذا تم تعيينه على خطأ، لا يمكن للمستخدمين رؤية هذا الكائن دون الحاجة إلى إذن" "إذا تم تعيينه على خطأ، لا يمكن للمستخدمين رؤية هذا الكائن دون الحاجة إلى إذن"
#: core/abstract.py:22 core/choices.py:18 #: core/abstract.py:28 core/choices.py:18
msgid "created" msgid "created"
msgstr "تم إنشاؤها" msgstr "تم إنشاؤها"
#: core/abstract.py:22 #: core/abstract.py:28
msgid "when the object first appeared on the database" msgid "when the object first appeared on the database"
msgstr "عندما ظهر الكائن لأول مرة في قاعدة البيانات" msgstr "عندما ظهر الكائن لأول مرة في قاعدة البيانات"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "modified" msgid "modified"
msgstr "تم التعديل" msgstr "تم التعديل"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "when the object was last modified" msgid "when the object was last modified"
msgstr "متى تم تحرير الكائن آخر مرة" msgstr "متى تم تحرير الكائن آخر مرة"
#: core/admin.py:41 core/admin.py:56 #: core/admin.py:41
msgid "general"
msgstr "جنرال لواء"
#: core/admin.py:42
msgid "I18N"
msgstr "التدويل"
#: core/admin.py:43
msgid "metadata"
msgstr "البيانات الوصفية"
#: core/admin.py:44
msgid "timestamps"
msgstr "الطوابع الزمنية"
#: core/admin.py:45
msgid "relations"
msgstr "العلاقات"
#: core/admin.py:69 core/admin.py:70
msgid "translations"
msgstr "الترجمات"
#: core/admin.py:98 core/admin.py:113
#, python-format #, python-format
msgid "activate selected %(verbose_name_plural)s" msgid "activate selected %(verbose_name_plural)s"
msgstr "تنشيط المحدد %(verbose_name_plural)s" msgstr "تنشيط المحدد %(verbose_name_plural)s"
#: core/admin.py:46 core/admin.py:61 #: core/admin.py:103 core/admin.py:118
#, python-format #, python-format
msgid "deactivate selected %(verbose_name_plural)s" msgid "deactivate selected %(verbose_name_plural)s"
msgstr "إلغاء تنشيط %(verbose_name_plural)s المحددة" msgstr "إلغاء تنشيط %(verbose_name_plural)s المحددة"
#: core/admin.py:70 core/graphene/object_types.py:411 #: core/admin.py:127 core/graphene/object_types.py:411
#: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517 #: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517
msgid "attribute value" msgid "attribute value"
msgstr "قيمة السمة" msgstr "قيمة السمة"
#: core/admin.py:71 core/graphene/object_types.py:48 core/models.py:518 #: core/admin.py:128 core/graphene/object_types.py:48 core/models.py:518
msgid "attribute values" msgid "attribute values"
msgstr "قيم السمات" msgstr "قيم السمات"
#: core/admin.py:148 #: core/admin.py:235
msgid "name" msgid "name"
msgstr "الاسم" msgstr "الاسم"
#: core/admin.py:171 #: core/admin.py:258
msgid "image" msgid "image"
msgstr "الصورة" msgstr "الصورة"
#: core/admin.py:172 core/graphene/object_types.py:364 #: core/admin.py:259 core/graphene/object_types.py:364
msgid "images" msgid "images"
msgstr "الصور" msgstr "الصور"
#: core/admin.py:179 core/models.py:648 #: core/admin.py:267 core/models.py:648
msgid "stock" msgid "stock"
msgstr "المخزون" msgstr "المخزون"
#: core/admin.py:180 core/graphene/object_types.py:465 #: core/admin.py:268 core/graphene/object_types.py:465
msgid "stocks" msgid "stocks"
msgstr "الأسهم" msgstr "الأسهم"
#: core/admin.py:220 core/graphene/object_types.py:368 #: core/admin.py:309 core/graphene/object_types.py:368
#: core/templates/digital_order_created_email.html:111 #: core/templates/digital_order_created_email.html:111
#: core/templates/digital_order_delivered_email.html:110 #: core/templates/digital_order_delivered_email.html:110
#: core/templates/shipped_order_created_email.html:109 #: core/templates/shipped_order_created_email.html:109
@ -95,31 +119,23 @@ msgstr "الأسهم"
msgid "price" msgid "price"
msgstr "السعر" msgstr "السعر"
#: core/admin.py:225 #: core/admin.py:314
msgid "rating" msgid "rating"
msgstr "تصنيف المنتج" msgstr "تصنيف المنتج"
#: core/admin.py:229 #: core/admin.py:390 core/models.py:1382
msgid "basic info"
msgstr "معلومات أساسية"
#: core/admin.py:245
msgid "important dates"
msgstr "تواريخ مهمة"
#: core/admin.py:289 core/models.py:1382
msgid "order product" msgid "order product"
msgstr "طلب المنتج" msgstr "طلب المنتج"
#: core/admin.py:290 core/graphene/object_types.py:290 core/models.py:1383 #: core/admin.py:391 core/graphene/object_types.py:290 core/models.py:1383
msgid "order products" msgid "order products"
msgstr "اطلب المنتجات" msgstr "اطلب المنتجات"
#: core/admin.py:317 #: core/admin.py:419
msgid "is business" msgid "is business"
msgstr "هل الأعمال" msgstr "هل الأعمال"
#: core/admin.py:448 #: core/admin.py:552
msgid "config" msgid "config"
msgstr "التكوين" msgstr "التكوين"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 1\n" "Project-Id-Version: 1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-06-21 22:42+0100\n" "POT-Creation-Date: 2025-06-22 13:52+0100\n"
"PO-Revision-Date: 2025-01-30 03:27+0000\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n"
"Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n" "Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n"
"Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n" "Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n"
@ -13,20 +13,20 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: core/abstract.py:11 #: core/abstract.py:12
msgid "unique id" msgid "unique id"
msgstr "Jedinečné ID" msgstr "Jedinečné ID"
#: core/abstract.py:12 #: core/abstract.py:13
msgid "unique id is used to surely identify any database object" msgid "unique id is used to surely identify any database object"
msgstr "" msgstr ""
"Jedinečné ID slouží k jisté identifikaci jakéhokoli databázového objektu." "Jedinečné ID slouží k jisté identifikaci jakéhokoli databázového objektu."
#: core/abstract.py:19 #: core/abstract.py:21
msgid "is active" msgid "is active"
msgstr "Je aktivní" msgstr "Je aktivní"
#: core/abstract.py:20 #: core/abstract.py:23
msgid "" msgid ""
"if set to false, this object can't be seen by users without needed " "if set to false, this object can't be seen by users without needed "
"permission" "permission"
@ -34,62 +34,86 @@ msgstr ""
"Pokud je nastaveno na false, nemohou tento objekt vidět uživatelé bez " "Pokud je nastaveno na false, nemohou tento objekt vidět uživatelé bez "
"potřebného oprávnění." "potřebného oprávnění."
#: core/abstract.py:22 core/choices.py:18 #: core/abstract.py:28 core/choices.py:18
msgid "created" msgid "created"
msgstr "Vytvořeno" msgstr "Vytvořeno"
#: core/abstract.py:22 #: core/abstract.py:28
msgid "when the object first appeared on the database" msgid "when the object first appeared on the database"
msgstr "Kdy se objekt poprvé objevil v databázi" msgstr "Kdy se objekt poprvé objevil v databázi"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "modified" msgid "modified"
msgstr "Upraveno" msgstr "Upraveno"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "when the object was last modified" msgid "when the object was last modified"
msgstr "Kdy byl objekt naposledy upraven" msgstr "Kdy byl objekt naposledy upraven"
#: core/admin.py:41 core/admin.py:56 #: core/admin.py:41
msgid "general"
msgstr "Obecné"
#: core/admin.py:42
msgid "I18N"
msgstr "Internacionalizace"
#: core/admin.py:43
msgid "metadata"
msgstr "Metadata"
#: core/admin.py:44
msgid "timestamps"
msgstr "Časová razítka"
#: core/admin.py:45
msgid "relations"
msgstr "Vztahy"
#: core/admin.py:69 core/admin.py:70
msgid "translations"
msgstr "Překlady"
#: core/admin.py:98 core/admin.py:113
#, python-format #, python-format
msgid "activate selected %(verbose_name_plural)s" msgid "activate selected %(verbose_name_plural)s"
msgstr "Aktivovat vybrané %(verbose_name_plural)s" msgstr "Aktivovat vybrané %(verbose_name_plural)s"
#: core/admin.py:46 core/admin.py:61 #: core/admin.py:103 core/admin.py:118
#, python-format #, python-format
msgid "deactivate selected %(verbose_name_plural)s" msgid "deactivate selected %(verbose_name_plural)s"
msgstr "Deaktivovat vybrané %(verbose_name_plural)s" msgstr "Deaktivovat vybrané %(verbose_name_plural)s"
#: core/admin.py:70 core/graphene/object_types.py:411 #: core/admin.py:127 core/graphene/object_types.py:411
#: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517 #: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517
msgid "attribute value" msgid "attribute value"
msgstr "Hodnota atributu" msgstr "Hodnota atributu"
#: core/admin.py:71 core/graphene/object_types.py:48 core/models.py:518 #: core/admin.py:128 core/graphene/object_types.py:48 core/models.py:518
msgid "attribute values" msgid "attribute values"
msgstr "Hodnoty atributů" msgstr "Hodnoty atributů"
#: core/admin.py:148 #: core/admin.py:235
msgid "name" msgid "name"
msgstr "Název" msgstr "Název"
#: core/admin.py:171 #: core/admin.py:258
msgid "image" msgid "image"
msgstr "Obrázek" msgstr "Obrázek"
#: core/admin.py:172 core/graphene/object_types.py:364 #: core/admin.py:259 core/graphene/object_types.py:364
msgid "images" msgid "images"
msgstr "Obrázky" msgstr "Obrázky"
#: core/admin.py:179 core/models.py:648 #: core/admin.py:267 core/models.py:648
msgid "stock" msgid "stock"
msgstr "Stock" msgstr "Stock"
#: core/admin.py:180 core/graphene/object_types.py:465 #: core/admin.py:268 core/graphene/object_types.py:465
msgid "stocks" msgid "stocks"
msgstr "Zásoby" msgstr "Zásoby"
#: core/admin.py:220 core/graphene/object_types.py:368 #: core/admin.py:309 core/graphene/object_types.py:368
#: core/templates/digital_order_created_email.html:111 #: core/templates/digital_order_created_email.html:111
#: core/templates/digital_order_delivered_email.html:110 #: core/templates/digital_order_delivered_email.html:110
#: core/templates/shipped_order_created_email.html:109 #: core/templates/shipped_order_created_email.html:109
@ -97,31 +121,23 @@ msgstr "Zásoby"
msgid "price" msgid "price"
msgstr "Cena" msgstr "Cena"
#: core/admin.py:225 #: core/admin.py:314
msgid "rating" msgid "rating"
msgstr "Hodnocení produktu" msgstr "Hodnocení produktu"
#: core/admin.py:229 #: core/admin.py:390 core/models.py:1382
msgid "basic info"
msgstr "Základní informace"
#: core/admin.py:245
msgid "important dates"
msgstr "Důležitá data"
#: core/admin.py:289 core/models.py:1382
msgid "order product" msgid "order product"
msgstr "Objednat produkt" msgstr "Objednat produkt"
#: core/admin.py:290 core/graphene/object_types.py:290 core/models.py:1383 #: core/admin.py:391 core/graphene/object_types.py:290 core/models.py:1383
msgid "order products" msgid "order products"
msgstr "Objednat produkty" msgstr "Objednat produkty"
#: core/admin.py:317 #: core/admin.py:419
msgid "is business" msgid "is business"
msgstr "Je podnikání" msgstr "Je podnikání"
#: core/admin.py:448 #: core/admin.py:552
msgid "config" msgid "config"
msgstr "Konfigurace" msgstr "Konfigurace"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 1\n" "Project-Id-Version: 1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-06-21 22:42+0100\n" "POT-Creation-Date: 2025-06-22 13:52+0100\n"
"PO-Revision-Date: 2025-01-30 03:27+0000\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n"
"Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n" "Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n"
"Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n" "Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n"
@ -13,19 +13,19 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: core/abstract.py:11 #: core/abstract.py:12
msgid "unique id" msgid "unique id"
msgstr "Unikt ID" msgstr "Unikt ID"
#: core/abstract.py:12 #: core/abstract.py:13
msgid "unique id is used to surely identify any database object" msgid "unique id is used to surely identify any database object"
msgstr "Unikt ID bruges til sikkert at identificere ethvert databaseobjekt" msgstr "Unikt ID bruges til sikkert at identificere ethvert databaseobjekt"
#: core/abstract.py:19 #: core/abstract.py:21
msgid "is active" msgid "is active"
msgstr "Er aktiv" msgstr "Er aktiv"
#: core/abstract.py:20 #: core/abstract.py:23
msgid "" msgid ""
"if set to false, this object can't be seen by users without needed " "if set to false, this object can't be seen by users without needed "
"permission" "permission"
@ -33,62 +33,86 @@ msgstr ""
"Hvis det er sat til false, kan dette objekt ikke ses af brugere uden den " "Hvis det er sat til false, kan dette objekt ikke ses af brugere uden den "
"nødvendige tilladelse." "nødvendige tilladelse."
#: core/abstract.py:22 core/choices.py:18 #: core/abstract.py:28 core/choices.py:18
msgid "created" msgid "created"
msgstr "Oprettet" msgstr "Oprettet"
#: core/abstract.py:22 #: core/abstract.py:28
msgid "when the object first appeared on the database" msgid "when the object first appeared on the database"
msgstr "Da objektet første gang dukkede op i databasen" msgstr "Da objektet første gang dukkede op i databasen"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "modified" msgid "modified"
msgstr "Modificeret" msgstr "Modificeret"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "when the object was last modified" msgid "when the object was last modified"
msgstr "Hvornår objektet sidst blev redigeret" msgstr "Hvornår objektet sidst blev redigeret"
#: core/admin.py:41 core/admin.py:56 #: core/admin.py:41
msgid "general"
msgstr "Generelt"
#: core/admin.py:42
msgid "I18N"
msgstr "Internationalisering"
#: core/admin.py:43
msgid "metadata"
msgstr "Metadata"
#: core/admin.py:44
msgid "timestamps"
msgstr "Tidsstempler"
#: core/admin.py:45
msgid "relations"
msgstr "Relationer"
#: core/admin.py:69 core/admin.py:70
msgid "translations"
msgstr "Oversættelser"
#: core/admin.py:98 core/admin.py:113
#, python-format #, python-format
msgid "activate selected %(verbose_name_plural)s" msgid "activate selected %(verbose_name_plural)s"
msgstr "Aktivér udvalgte %(verbose_name_plural)s" msgstr "Aktivér udvalgte %(verbose_name_plural)s"
#: core/admin.py:46 core/admin.py:61 #: core/admin.py:103 core/admin.py:118
#, python-format #, python-format
msgid "deactivate selected %(verbose_name_plural)s" msgid "deactivate selected %(verbose_name_plural)s"
msgstr "Deaktiver udvalgte %(verbose_name_plural)s" msgstr "Deaktiver udvalgte %(verbose_name_plural)s"
#: core/admin.py:70 core/graphene/object_types.py:411 #: core/admin.py:127 core/graphene/object_types.py:411
#: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517 #: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517
msgid "attribute value" msgid "attribute value"
msgstr "Attributværdi" msgstr "Attributværdi"
#: core/admin.py:71 core/graphene/object_types.py:48 core/models.py:518 #: core/admin.py:128 core/graphene/object_types.py:48 core/models.py:518
msgid "attribute values" msgid "attribute values"
msgstr "Attributværdier" msgstr "Attributværdier"
#: core/admin.py:148 #: core/admin.py:235
msgid "name" msgid "name"
msgstr "Navn" msgstr "Navn"
#: core/admin.py:171 #: core/admin.py:258
msgid "image" msgid "image"
msgstr "Billede" msgstr "Billede"
#: core/admin.py:172 core/graphene/object_types.py:364 #: core/admin.py:259 core/graphene/object_types.py:364
msgid "images" msgid "images"
msgstr "Billeder" msgstr "Billeder"
#: core/admin.py:179 core/models.py:648 #: core/admin.py:267 core/models.py:648
msgid "stock" msgid "stock"
msgstr "Lager" msgstr "Lager"
#: core/admin.py:180 core/graphene/object_types.py:465 #: core/admin.py:268 core/graphene/object_types.py:465
msgid "stocks" msgid "stocks"
msgstr "Aktier" msgstr "Aktier"
#: core/admin.py:220 core/graphene/object_types.py:368 #: core/admin.py:309 core/graphene/object_types.py:368
#: core/templates/digital_order_created_email.html:111 #: core/templates/digital_order_created_email.html:111
#: core/templates/digital_order_delivered_email.html:110 #: core/templates/digital_order_delivered_email.html:110
#: core/templates/shipped_order_created_email.html:109 #: core/templates/shipped_order_created_email.html:109
@ -96,31 +120,23 @@ msgstr "Aktier"
msgid "price" msgid "price"
msgstr "Pris" msgstr "Pris"
#: core/admin.py:225 #: core/admin.py:314
msgid "rating" msgid "rating"
msgstr "Produktvurdering" msgstr "Produktvurdering"
#: core/admin.py:229 #: core/admin.py:390 core/models.py:1382
msgid "basic info"
msgstr "Grundlæggende information"
#: core/admin.py:245
msgid "important dates"
msgstr "Vigtige datoer"
#: core/admin.py:289 core/models.py:1382
msgid "order product" msgid "order product"
msgstr "Bestil produkt" msgstr "Bestil produkt"
#: core/admin.py:290 core/graphene/object_types.py:290 core/models.py:1383 #: core/admin.py:391 core/graphene/object_types.py:290 core/models.py:1383
msgid "order products" msgid "order products"
msgstr "Bestil produkter" msgstr "Bestil produkter"
#: core/admin.py:317 #: core/admin.py:419
msgid "is business" msgid "is business"
msgstr "Er forretning" msgstr "Er forretning"
#: core/admin.py:448 #: core/admin.py:552
msgid "config" msgid "config"
msgstr "Konfig" msgstr "Konfig"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 1\n" "Project-Id-Version: 1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-06-21 22:42+0100\n" "POT-Creation-Date: 2025-06-22 13:52+0100\n"
"PO-Revision-Date: 2025-01-30 03:27+0000\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n"
"Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n" "Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n"
"Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n" "Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n"
@ -13,21 +13,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: core/abstract.py:11 #: core/abstract.py:12
msgid "unique id" msgid "unique id"
msgstr "Eindeutige ID" msgstr "Eindeutige ID"
#: core/abstract.py:12 #: core/abstract.py:13
msgid "unique id is used to surely identify any database object" msgid "unique id is used to surely identify any database object"
msgstr "" msgstr ""
"Eindeutige ID wird zur sicheren Identifizierung jedes Datenbankobjekts " "Eindeutige ID wird zur sicheren Identifizierung jedes Datenbankobjekts "
"verwendet" "verwendet"
#: core/abstract.py:19 #: core/abstract.py:21
msgid "is active" msgid "is active"
msgstr "Ist aktiv" msgstr "Ist aktiv"
#: core/abstract.py:20 #: core/abstract.py:23
msgid "" msgid ""
"if set to false, this object can't be seen by users without needed " "if set to false, this object can't be seen by users without needed "
"permission" "permission"
@ -35,62 +35,86 @@ msgstr ""
"Wenn auf false gesetzt, kann dieses Objekt von Benutzern ohne die " "Wenn auf false gesetzt, kann dieses Objekt von Benutzern ohne die "
"erforderliche Berechtigung nicht gesehen werden." "erforderliche Berechtigung nicht gesehen werden."
#: core/abstract.py:22 core/choices.py:18 #: core/abstract.py:28 core/choices.py:18
msgid "created" msgid "created"
msgstr "Erstellt" msgstr "Erstellt"
#: core/abstract.py:22 #: core/abstract.py:28
msgid "when the object first appeared on the database" msgid "when the object first appeared on the database"
msgstr "Wann das Objekt zum ersten Mal in der Datenbank erschienen ist" msgstr "Wann das Objekt zum ersten Mal in der Datenbank erschienen ist"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "modified" msgid "modified"
msgstr "Geändert" msgstr "Geändert"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "when the object was last modified" msgid "when the object was last modified"
msgstr "Wann das Objekt zuletzt bearbeitet wurde" msgstr "Wann das Objekt zuletzt bearbeitet wurde"
#: core/admin.py:41 core/admin.py:56 #: core/admin.py:41
msgid "general"
msgstr "Allgemein"
#: core/admin.py:42
msgid "I18N"
msgstr "Internationalisierung"
#: core/admin.py:43
msgid "metadata"
msgstr "Metadaten"
#: core/admin.py:44
msgid "timestamps"
msgstr "Zeitstempel"
#: core/admin.py:45
msgid "relations"
msgstr "Beziehungen"
#: core/admin.py:69 core/admin.py:70
msgid "translations"
msgstr "Übersetzungen"
#: core/admin.py:98 core/admin.py:113
#, python-format #, python-format
msgid "activate selected %(verbose_name_plural)s" msgid "activate selected %(verbose_name_plural)s"
msgstr "Ausgewählte %(verbose_name_plural)s aktivieren" msgstr "Ausgewählte %(verbose_name_plural)s aktivieren"
#: core/admin.py:46 core/admin.py:61 #: core/admin.py:103 core/admin.py:118
#, python-format #, python-format
msgid "deactivate selected %(verbose_name_plural)s" msgid "deactivate selected %(verbose_name_plural)s"
msgstr "Ausgewählte %(verbose_name_plural)s deaktivieren" msgstr "Ausgewählte %(verbose_name_plural)s deaktivieren"
#: core/admin.py:70 core/graphene/object_types.py:411 #: core/admin.py:127 core/graphene/object_types.py:411
#: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517 #: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517
msgid "attribute value" msgid "attribute value"
msgstr "Attribut Wert" msgstr "Attribut Wert"
#: core/admin.py:71 core/graphene/object_types.py:48 core/models.py:518 #: core/admin.py:128 core/graphene/object_types.py:48 core/models.py:518
msgid "attribute values" msgid "attribute values"
msgstr "Attribut Werte" msgstr "Attribut Werte"
#: core/admin.py:148 #: core/admin.py:235
msgid "name" msgid "name"
msgstr "Name" msgstr "Name"
#: core/admin.py:171 #: core/admin.py:258
msgid "image" msgid "image"
msgstr "Bild" msgstr "Bild"
#: core/admin.py:172 core/graphene/object_types.py:364 #: core/admin.py:259 core/graphene/object_types.py:364
msgid "images" msgid "images"
msgstr "Bilder" msgstr "Bilder"
#: core/admin.py:179 core/models.py:648 #: core/admin.py:267 core/models.py:648
msgid "stock" msgid "stock"
msgstr "Lagerbestand" msgstr "Lagerbestand"
#: core/admin.py:180 core/graphene/object_types.py:465 #: core/admin.py:268 core/graphene/object_types.py:465
msgid "stocks" msgid "stocks"
msgstr "Bestände" msgstr "Bestände"
#: core/admin.py:220 core/graphene/object_types.py:368 #: core/admin.py:309 core/graphene/object_types.py:368
#: core/templates/digital_order_created_email.html:111 #: core/templates/digital_order_created_email.html:111
#: core/templates/digital_order_delivered_email.html:110 #: core/templates/digital_order_delivered_email.html:110
#: core/templates/shipped_order_created_email.html:109 #: core/templates/shipped_order_created_email.html:109
@ -98,31 +122,23 @@ msgstr "Bestände"
msgid "price" msgid "price"
msgstr "Preis" msgstr "Preis"
#: core/admin.py:225 #: core/admin.py:314
msgid "rating" msgid "rating"
msgstr "Produktbewertung" msgstr "Produktbewertung"
#: core/admin.py:229 #: core/admin.py:390 core/models.py:1382
msgid "basic info"
msgstr "Grundlegende Informationen"
#: core/admin.py:245
msgid "important dates"
msgstr "Wichtige Termine"
#: core/admin.py:289 core/models.py:1382
msgid "order product" msgid "order product"
msgstr "Produkt bestellen" msgstr "Produkt bestellen"
#: core/admin.py:290 core/graphene/object_types.py:290 core/models.py:1383 #: core/admin.py:391 core/graphene/object_types.py:290 core/models.py:1383
msgid "order products" msgid "order products"
msgstr "Produkte bestellen" msgstr "Produkte bestellen"
#: core/admin.py:317 #: core/admin.py:419
msgid "is business" msgid "is business"
msgstr "Ist Business" msgstr "Ist Business"
#: core/admin.py:448 #: core/admin.py:552
msgid "config" msgid "config"
msgstr "Konfigurieren Sie" msgstr "Konfigurieren Sie"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 1\n" "Project-Id-Version: 1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-06-21 22:42+0100\n" "POT-Creation-Date: 2025-06-22 13:52+0100\n"
"PO-Revision-Date: 2025-01-30 03:27+0000\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n"
"Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n" "Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n"
"Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n" "Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n"
@ -17,19 +17,19 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: core/abstract.py:11 #: core/abstract.py:12
msgid "unique id" msgid "unique id"
msgstr "Unique ID" msgstr "Unique ID"
#: core/abstract.py:12 #: core/abstract.py:13
msgid "unique id is used to surely identify any database object" msgid "unique id is used to surely identify any database object"
msgstr "Unique ID is used to surely identify any database object" msgstr "Unique ID is used to surely identify any database object"
#: core/abstract.py:19 #: core/abstract.py:21
msgid "is active" msgid "is active"
msgstr "Is Active" msgstr "Is Active"
#: core/abstract.py:20 #: core/abstract.py:23
msgid "" msgid ""
"if set to false, this object can't be seen by users without needed " "if set to false, this object can't be seen by users without needed "
"permission" "permission"
@ -37,62 +37,86 @@ msgstr ""
"If set to false, this object can't be seen by users without needed " "If set to false, this object can't be seen by users without needed "
"permission" "permission"
#: core/abstract.py:22 core/choices.py:18 #: core/abstract.py:28 core/choices.py:18
msgid "created" msgid "created"
msgstr "Created" msgstr "Created"
#: core/abstract.py:22 #: core/abstract.py:28
msgid "when the object first appeared on the database" msgid "when the object first appeared on the database"
msgstr "When the object first appeared on the database" msgstr "When the object first appeared on the database"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "modified" msgid "modified"
msgstr "Modified" msgstr "Modified"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "when the object was last modified" msgid "when the object was last modified"
msgstr "When the object was last edited" msgstr "When the object was last edited"
#: core/admin.py:41 core/admin.py:56 #: core/admin.py:41
msgid "general"
msgstr "General"
#: core/admin.py:42
msgid "I18N"
msgstr "Internationalization"
#: core/admin.py:43
msgid "metadata"
msgstr "Metadata"
#: core/admin.py:44
msgid "timestamps"
msgstr "Timestamps"
#: core/admin.py:45
msgid "relations"
msgstr "Relations"
#: core/admin.py:69 core/admin.py:70
msgid "translations"
msgstr "Translations"
#: core/admin.py:98 core/admin.py:113
#, python-format #, python-format
msgid "activate selected %(verbose_name_plural)s" msgid "activate selected %(verbose_name_plural)s"
msgstr "Activate selected %(verbose_name_plural)s" msgstr "Activate selected %(verbose_name_plural)s"
#: core/admin.py:46 core/admin.py:61 #: core/admin.py:103 core/admin.py:118
#, python-format #, python-format
msgid "deactivate selected %(verbose_name_plural)s" msgid "deactivate selected %(verbose_name_plural)s"
msgstr "Deactivate selected %(verbose_name_plural)s" msgstr "Deactivate selected %(verbose_name_plural)s"
#: core/admin.py:70 core/graphene/object_types.py:411 #: core/admin.py:127 core/graphene/object_types.py:411
#: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517 #: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517
msgid "attribute value" msgid "attribute value"
msgstr "Attribute Value" msgstr "Attribute Value"
#: core/admin.py:71 core/graphene/object_types.py:48 core/models.py:518 #: core/admin.py:128 core/graphene/object_types.py:48 core/models.py:518
msgid "attribute values" msgid "attribute values"
msgstr "Attribute Values" msgstr "Attribute Values"
#: core/admin.py:148 #: core/admin.py:235
msgid "name" msgid "name"
msgstr "Name" msgstr "Name"
#: core/admin.py:171 #: core/admin.py:258
msgid "image" msgid "image"
msgstr "Image" msgstr "Image"
#: core/admin.py:172 core/graphene/object_types.py:364 #: core/admin.py:259 core/graphene/object_types.py:364
msgid "images" msgid "images"
msgstr "Images" msgstr "Images"
#: core/admin.py:179 core/models.py:648 #: core/admin.py:267 core/models.py:648
msgid "stock" msgid "stock"
msgstr "Stock" msgstr "Stock"
#: core/admin.py:180 core/graphene/object_types.py:465 #: core/admin.py:268 core/graphene/object_types.py:465
msgid "stocks" msgid "stocks"
msgstr "Stocks" msgstr "Stocks"
#: core/admin.py:220 core/graphene/object_types.py:368 #: core/admin.py:309 core/graphene/object_types.py:368
#: core/templates/digital_order_created_email.html:111 #: core/templates/digital_order_created_email.html:111
#: core/templates/digital_order_delivered_email.html:110 #: core/templates/digital_order_delivered_email.html:110
#: core/templates/shipped_order_created_email.html:109 #: core/templates/shipped_order_created_email.html:109
@ -100,31 +124,23 @@ msgstr "Stocks"
msgid "price" msgid "price"
msgstr "Price" msgstr "Price"
#: core/admin.py:225 #: core/admin.py:314
msgid "rating" msgid "rating"
msgstr "Rating" msgstr "Rating"
#: core/admin.py:229 #: core/admin.py:390 core/models.py:1382
msgid "basic info"
msgstr "Basic Info"
#: core/admin.py:245
msgid "important dates"
msgstr "Important Dates"
#: core/admin.py:289 core/models.py:1382
msgid "order product" msgid "order product"
msgstr "Order Product" msgstr "Order Product"
#: core/admin.py:290 core/graphene/object_types.py:290 core/models.py:1383 #: core/admin.py:391 core/graphene/object_types.py:290 core/models.py:1383
msgid "order products" msgid "order products"
msgstr "Order Products" msgstr "Order Products"
#: core/admin.py:317 #: core/admin.py:419
msgid "is business" msgid "is business"
msgstr "Is Business" msgstr "Is Business"
#: core/admin.py:448 #: core/admin.py:552
msgid "config" msgid "config"
msgstr "Config" msgstr "Config"
@ -2258,5 +2274,11 @@ msgstr "favicon not found"
msgid "Geocoding error: {e}" msgid "Geocoding error: {e}"
msgstr "Geocoding error: {e}" msgstr "Geocoding error: {e}"
#~ msgid "basic info"
#~ msgstr "Basic Info"
#~ msgid "important dates"
#~ msgstr "Important Dates"
#~ msgid "eVibes Engine" #~ msgid "eVibes Engine"
#~ msgstr "eVibes Engine" #~ msgstr "eVibes Engine"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 1\n" "Project-Id-Version: 1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-06-21 22:42+0100\n" "POT-Creation-Date: 2025-06-22 13:52+0100\n"
"PO-Revision-Date: 2025-01-30 03:27+0000\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n"
"Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n" "Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n"
"Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n" "Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n"
@ -13,19 +13,19 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: core/abstract.py:11 #: core/abstract.py:12
msgid "unique id" msgid "unique id"
msgstr "Unique ID" msgstr "Unique ID"
#: core/abstract.py:12 #: core/abstract.py:13
msgid "unique id is used to surely identify any database object" msgid "unique id is used to surely identify any database object"
msgstr "Unique ID is used to surely identify any database object" msgstr "Unique ID is used to surely identify any database object"
#: core/abstract.py:19 #: core/abstract.py:21
msgid "is active" msgid "is active"
msgstr "Is Active" msgstr "Is Active"
#: core/abstract.py:20 #: core/abstract.py:23
msgid "" msgid ""
"if set to false, this object can't be seen by users without needed " "if set to false, this object can't be seen by users without needed "
"permission" "permission"
@ -33,62 +33,86 @@ msgstr ""
"If set to false, this object can't be seen by users without needed " "If set to false, this object can't be seen by users without needed "
"permission" "permission"
#: core/abstract.py:22 core/choices.py:18 #: core/abstract.py:28 core/choices.py:18
msgid "created" msgid "created"
msgstr "Created" msgstr "Created"
#: core/abstract.py:22 #: core/abstract.py:28
msgid "when the object first appeared on the database" msgid "when the object first appeared on the database"
msgstr "When the object first appeared on the database" msgstr "When the object first appeared on the database"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "modified" msgid "modified"
msgstr "Modified" msgstr "Modified"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "when the object was last modified" msgid "when the object was last modified"
msgstr "When the object was last edited" msgstr "When the object was last edited"
#: core/admin.py:41 core/admin.py:56 #: core/admin.py:41
msgid "general"
msgstr "General"
#: core/admin.py:42
msgid "I18N"
msgstr "Internationalization"
#: core/admin.py:43
msgid "metadata"
msgstr "Metadata"
#: core/admin.py:44
msgid "timestamps"
msgstr "Timestamps"
#: core/admin.py:45
msgid "relations"
msgstr "Relations"
#: core/admin.py:69 core/admin.py:70
msgid "translations"
msgstr "Translations"
#: core/admin.py:98 core/admin.py:113
#, python-format #, python-format
msgid "activate selected %(verbose_name_plural)s" msgid "activate selected %(verbose_name_plural)s"
msgstr "Activate selected %(verbose_name_plural)s" msgstr "Activate selected %(verbose_name_plural)s"
#: core/admin.py:46 core/admin.py:61 #: core/admin.py:103 core/admin.py:118
#, python-format #, python-format
msgid "deactivate selected %(verbose_name_plural)s" msgid "deactivate selected %(verbose_name_plural)s"
msgstr "Deactivate selected %(verbose_name_plural)s" msgstr "Deactivate selected %(verbose_name_plural)s"
#: core/admin.py:70 core/graphene/object_types.py:411 #: core/admin.py:127 core/graphene/object_types.py:411
#: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517 #: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517
msgid "attribute value" msgid "attribute value"
msgstr "Attribute Value" msgstr "Attribute Value"
#: core/admin.py:71 core/graphene/object_types.py:48 core/models.py:518 #: core/admin.py:128 core/graphene/object_types.py:48 core/models.py:518
msgid "attribute values" msgid "attribute values"
msgstr "Attribute Values" msgstr "Attribute Values"
#: core/admin.py:148 #: core/admin.py:235
msgid "name" msgid "name"
msgstr "Name" msgstr "Name"
#: core/admin.py:171 #: core/admin.py:258
msgid "image" msgid "image"
msgstr "Image" msgstr "Image"
#: core/admin.py:172 core/graphene/object_types.py:364 #: core/admin.py:259 core/graphene/object_types.py:364
msgid "images" msgid "images"
msgstr "Images" msgstr "Images"
#: core/admin.py:179 core/models.py:648 #: core/admin.py:267 core/models.py:648
msgid "stock" msgid "stock"
msgstr "Stock" msgstr "Stock"
#: core/admin.py:180 core/graphene/object_types.py:465 #: core/admin.py:268 core/graphene/object_types.py:465
msgid "stocks" msgid "stocks"
msgstr "Stocks" msgstr "Stocks"
#: core/admin.py:220 core/graphene/object_types.py:368 #: core/admin.py:309 core/graphene/object_types.py:368
#: core/templates/digital_order_created_email.html:111 #: core/templates/digital_order_created_email.html:111
#: core/templates/digital_order_delivered_email.html:110 #: core/templates/digital_order_delivered_email.html:110
#: core/templates/shipped_order_created_email.html:109 #: core/templates/shipped_order_created_email.html:109
@ -96,31 +120,23 @@ msgstr "Stocks"
msgid "price" msgid "price"
msgstr "Price" msgstr "Price"
#: core/admin.py:225 #: core/admin.py:314
msgid "rating" msgid "rating"
msgstr "Product rating" msgstr "Product rating"
#: core/admin.py:229 #: core/admin.py:390 core/models.py:1382
msgid "basic info"
msgstr "Basic Info"
#: core/admin.py:245
msgid "important dates"
msgstr "Important dates"
#: core/admin.py:289 core/models.py:1382
msgid "order product" msgid "order product"
msgstr "Order Product" msgstr "Order Product"
#: core/admin.py:290 core/graphene/object_types.py:290 core/models.py:1383 #: core/admin.py:391 core/graphene/object_types.py:290 core/models.py:1383
msgid "order products" msgid "order products"
msgstr "Order Products" msgstr "Order Products"
#: core/admin.py:317 #: core/admin.py:419
msgid "is business" msgid "is business"
msgstr "Is Business" msgstr "Is Business"
#: core/admin.py:448 #: core/admin.py:552
msgid "config" msgid "config"
msgstr "Config" msgstr "Config"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 1\n" "Project-Id-Version: 1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-06-21 22:42+0100\n" "POT-Creation-Date: 2025-06-22 13:52+0100\n"
"PO-Revision-Date: 2025-01-30 03:27+0000\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n"
"Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n" "Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n"
"Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n" "Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n"
@ -13,21 +13,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: core/abstract.py:11 #: core/abstract.py:12
msgid "unique id" msgid "unique id"
msgstr "Identificación única" msgstr "Identificación única"
#: core/abstract.py:12 #: core/abstract.py:13
msgid "unique id is used to surely identify any database object" msgid "unique id is used to surely identify any database object"
msgstr "" msgstr ""
"El identificador único se utiliza para identificar con seguridad cualquier " "El identificador único se utiliza para identificar con seguridad cualquier "
"objeto de la base de datos" "objeto de la base de datos"
#: core/abstract.py:19 #: core/abstract.py:21
msgid "is active" msgid "is active"
msgstr "Está activo" msgstr "Está activo"
#: core/abstract.py:20 #: core/abstract.py:23
msgid "" msgid ""
"if set to false, this object can't be seen by users without needed " "if set to false, this object can't be seen by users without needed "
"permission" "permission"
@ -35,62 +35,86 @@ msgstr ""
"Si se establece en false, este objeto no puede ser visto por los usuarios " "Si se establece en false, este objeto no puede ser visto por los usuarios "
"sin el permiso necesario" "sin el permiso necesario"
#: core/abstract.py:22 core/choices.py:18 #: core/abstract.py:28 core/choices.py:18
msgid "created" msgid "created"
msgstr "Creado" msgstr "Creado"
#: core/abstract.py:22 #: core/abstract.py:28
msgid "when the object first appeared on the database" msgid "when the object first appeared on the database"
msgstr "Cuando el objeto apareció por primera vez en la base de datos" msgstr "Cuando el objeto apareció por primera vez en la base de datos"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "modified" msgid "modified"
msgstr "Modificado" msgstr "Modificado"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "when the object was last modified" msgid "when the object was last modified"
msgstr "Cuándo se editó el objeto por última vez" msgstr "Cuándo se editó el objeto por última vez"
#: core/admin.py:41 core/admin.py:56 #: core/admin.py:41
msgid "general"
msgstr "General"
#: core/admin.py:42
msgid "I18N"
msgstr "Internacionalización"
#: core/admin.py:43
msgid "metadata"
msgstr "Metadatos"
#: core/admin.py:44
msgid "timestamps"
msgstr "Marcas de tiempo"
#: core/admin.py:45
msgid "relations"
msgstr "Relaciones"
#: core/admin.py:69 core/admin.py:70
msgid "translations"
msgstr "Traducciones"
#: core/admin.py:98 core/admin.py:113
#, python-format #, python-format
msgid "activate selected %(verbose_name_plural)s" msgid "activate selected %(verbose_name_plural)s"
msgstr "Activar %(verbose_name_plural)s seleccionados" msgstr "Activar %(verbose_name_plural)s seleccionados"
#: core/admin.py:46 core/admin.py:61 #: core/admin.py:103 core/admin.py:118
#, python-format #, python-format
msgid "deactivate selected %(verbose_name_plural)s" msgid "deactivate selected %(verbose_name_plural)s"
msgstr "Desactivar %(verbose_name_plural)s seleccionados" msgstr "Desactivar %(verbose_name_plural)s seleccionados"
#: core/admin.py:70 core/graphene/object_types.py:411 #: core/admin.py:127 core/graphene/object_types.py:411
#: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517 #: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517
msgid "attribute value" msgid "attribute value"
msgstr "Atributo Valor" msgstr "Atributo Valor"
#: core/admin.py:71 core/graphene/object_types.py:48 core/models.py:518 #: core/admin.py:128 core/graphene/object_types.py:48 core/models.py:518
msgid "attribute values" msgid "attribute values"
msgstr "Valores de los atributos" msgstr "Valores de los atributos"
#: core/admin.py:148 #: core/admin.py:235
msgid "name" msgid "name"
msgstr "Nombre" msgstr "Nombre"
#: core/admin.py:171 #: core/admin.py:258
msgid "image" msgid "image"
msgstr "Imagen" msgstr "Imagen"
#: core/admin.py:172 core/graphene/object_types.py:364 #: core/admin.py:259 core/graphene/object_types.py:364
msgid "images" msgid "images"
msgstr "Imágenes" msgstr "Imágenes"
#: core/admin.py:179 core/models.py:648 #: core/admin.py:267 core/models.py:648
msgid "stock" msgid "stock"
msgstr "Stock" msgstr "Stock"
#: core/admin.py:180 core/graphene/object_types.py:465 #: core/admin.py:268 core/graphene/object_types.py:465
msgid "stocks" msgid "stocks"
msgstr "Acciones" msgstr "Acciones"
#: core/admin.py:220 core/graphene/object_types.py:368 #: core/admin.py:309 core/graphene/object_types.py:368
#: core/templates/digital_order_created_email.html:111 #: core/templates/digital_order_created_email.html:111
#: core/templates/digital_order_delivered_email.html:110 #: core/templates/digital_order_delivered_email.html:110
#: core/templates/shipped_order_created_email.html:109 #: core/templates/shipped_order_created_email.html:109
@ -98,31 +122,23 @@ msgstr "Acciones"
msgid "price" msgid "price"
msgstr "Precio" msgstr "Precio"
#: core/admin.py:225 #: core/admin.py:314
msgid "rating" msgid "rating"
msgstr "Valoración del producto" msgstr "Valoración del producto"
#: core/admin.py:229 #: core/admin.py:390 core/models.py:1382
msgid "basic info"
msgstr "Información básica"
#: core/admin.py:245
msgid "important dates"
msgstr "Fechas importantes"
#: core/admin.py:289 core/models.py:1382
msgid "order product" msgid "order product"
msgstr "Pedir un producto" msgstr "Pedir un producto"
#: core/admin.py:290 core/graphene/object_types.py:290 core/models.py:1383 #: core/admin.py:391 core/graphene/object_types.py:290 core/models.py:1383
msgid "order products" msgid "order products"
msgstr "Pedir productos" msgstr "Pedir productos"
#: core/admin.py:317 #: core/admin.py:419
msgid "is business" msgid "is business"
msgstr "Es Negocio" msgstr "Es Negocio"
#: core/admin.py:448 #: core/admin.py:552
msgid "config" msgid "config"
msgstr "Configurar" msgstr "Configurar"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 1\n" "Project-Id-Version: 1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-06-21 22:42+0100\n" "POT-Creation-Date: 2025-06-22 13:52+0100\n"
"PO-Revision-Date: 2025-01-30 03:27+0000\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n"
"Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n" "Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n"
"Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n" "Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n"
@ -13,21 +13,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: core/abstract.py:11 #: core/abstract.py:12
msgid "unique id" msgid "unique id"
msgstr "Unique ID" msgstr "Unique ID"
#: core/abstract.py:12 #: core/abstract.py:13
msgid "unique id is used to surely identify any database object" msgid "unique id is used to surely identify any database object"
msgstr "" msgstr ""
"L'identifiant unique est utilisé pour identifier de manière sûre tout objet " "L'identifiant unique est utilisé pour identifier de manière sûre tout objet "
"de la base de données." "de la base de données."
#: core/abstract.py:19 #: core/abstract.py:21
msgid "is active" msgid "is active"
msgstr "Est actif" msgstr "Est actif"
#: core/abstract.py:20 #: core/abstract.py:23
msgid "" msgid ""
"if set to false, this object can't be seen by users without needed " "if set to false, this object can't be seen by users without needed "
"permission" "permission"
@ -35,62 +35,86 @@ msgstr ""
"Si la valeur est fixée à false, cet objet ne peut pas être vu par les " "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." "utilisateurs qui n'ont pas l'autorisation nécessaire."
#: core/abstract.py:22 core/choices.py:18 #: core/abstract.py:28 core/choices.py:18
msgid "created" msgid "created"
msgstr "Créée" msgstr "Créée"
#: core/abstract.py:22 #: core/abstract.py:28
msgid "when the object first appeared on the database" msgid "when the object first appeared on the database"
msgstr "Date de la première apparition de l'objet dans la base de données" msgstr "Date de la première apparition de l'objet dans la base de données"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "modified" msgid "modified"
msgstr "Modifié" msgstr "Modifié"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "when the object was last modified" msgid "when the object was last modified"
msgstr "Date de la dernière modification de l'objet" msgstr "Date de la dernière modification de l'objet"
#: core/admin.py:41 core/admin.py:56 #: core/admin.py:41
msgid "general"
msgstr "Général"
#: core/admin.py:42
msgid "I18N"
msgstr "Internationalisation"
#: core/admin.py:43
msgid "metadata"
msgstr "Métadonnées"
#: core/admin.py:44
msgid "timestamps"
msgstr "Horodatage"
#: core/admin.py:45
msgid "relations"
msgstr "Relations"
#: core/admin.py:69 core/admin.py:70
msgid "translations"
msgstr "Traductions"
#: core/admin.py:98 core/admin.py:113
#, python-format #, python-format
msgid "activate selected %(verbose_name_plural)s" msgid "activate selected %(verbose_name_plural)s"
msgstr "Activer les %(verbose_name_plural)s sélectionnés" msgstr "Activer les %(verbose_name_plural)s sélectionnés"
#: core/admin.py:46 core/admin.py:61 #: core/admin.py:103 core/admin.py:118
#, python-format #, python-format
msgid "deactivate selected %(verbose_name_plural)s" msgid "deactivate selected %(verbose_name_plural)s"
msgstr "Désactiver les %(verbose_name_plural)s sélectionnés" msgstr "Désactiver les %(verbose_name_plural)s sélectionnés"
#: core/admin.py:70 core/graphene/object_types.py:411 #: core/admin.py:127 core/graphene/object_types.py:411
#: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517 #: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517
msgid "attribute value" msgid "attribute value"
msgstr "Valeur de l'attribut" msgstr "Valeur de l'attribut"
#: core/admin.py:71 core/graphene/object_types.py:48 core/models.py:518 #: core/admin.py:128 core/graphene/object_types.py:48 core/models.py:518
msgid "attribute values" msgid "attribute values"
msgstr "Valeurs des attributs" msgstr "Valeurs des attributs"
#: core/admin.py:148 #: core/admin.py:235
msgid "name" msgid "name"
msgstr "Nom" msgstr "Nom"
#: core/admin.py:171 #: core/admin.py:258
msgid "image" msgid "image"
msgstr "Image" msgstr "Image"
#: core/admin.py:172 core/graphene/object_types.py:364 #: core/admin.py:259 core/graphene/object_types.py:364
msgid "images" msgid "images"
msgstr "Images" msgstr "Images"
#: core/admin.py:179 core/models.py:648 #: core/admin.py:267 core/models.py:648
msgid "stock" msgid "stock"
msgstr "Stock" msgstr "Stock"
#: core/admin.py:180 core/graphene/object_types.py:465 #: core/admin.py:268 core/graphene/object_types.py:465
msgid "stocks" msgid "stocks"
msgstr "Stocks" msgstr "Stocks"
#: core/admin.py:220 core/graphene/object_types.py:368 #: core/admin.py:309 core/graphene/object_types.py:368
#: core/templates/digital_order_created_email.html:111 #: core/templates/digital_order_created_email.html:111
#: core/templates/digital_order_delivered_email.html:110 #: core/templates/digital_order_delivered_email.html:110
#: core/templates/shipped_order_created_email.html:109 #: core/templates/shipped_order_created_email.html:109
@ -98,31 +122,23 @@ msgstr "Stocks"
msgid "price" msgid "price"
msgstr "Prix" msgstr "Prix"
#: core/admin.py:225 #: core/admin.py:314
msgid "rating" msgid "rating"
msgstr "Evaluation du produit" msgstr "Evaluation du produit"
#: core/admin.py:229 #: core/admin.py:390 core/models.py:1382
msgid "basic info"
msgstr "Informations de base"
#: core/admin.py:245
msgid "important dates"
msgstr "Important Dates"
#: core/admin.py:289 core/models.py:1382
msgid "order product" msgid "order product"
msgstr "Commander un produit" msgstr "Commander un produit"
#: core/admin.py:290 core/graphene/object_types.py:290 core/models.py:1383 #: core/admin.py:391 core/graphene/object_types.py:290 core/models.py:1383
msgid "order products" msgid "order products"
msgstr "Commander des produits" msgstr "Commander des produits"
#: core/admin.py:317 #: core/admin.py:419
msgid "is business" msgid "is business"
msgstr "Est l'entreprise" msgstr "Est l'entreprise"
#: core/admin.py:448 #: core/admin.py:552
msgid "config" msgid "config"
msgstr "Config" msgstr "Config"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: EVIBES 2.8.9\n" "Project-Id-Version: EVIBES 2.8.9\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-06-21 22:42+0100\n" "POT-Creation-Date: 2025-06-22 13:48+0100\n"
"PO-Revision-Date: 2025-06-16 08:59+0100\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n"
"Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n" "Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n"
"Language-Team: LANGUAGE <CONTACT@FUREUNOIR.COM>\n" "Language-Team: LANGUAGE <CONTACT@FUREUNOIR.COM>\n"
@ -16,79 +16,103 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: core/abstract.py:11 #: core/abstract.py:12
msgid "unique id" msgid "unique id"
msgstr "" msgstr ""
#: core/abstract.py:12 #: core/abstract.py:13
msgid "unique id is used to surely identify any database object" msgid "unique id is used to surely identify any database object"
msgstr "" msgstr ""
#: core/abstract.py:19 #: core/abstract.py:21
msgid "is active" msgid "is active"
msgstr "" msgstr ""
#: core/abstract.py:20 #: core/abstract.py:23
msgid "" 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 "" msgstr ""
#: core/abstract.py:22 core/choices.py:18 #: core/abstract.py:28 core/choices.py:18
msgid "created" msgid "created"
msgstr "" msgstr ""
#: core/abstract.py:22 #: core/abstract.py:28
msgid "when the object first appeared on the database" msgid "when the object first appeared on the database"
msgstr "" msgstr ""
#: core/abstract.py:23 #: core/abstract.py:32
msgid "modified" msgid "modified"
msgstr "" msgstr ""
#: core/abstract.py:23 #: core/abstract.py:32
msgid "when the object was last modified" msgid "when the object was last modified"
msgstr "" msgstr ""
#: core/admin.py:41 core/admin.py:56 #: core/admin.py:41
msgid "general"
msgstr ""
#: core/admin.py:42
msgid "I18N"
msgstr ""
#: core/admin.py:43
msgid "metadata"
msgstr ""
#: core/admin.py:44
msgid "timestamps"
msgstr ""
#: core/admin.py:45
msgid "relations"
msgstr ""
#: core/admin.py:69 core/admin.py:70
msgid "translations"
msgstr ""
#: core/admin.py:98 core/admin.py:113
#, python-format #, python-format
msgid "activate selected %(verbose_name_plural)s" msgid "activate selected %(verbose_name_plural)s"
msgstr "" msgstr ""
#: core/admin.py:46 core/admin.py:61 #: core/admin.py:103 core/admin.py:118
#, python-format #, python-format
msgid "deactivate selected %(verbose_name_plural)s" msgid "deactivate selected %(verbose_name_plural)s"
msgstr "" msgstr ""
#: core/admin.py:70 core/graphene/object_types.py:411 #: core/admin.py:127 core/graphene/object_types.py:411
#: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517 #: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517
msgid "attribute value" msgid "attribute value"
msgstr "" msgstr ""
#: core/admin.py:71 core/graphene/object_types.py:48 core/models.py:518 #: core/admin.py:128 core/graphene/object_types.py:48 core/models.py:518
msgid "attribute values" msgid "attribute values"
msgstr "" msgstr ""
#: core/admin.py:148 #: core/admin.py:235
msgid "name" msgid "name"
msgstr "" msgstr ""
#: core/admin.py:171 #: core/admin.py:258
msgid "image" msgid "image"
msgstr "" msgstr ""
#: core/admin.py:172 core/graphene/object_types.py:364 #: core/admin.py:259 core/graphene/object_types.py:364
msgid "images" msgid "images"
msgstr "" msgstr ""
#: core/admin.py:179 core/models.py:648 #: core/admin.py:267 core/models.py:648
msgid "stock" msgid "stock"
msgstr "" msgstr ""
#: core/admin.py:180 core/graphene/object_types.py:465 #: core/admin.py:268 core/graphene/object_types.py:465
msgid "stocks" msgid "stocks"
msgstr "" msgstr ""
#: core/admin.py:220 core/graphene/object_types.py:368 #: core/admin.py:309 core/graphene/object_types.py:368
#: core/templates/digital_order_created_email.html:111 #: core/templates/digital_order_created_email.html:111
#: core/templates/digital_order_delivered_email.html:110 #: core/templates/digital_order_delivered_email.html:110
#: core/templates/shipped_order_created_email.html:109 #: core/templates/shipped_order_created_email.html:109
@ -96,31 +120,23 @@ msgstr ""
msgid "price" msgid "price"
msgstr "" msgstr ""
#: core/admin.py:225 #: core/admin.py:314
msgid "rating" msgid "rating"
msgstr "" msgstr ""
#: core/admin.py:229 #: core/admin.py:390 core/models.py:1382
msgid "basic info"
msgstr ""
#: core/admin.py:245
msgid "important dates"
msgstr ""
#: core/admin.py:289 core/models.py:1382
msgid "order product" msgid "order product"
msgstr "" msgstr ""
#: core/admin.py:290 core/graphene/object_types.py:290 core/models.py:1383 #: core/admin.py:391 core/graphene/object_types.py:290 core/models.py:1383
msgid "order products" msgid "order products"
msgstr "" msgstr ""
#: core/admin.py:317 #: core/admin.py:419
msgid "is business" msgid "is business"
msgstr "" msgstr ""
#: core/admin.py:448 #: core/admin.py:552
msgid "config" msgid "config"
msgstr "" msgstr ""

View file

@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 1\n" "Project-Id-Version: 1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-06-21 22:42+0100\n" "POT-Creation-Date: 2025-06-22 13:52+0100\n"
"PO-Revision-Date: 2025-01-30 03:27+0000\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n"
"Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n" "Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n"
"Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n" "Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n"
@ -13,21 +13,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: core/abstract.py:11 #: core/abstract.py:12
msgid "unique id" msgid "unique id"
msgstr "ID univoco" msgstr "ID univoco"
#: core/abstract.py:12 #: core/abstract.py:13
msgid "unique id is used to surely identify any database object" msgid "unique id is used to surely identify any database object"
msgstr "" msgstr ""
"L'ID univoco viene utilizzato per identificare con certezza qualsiasi " "L'ID univoco viene utilizzato per identificare con certezza qualsiasi "
"oggetto del database." "oggetto del database."
#: core/abstract.py:19 #: core/abstract.py:21
msgid "is active" msgid "is active"
msgstr "È attivo" msgstr "È attivo"
#: core/abstract.py:20 #: core/abstract.py:23
msgid "" msgid ""
"if set to false, this object can't be seen by users without needed " "if set to false, this object can't be seen by users without needed "
"permission" "permission"
@ -35,62 +35,86 @@ msgstr ""
"Se impostato a false, questo oggetto non può essere visto dagli utenti senza" "Se impostato a false, questo oggetto non può essere visto dagli utenti senza"
" i necessari permessi." " i necessari permessi."
#: core/abstract.py:22 core/choices.py:18 #: core/abstract.py:28 core/choices.py:18
msgid "created" msgid "created"
msgstr "Creato" msgstr "Creato"
#: core/abstract.py:22 #: core/abstract.py:28
msgid "when the object first appeared on the database" msgid "when the object first appeared on the database"
msgstr "Quando l'oggetto è apparso per la prima volta nel database" msgstr "Quando l'oggetto è apparso per la prima volta nel database"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "modified" msgid "modified"
msgstr "Modificato" msgstr "Modificato"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "when the object was last modified" msgid "when the object was last modified"
msgstr "Quando l'oggetto è stato modificato per l'ultima volta" msgstr "Quando l'oggetto è stato modificato per l'ultima volta"
#: core/admin.py:41 core/admin.py:56 #: core/admin.py:41
msgid "general"
msgstr "Generale"
#: core/admin.py:42
msgid "I18N"
msgstr "Internazionalizzazione"
#: core/admin.py:43
msgid "metadata"
msgstr "Metadati"
#: core/admin.py:44
msgid "timestamps"
msgstr "Timestamp"
#: core/admin.py:45
msgid "relations"
msgstr "Relazioni"
#: core/admin.py:69 core/admin.py:70
msgid "translations"
msgstr "Traduzioni"
#: core/admin.py:98 core/admin.py:113
#, python-format #, python-format
msgid "activate selected %(verbose_name_plural)s" msgid "activate selected %(verbose_name_plural)s"
msgstr "Attivare il %(verbose_name_plural)s selezionato" msgstr "Attivare il %(verbose_name_plural)s selezionato"
#: core/admin.py:46 core/admin.py:61 #: core/admin.py:103 core/admin.py:118
#, python-format #, python-format
msgid "deactivate selected %(verbose_name_plural)s" msgid "deactivate selected %(verbose_name_plural)s"
msgstr "Disattivare il %(verbose_name_plural)s selezionato" msgstr "Disattivare il %(verbose_name_plural)s selezionato"
#: core/admin.py:70 core/graphene/object_types.py:411 #: core/admin.py:127 core/graphene/object_types.py:411
#: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517 #: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517
msgid "attribute value" msgid "attribute value"
msgstr "Valore dell'attributo" msgstr "Valore dell'attributo"
#: core/admin.py:71 core/graphene/object_types.py:48 core/models.py:518 #: core/admin.py:128 core/graphene/object_types.py:48 core/models.py:518
msgid "attribute values" msgid "attribute values"
msgstr "Valori degli attributi" msgstr "Valori degli attributi"
#: core/admin.py:148 #: core/admin.py:235
msgid "name" msgid "name"
msgstr "Nome" msgstr "Nome"
#: core/admin.py:171 #: core/admin.py:258
msgid "image" msgid "image"
msgstr "Immagine" msgstr "Immagine"
#: core/admin.py:172 core/graphene/object_types.py:364 #: core/admin.py:259 core/graphene/object_types.py:364
msgid "images" msgid "images"
msgstr "Immagini" msgstr "Immagini"
#: core/admin.py:179 core/models.py:648 #: core/admin.py:267 core/models.py:648
msgid "stock" msgid "stock"
msgstr "Stock" msgstr "Stock"
#: core/admin.py:180 core/graphene/object_types.py:465 #: core/admin.py:268 core/graphene/object_types.py:465
msgid "stocks" msgid "stocks"
msgstr "Le scorte" msgstr "Le scorte"
#: core/admin.py:220 core/graphene/object_types.py:368 #: core/admin.py:309 core/graphene/object_types.py:368
#: core/templates/digital_order_created_email.html:111 #: core/templates/digital_order_created_email.html:111
#: core/templates/digital_order_delivered_email.html:110 #: core/templates/digital_order_delivered_email.html:110
#: core/templates/shipped_order_created_email.html:109 #: core/templates/shipped_order_created_email.html:109
@ -98,31 +122,23 @@ msgstr "Le scorte"
msgid "price" msgid "price"
msgstr "Prezzo" msgstr "Prezzo"
#: core/admin.py:225 #: core/admin.py:314
msgid "rating" msgid "rating"
msgstr "Valutazione" msgstr "Valutazione"
#: core/admin.py:229 #: core/admin.py:390 core/models.py:1382
msgid "basic info"
msgstr "Informazioni di base"
#: core/admin.py:245
msgid "important dates"
msgstr "Date importanti"
#: core/admin.py:289 core/models.py:1382
msgid "order product" msgid "order product"
msgstr "Ordina il prodotto" msgstr "Ordina il prodotto"
#: core/admin.py:290 core/graphene/object_types.py:290 core/models.py:1383 #: core/admin.py:391 core/graphene/object_types.py:290 core/models.py:1383
msgid "order products" msgid "order products"
msgstr "Ordinare i prodotti" msgstr "Ordinare i prodotti"
#: core/admin.py:317 #: core/admin.py:419
msgid "is business" msgid "is business"
msgstr "È Business" msgstr "È Business"
#: core/admin.py:448 #: core/admin.py:552
msgid "config" msgid "config"
msgstr "Configurazione" msgstr "Configurazione"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 1\n" "Project-Id-Version: 1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-06-21 22:42+0100\n" "POT-Creation-Date: 2025-06-22 13:52+0100\n"
"PO-Revision-Date: 2025-01-30 03:27+0000\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n"
"Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n" "Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n"
"Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n" "Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n"
@ -13,80 +13,104 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: core/abstract.py:11 #: core/abstract.py:12
msgid "unique id" msgid "unique id"
msgstr "ユニークID" msgstr "ユニークID"
#: core/abstract.py:12 #: core/abstract.py:13
msgid "unique id is used to surely identify any database object" msgid "unique id is used to surely identify any database object"
msgstr "ユニークIDは、データベースオブジェクトを確実に識別するために使用されます。" msgstr "ユニークIDは、データベースオブジェクトを確実に識別するために使用されます。"
#: core/abstract.py:19 #: core/abstract.py:21
msgid "is active" msgid "is active"
msgstr "アクティブ" msgstr "アクティブ"
#: core/abstract.py:20 #: core/abstract.py:23
msgid "" msgid ""
"if set to false, this object can't be seen by users without needed " "if set to false, this object can't be seen by users without needed "
"permission" "permission"
msgstr "falseに設定された場合、このオブジェクトは必要なパーミッションのないユーザーには見えない。" msgstr "falseに設定された場合、このオブジェクトは必要なパーミッションのないユーザーには見えない。"
#: core/abstract.py:22 core/choices.py:18 #: core/abstract.py:28 core/choices.py:18
msgid "created" msgid "created"
msgstr "作成" msgstr "作成"
#: core/abstract.py:22 #: core/abstract.py:28
msgid "when the object first appeared on the database" msgid "when the object first appeared on the database"
msgstr "そのオブジェクトが初めてデータベースに登場した時" msgstr "そのオブジェクトが初めてデータベースに登場した時"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "modified" msgid "modified"
msgstr "変形" msgstr "変形"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "when the object was last modified" msgid "when the object was last modified"
msgstr "オブジェクトの最終編集日時" msgstr "オブジェクトの最終編集日時"
#: core/admin.py:41 core/admin.py:56 #: core/admin.py:41
msgid "general"
msgstr "一般"
#: core/admin.py:42
msgid "I18N"
msgstr "国際化"
#: core/admin.py:43
msgid "metadata"
msgstr "メタデータ"
#: core/admin.py:44
msgid "timestamps"
msgstr "タイムスタンプ"
#: core/admin.py:45
msgid "relations"
msgstr "関係"
#: core/admin.py:69 core/admin.py:70
msgid "translations"
msgstr "翻訳"
#: core/admin.py:98 core/admin.py:113
#, python-format #, python-format
msgid "activate selected %(verbose_name_plural)s" msgid "activate selected %(verbose_name_plural)s"
msgstr "選択した %(verbose_name_plural)s をアクティブにする。" msgstr "選択した %(verbose_name_plural)s をアクティブにする。"
#: core/admin.py:46 core/admin.py:61 #: core/admin.py:103 core/admin.py:118
#, python-format #, python-format
msgid "deactivate selected %(verbose_name_plural)s" msgid "deactivate selected %(verbose_name_plural)s"
msgstr "選択された %(verbose_name_plural)s を非アクティブにする。" msgstr "選択された %(verbose_name_plural)s を非アクティブにする。"
#: core/admin.py:70 core/graphene/object_types.py:411 #: core/admin.py:127 core/graphene/object_types.py:411
#: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517 #: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517
msgid "attribute value" msgid "attribute value"
msgstr "属性値" msgstr "属性値"
#: core/admin.py:71 core/graphene/object_types.py:48 core/models.py:518 #: core/admin.py:128 core/graphene/object_types.py:48 core/models.py:518
msgid "attribute values" msgid "attribute values"
msgstr "属性値" msgstr "属性値"
#: core/admin.py:148 #: core/admin.py:235
msgid "name" msgid "name"
msgstr "名称" msgstr "名称"
#: core/admin.py:171 #: core/admin.py:258
msgid "image" msgid "image"
msgstr "画像" msgstr "画像"
#: core/admin.py:172 core/graphene/object_types.py:364 #: core/admin.py:259 core/graphene/object_types.py:364
msgid "images" msgid "images"
msgstr "画像" msgstr "画像"
#: core/admin.py:179 core/models.py:648 #: core/admin.py:267 core/models.py:648
msgid "stock" msgid "stock"
msgstr "在庫" msgstr "在庫"
#: core/admin.py:180 core/graphene/object_types.py:465 #: core/admin.py:268 core/graphene/object_types.py:465
msgid "stocks" msgid "stocks"
msgstr "株式" msgstr "株式"
#: core/admin.py:220 core/graphene/object_types.py:368 #: core/admin.py:309 core/graphene/object_types.py:368
#: core/templates/digital_order_created_email.html:111 #: core/templates/digital_order_created_email.html:111
#: core/templates/digital_order_delivered_email.html:110 #: core/templates/digital_order_delivered_email.html:110
#: core/templates/shipped_order_created_email.html:109 #: core/templates/shipped_order_created_email.html:109
@ -94,31 +118,23 @@ msgstr "株式"
msgid "price" msgid "price"
msgstr "価格" msgstr "価格"
#: core/admin.py:225 #: core/admin.py:314
msgid "rating" msgid "rating"
msgstr "製品評価" msgstr "製品評価"
#: core/admin.py:229 #: core/admin.py:390 core/models.py:1382
msgid "basic info"
msgstr "基本情報"
#: core/admin.py:245
msgid "important dates"
msgstr "重要な日程"
#: core/admin.py:289 core/models.py:1382
msgid "order product" msgid "order product"
msgstr "商品のご注文" msgstr "商品のご注文"
#: core/admin.py:290 core/graphene/object_types.py:290 core/models.py:1383 #: core/admin.py:391 core/graphene/object_types.py:290 core/models.py:1383
msgid "order products" msgid "order products"
msgstr "商品のご注文" msgstr "商品のご注文"
#: core/admin.py:317 #: core/admin.py:419
msgid "is business" msgid "is business"
msgstr "ビジネス" msgstr "ビジネス"
#: core/admin.py:448 #: core/admin.py:552
msgid "config" msgid "config"
msgstr "コンフィグ" msgstr "コンフィグ"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: EVIBES 2.8.9\n" "Project-Id-Version: EVIBES 2.8.9\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-06-21 22:42+0100\n" "POT-Creation-Date: 2025-06-22 13:48+0100\n"
"PO-Revision-Date: 2025-06-16 08:59+0100\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n"
"Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n" "Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n"
"Language-Team: LANGUAGE <CONTACT@FUREUNOIR.COM>\n" "Language-Team: LANGUAGE <CONTACT@FUREUNOIR.COM>\n"
@ -16,79 +16,103 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: core/abstract.py:11 #: core/abstract.py:12
msgid "unique id" msgid "unique id"
msgstr "" msgstr ""
#: core/abstract.py:12 #: core/abstract.py:13
msgid "unique id is used to surely identify any database object" msgid "unique id is used to surely identify any database object"
msgstr "" msgstr ""
#: core/abstract.py:19 #: core/abstract.py:21
msgid "is active" msgid "is active"
msgstr "" msgstr ""
#: core/abstract.py:20 #: core/abstract.py:23
msgid "" 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 "" msgstr ""
#: core/abstract.py:22 core/choices.py:18 #: core/abstract.py:28 core/choices.py:18
msgid "created" msgid "created"
msgstr "" msgstr ""
#: core/abstract.py:22 #: core/abstract.py:28
msgid "when the object first appeared on the database" msgid "when the object first appeared on the database"
msgstr "" msgstr ""
#: core/abstract.py:23 #: core/abstract.py:32
msgid "modified" msgid "modified"
msgstr "" msgstr ""
#: core/abstract.py:23 #: core/abstract.py:32
msgid "when the object was last modified" msgid "when the object was last modified"
msgstr "" msgstr ""
#: core/admin.py:41 core/admin.py:56 #: core/admin.py:41
msgid "general"
msgstr ""
#: core/admin.py:42
msgid "I18N"
msgstr ""
#: core/admin.py:43
msgid "metadata"
msgstr ""
#: core/admin.py:44
msgid "timestamps"
msgstr ""
#: core/admin.py:45
msgid "relations"
msgstr ""
#: core/admin.py:69 core/admin.py:70
msgid "translations"
msgstr ""
#: core/admin.py:98 core/admin.py:113
#, python-format #, python-format
msgid "activate selected %(verbose_name_plural)s" msgid "activate selected %(verbose_name_plural)s"
msgstr "" msgstr ""
#: core/admin.py:46 core/admin.py:61 #: core/admin.py:103 core/admin.py:118
#, python-format #, python-format
msgid "deactivate selected %(verbose_name_plural)s" msgid "deactivate selected %(verbose_name_plural)s"
msgstr "" msgstr ""
#: core/admin.py:70 core/graphene/object_types.py:411 #: core/admin.py:127 core/graphene/object_types.py:411
#: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517 #: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517
msgid "attribute value" msgid "attribute value"
msgstr "" msgstr ""
#: core/admin.py:71 core/graphene/object_types.py:48 core/models.py:518 #: core/admin.py:128 core/graphene/object_types.py:48 core/models.py:518
msgid "attribute values" msgid "attribute values"
msgstr "" msgstr ""
#: core/admin.py:148 #: core/admin.py:235
msgid "name" msgid "name"
msgstr "" msgstr ""
#: core/admin.py:171 #: core/admin.py:258
msgid "image" msgid "image"
msgstr "" msgstr ""
#: core/admin.py:172 core/graphene/object_types.py:364 #: core/admin.py:259 core/graphene/object_types.py:364
msgid "images" msgid "images"
msgstr "" msgstr ""
#: core/admin.py:179 core/models.py:648 #: core/admin.py:267 core/models.py:648
msgid "stock" msgid "stock"
msgstr "" msgstr ""
#: core/admin.py:180 core/graphene/object_types.py:465 #: core/admin.py:268 core/graphene/object_types.py:465
msgid "stocks" msgid "stocks"
msgstr "" msgstr ""
#: core/admin.py:220 core/graphene/object_types.py:368 #: core/admin.py:309 core/graphene/object_types.py:368
#: core/templates/digital_order_created_email.html:111 #: core/templates/digital_order_created_email.html:111
#: core/templates/digital_order_delivered_email.html:110 #: core/templates/digital_order_delivered_email.html:110
#: core/templates/shipped_order_created_email.html:109 #: core/templates/shipped_order_created_email.html:109
@ -96,31 +120,23 @@ msgstr ""
msgid "price" msgid "price"
msgstr "" msgstr ""
#: core/admin.py:225 #: core/admin.py:314
msgid "rating" msgid "rating"
msgstr "" msgstr ""
#: core/admin.py:229 #: core/admin.py:390 core/models.py:1382
msgid "basic info"
msgstr ""
#: core/admin.py:245
msgid "important dates"
msgstr ""
#: core/admin.py:289 core/models.py:1382
msgid "order product" msgid "order product"
msgstr "" msgstr ""
#: core/admin.py:290 core/graphene/object_types.py:290 core/models.py:1383 #: core/admin.py:391 core/graphene/object_types.py:290 core/models.py:1383
msgid "order products" msgid "order products"
msgstr "" msgstr ""
#: core/admin.py:317 #: core/admin.py:419
msgid "is business" msgid "is business"
msgstr "" msgstr ""
#: core/admin.py:448 #: core/admin.py:552
msgid "config" msgid "config"
msgstr "" msgstr ""

View file

@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 1\n" "Project-Id-Version: 1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-06-21 22:42+0100\n" "POT-Creation-Date: 2025-06-22 13:52+0100\n"
"PO-Revision-Date: 2025-01-30 03:27+0000\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n"
"Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n" "Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n"
"Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n" "Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n"
@ -13,19 +13,19 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: core/abstract.py:11 #: core/abstract.py:12
msgid "unique id" msgid "unique id"
msgstr "Uniek ID" msgstr "Uniek ID"
#: core/abstract.py:12 #: core/abstract.py:13
msgid "unique id is used to surely identify any database object" msgid "unique id is used to surely identify any database object"
msgstr "Unieke ID wordt gebruikt om elk databaseobject te identificeren" msgstr "Unieke ID wordt gebruikt om elk databaseobject te identificeren"
#: core/abstract.py:19 #: core/abstract.py:21
msgid "is active" msgid "is active"
msgstr "Is actief" msgstr "Is actief"
#: core/abstract.py:20 #: core/abstract.py:23
msgid "" msgid ""
"if set to false, this object can't be seen by users without needed " "if set to false, this object can't be seen by users without needed "
"permission" "permission"
@ -33,62 +33,86 @@ msgstr ""
"Als false is ingesteld, kan dit object niet worden gezien door gebruikers " "Als false is ingesteld, kan dit object niet worden gezien door gebruikers "
"zonder de benodigde toestemming" "zonder de benodigde toestemming"
#: core/abstract.py:22 core/choices.py:18 #: core/abstract.py:28 core/choices.py:18
msgid "created" msgid "created"
msgstr "Gemaakt" msgstr "Gemaakt"
#: core/abstract.py:22 #: core/abstract.py:28
msgid "when the object first appeared on the database" msgid "when the object first appeared on the database"
msgstr "Wanneer het object voor het eerst in de database verscheen" msgstr "Wanneer het object voor het eerst in de database verscheen"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "modified" msgid "modified"
msgstr "Gewijzigd" msgstr "Gewijzigd"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "when the object was last modified" msgid "when the object was last modified"
msgstr "Wanneer het object voor het laatst bewerkt is" msgstr "Wanneer het object voor het laatst bewerkt is"
#: core/admin.py:41 core/admin.py:56 #: core/admin.py:41
msgid "general"
msgstr "Algemeen"
#: core/admin.py:42
msgid "I18N"
msgstr "Internationalisering"
#: core/admin.py:43
msgid "metadata"
msgstr "Metagegevens"
#: core/admin.py:44
msgid "timestamps"
msgstr "Tijdstempels"
#: core/admin.py:45
msgid "relations"
msgstr "Relaties"
#: core/admin.py:69 core/admin.py:70
msgid "translations"
msgstr "Vertalingen"
#: core/admin.py:98 core/admin.py:113
#, python-format #, python-format
msgid "activate selected %(verbose_name_plural)s" msgid "activate selected %(verbose_name_plural)s"
msgstr "Activeer geselecteerde %(verbose_name_plural)s" msgstr "Activeer geselecteerde %(verbose_name_plural)s"
#: core/admin.py:46 core/admin.py:61 #: core/admin.py:103 core/admin.py:118
#, python-format #, python-format
msgid "deactivate selected %(verbose_name_plural)s" msgid "deactivate selected %(verbose_name_plural)s"
msgstr "Deactiveer geselecteerde %(verbose_name_plural)s" msgstr "Deactiveer geselecteerde %(verbose_name_plural)s"
#: core/admin.py:70 core/graphene/object_types.py:411 #: core/admin.py:127 core/graphene/object_types.py:411
#: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517 #: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517
msgid "attribute value" msgid "attribute value"
msgstr "Attribuut Waarde" msgstr "Attribuut Waarde"
#: core/admin.py:71 core/graphene/object_types.py:48 core/models.py:518 #: core/admin.py:128 core/graphene/object_types.py:48 core/models.py:518
msgid "attribute values" msgid "attribute values"
msgstr "Attribuutwaarden" msgstr "Attribuutwaarden"
#: core/admin.py:148 #: core/admin.py:235
msgid "name" msgid "name"
msgstr "Naam" msgstr "Naam"
#: core/admin.py:171 #: core/admin.py:258
msgid "image" msgid "image"
msgstr "Afbeelding" msgstr "Afbeelding"
#: core/admin.py:172 core/graphene/object_types.py:364 #: core/admin.py:259 core/graphene/object_types.py:364
msgid "images" msgid "images"
msgstr "Afbeeldingen" msgstr "Afbeeldingen"
#: core/admin.py:179 core/models.py:648 #: core/admin.py:267 core/models.py:648
msgid "stock" msgid "stock"
msgstr "Voorraad" msgstr "Voorraad"
#: core/admin.py:180 core/graphene/object_types.py:465 #: core/admin.py:268 core/graphene/object_types.py:465
msgid "stocks" msgid "stocks"
msgstr "Aandelen" msgstr "Aandelen"
#: core/admin.py:220 core/graphene/object_types.py:368 #: core/admin.py:309 core/graphene/object_types.py:368
#: core/templates/digital_order_created_email.html:111 #: core/templates/digital_order_created_email.html:111
#: core/templates/digital_order_delivered_email.html:110 #: core/templates/digital_order_delivered_email.html:110
#: core/templates/shipped_order_created_email.html:109 #: core/templates/shipped_order_created_email.html:109
@ -96,31 +120,23 @@ msgstr "Aandelen"
msgid "price" msgid "price"
msgstr "Prijs" msgstr "Prijs"
#: core/admin.py:225 #: core/admin.py:314
msgid "rating" msgid "rating"
msgstr "Productbeoordeling" msgstr "Productbeoordeling"
#: core/admin.py:229 #: core/admin.py:390 core/models.py:1382
msgid "basic info"
msgstr "Basisinformatie"
#: core/admin.py:245
msgid "important dates"
msgstr "Belangrijke data"
#: core/admin.py:289 core/models.py:1382
msgid "order product" msgid "order product"
msgstr "Product bestellen" msgstr "Product bestellen"
#: core/admin.py:290 core/graphene/object_types.py:290 core/models.py:1383 #: core/admin.py:391 core/graphene/object_types.py:290 core/models.py:1383
msgid "order products" msgid "order products"
msgstr "Producten bestellen" msgstr "Producten bestellen"
#: core/admin.py:317 #: core/admin.py:419
msgid "is business" msgid "is business"
msgstr "Is zakelijk" msgstr "Is zakelijk"
#: core/admin.py:448 #: core/admin.py:552
msgid "config" msgid "config"
msgstr "Config" msgstr "Config"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 1\n" "Project-Id-Version: 1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-06-21 22:42+0100\n" "POT-Creation-Date: 2025-06-22 13:52+0100\n"
"PO-Revision-Date: 2025-01-30 03:27+0000\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n"
"Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n" "Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n"
"Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n" "Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n"
@ -13,21 +13,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: core/abstract.py:11 #: core/abstract.py:12
msgid "unique id" msgid "unique id"
msgstr "Unikalny identyfikator" msgstr "Unikalny identyfikator"
#: core/abstract.py:12 #: core/abstract.py:13
msgid "unique id is used to surely identify any database object" msgid "unique id is used to surely identify any database object"
msgstr "" msgstr ""
"Unikalny identyfikator służy do jednoznacznej identyfikacji dowolnego " "Unikalny identyfikator służy do jednoznacznej identyfikacji dowolnego "
"obiektu bazy danych" "obiektu bazy danych"
#: core/abstract.py:19 #: core/abstract.py:21
msgid "is active" msgid "is active"
msgstr "Jest aktywny" msgstr "Jest aktywny"
#: core/abstract.py:20 #: core/abstract.py:23
msgid "" msgid ""
"if set to false, this object can't be seen by users without needed " "if set to false, this object can't be seen by users without needed "
"permission" "permission"
@ -35,62 +35,86 @@ msgstr ""
"Jeśli ustawione na false, obiekt ten nie może być widoczny dla użytkowników " "Jeśli ustawione na false, obiekt ten nie może być widoczny dla użytkowników "
"bez wymaganych uprawnień." "bez wymaganych uprawnień."
#: core/abstract.py:22 core/choices.py:18 #: core/abstract.py:28 core/choices.py:18
msgid "created" msgid "created"
msgstr "Utworzony" msgstr "Utworzony"
#: core/abstract.py:22 #: core/abstract.py:28
msgid "when the object first appeared on the database" msgid "when the object first appeared on the database"
msgstr "Kiedy obiekt po raz pierwszy pojawił się w bazie danych" msgstr "Kiedy obiekt po raz pierwszy pojawił się w bazie danych"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "modified" msgid "modified"
msgstr "Zmodyfikowany" msgstr "Zmodyfikowany"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "when the object was last modified" msgid "when the object was last modified"
msgstr "Kiedy obiekt był ostatnio edytowany" msgstr "Kiedy obiekt był ostatnio edytowany"
#: core/admin.py:41 core/admin.py:56 #: core/admin.py:41
msgid "general"
msgstr "Ogólne"
#: core/admin.py:42
msgid "I18N"
msgstr "Internacjonalizacja"
#: core/admin.py:43
msgid "metadata"
msgstr "Metadane"
#: core/admin.py:44
msgid "timestamps"
msgstr "Znaczniki czasu"
#: core/admin.py:45
msgid "relations"
msgstr "Relacje"
#: core/admin.py:69 core/admin.py:70
msgid "translations"
msgstr "Tłumaczenia"
#: core/admin.py:98 core/admin.py:113
#, python-format #, python-format
msgid "activate selected %(verbose_name_plural)s" msgid "activate selected %(verbose_name_plural)s"
msgstr "Aktywuj wybrane %(verbose_name_plural)s" msgstr "Aktywuj wybrane %(verbose_name_plural)s"
#: core/admin.py:46 core/admin.py:61 #: core/admin.py:103 core/admin.py:118
#, python-format #, python-format
msgid "deactivate selected %(verbose_name_plural)s" msgid "deactivate selected %(verbose_name_plural)s"
msgstr "Dezaktywacja wybranych %(verbose_name_plural)s" msgstr "Dezaktywacja wybranych %(verbose_name_plural)s"
#: core/admin.py:70 core/graphene/object_types.py:411 #: core/admin.py:127 core/graphene/object_types.py:411
#: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517 #: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517
msgid "attribute value" msgid "attribute value"
msgstr "Wartość atrybutu" msgstr "Wartość atrybutu"
#: core/admin.py:71 core/graphene/object_types.py:48 core/models.py:518 #: core/admin.py:128 core/graphene/object_types.py:48 core/models.py:518
msgid "attribute values" msgid "attribute values"
msgstr "Wartości atrybutów" msgstr "Wartości atrybutów"
#: core/admin.py:148 #: core/admin.py:235
msgid "name" msgid "name"
msgstr "Nazwa" msgstr "Nazwa"
#: core/admin.py:171 #: core/admin.py:258
msgid "image" msgid "image"
msgstr "Obraz" msgstr "Obraz"
#: core/admin.py:172 core/graphene/object_types.py:364 #: core/admin.py:259 core/graphene/object_types.py:364
msgid "images" msgid "images"
msgstr "Obrazy" msgstr "Obrazy"
#: core/admin.py:179 core/models.py:648 #: core/admin.py:267 core/models.py:648
msgid "stock" msgid "stock"
msgstr "Stan magazynowy" msgstr "Stan magazynowy"
#: core/admin.py:180 core/graphene/object_types.py:465 #: core/admin.py:268 core/graphene/object_types.py:465
msgid "stocks" msgid "stocks"
msgstr "Akcje" msgstr "Akcje"
#: core/admin.py:220 core/graphene/object_types.py:368 #: core/admin.py:309 core/graphene/object_types.py:368
#: core/templates/digital_order_created_email.html:111 #: core/templates/digital_order_created_email.html:111
#: core/templates/digital_order_delivered_email.html:110 #: core/templates/digital_order_delivered_email.html:110
#: core/templates/shipped_order_created_email.html:109 #: core/templates/shipped_order_created_email.html:109
@ -98,31 +122,23 @@ msgstr "Akcje"
msgid "price" msgid "price"
msgstr "Cena" msgstr "Cena"
#: core/admin.py:225 #: core/admin.py:314
msgid "rating" msgid "rating"
msgstr "Ocena" msgstr "Ocena"
#: core/admin.py:229 #: core/admin.py:390 core/models.py:1382
msgid "basic info"
msgstr "Podstawowe informacje"
#: core/admin.py:245
msgid "important dates"
msgstr "Ważne daty"
#: core/admin.py:289 core/models.py:1382
msgid "order product" msgid "order product"
msgstr "Zamów produkt" msgstr "Zamów produkt"
#: core/admin.py:290 core/graphene/object_types.py:290 core/models.py:1383 #: core/admin.py:391 core/graphene/object_types.py:290 core/models.py:1383
msgid "order products" msgid "order products"
msgstr "Zamawianie produktów" msgstr "Zamawianie produktów"
#: core/admin.py:317 #: core/admin.py:419
msgid "is business" msgid "is business"
msgstr "Czy biznes" msgstr "Czy biznes"
#: core/admin.py:448 #: core/admin.py:552
msgid "config" msgid "config"
msgstr "Konfiguracja" msgstr "Konfiguracja"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 1\n" "Project-Id-Version: 1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-06-21 22:42+0100\n" "POT-Creation-Date: 2025-06-22 13:52+0100\n"
"PO-Revision-Date: 2025-01-30 03:27+0000\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n"
"Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n" "Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n"
"Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n" "Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n"
@ -13,21 +13,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: core/abstract.py:11 #: core/abstract.py:12
msgid "unique id" msgid "unique id"
msgstr "ID exclusivo" msgstr "ID exclusivo"
#: core/abstract.py:12 #: core/abstract.py:13
msgid "unique id is used to surely identify any database object" msgid "unique id is used to surely identify any database object"
msgstr "" msgstr ""
"O ID exclusivo é usado para identificar com segurança qualquer objeto do " "O ID exclusivo é usado para identificar com segurança qualquer objeto do "
"banco de dados" "banco de dados"
#: core/abstract.py:19 #: core/abstract.py:21
msgid "is active" msgid "is active"
msgstr "Está ativo" msgstr "Está ativo"
#: core/abstract.py:20 #: core/abstract.py:23
msgid "" msgid ""
"if set to false, this object can't be seen by users without needed " "if set to false, this object can't be seen by users without needed "
"permission" "permission"
@ -35,62 +35,86 @@ msgstr ""
"Se definido como false, esse objeto não poderá ser visto por usuários sem a " "Se definido como false, esse objeto não poderá ser visto por usuários sem a "
"permissão necessária" "permissão necessária"
#: core/abstract.py:22 core/choices.py:18 #: core/abstract.py:28 core/choices.py:18
msgid "created" msgid "created"
msgstr "Criado" msgstr "Criado"
#: core/abstract.py:22 #: core/abstract.py:28
msgid "when the object first appeared on the database" msgid "when the object first appeared on the database"
msgstr "Quando o objeto apareceu pela primeira vez no banco de dados" msgstr "Quando o objeto apareceu pela primeira vez no banco de dados"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "modified" msgid "modified"
msgstr "Modificado" msgstr "Modificado"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "when the object was last modified" msgid "when the object was last modified"
msgstr "Quando o objeto foi editado pela última vez" msgstr "Quando o objeto foi editado pela última vez"
#: core/admin.py:41 core/admin.py:56 #: core/admin.py:41
msgid "general"
msgstr "Geral"
#: core/admin.py:42
msgid "I18N"
msgstr "Internacionalização"
#: core/admin.py:43
msgid "metadata"
msgstr "Metadados"
#: core/admin.py:44
msgid "timestamps"
msgstr "Carimbos de data/hora"
#: core/admin.py:45
msgid "relations"
msgstr "Relações"
#: core/admin.py:69 core/admin.py:70
msgid "translations"
msgstr "Traduções"
#: core/admin.py:98 core/admin.py:113
#, python-format #, python-format
msgid "activate selected %(verbose_name_plural)s" msgid "activate selected %(verbose_name_plural)s"
msgstr "Ativar %(verbose_name_plural)s selecionados" msgstr "Ativar %(verbose_name_plural)s selecionados"
#: core/admin.py:46 core/admin.py:61 #: core/admin.py:103 core/admin.py:118
#, python-format #, python-format
msgid "deactivate selected %(verbose_name_plural)s" msgid "deactivate selected %(verbose_name_plural)s"
msgstr "Desativar %(verbose_name_plural)s selecionados" msgstr "Desativar %(verbose_name_plural)s selecionados"
#: core/admin.py:70 core/graphene/object_types.py:411 #: core/admin.py:127 core/graphene/object_types.py:411
#: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517 #: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517
msgid "attribute value" msgid "attribute value"
msgstr "Valor do atributo" msgstr "Valor do atributo"
#: core/admin.py:71 core/graphene/object_types.py:48 core/models.py:518 #: core/admin.py:128 core/graphene/object_types.py:48 core/models.py:518
msgid "attribute values" msgid "attribute values"
msgstr "Valores de atributos" msgstr "Valores de atributos"
#: core/admin.py:148 #: core/admin.py:235
msgid "name" msgid "name"
msgstr "Nome" msgstr "Nome"
#: core/admin.py:171 #: core/admin.py:258
msgid "image" msgid "image"
msgstr "Imagem" msgstr "Imagem"
#: core/admin.py:172 core/graphene/object_types.py:364 #: core/admin.py:259 core/graphene/object_types.py:364
msgid "images" msgid "images"
msgstr "Imagens" msgstr "Imagens"
#: core/admin.py:179 core/models.py:648 #: core/admin.py:267 core/models.py:648
msgid "stock" msgid "stock"
msgstr "Estoque" msgstr "Estoque"
#: core/admin.py:180 core/graphene/object_types.py:465 #: core/admin.py:268 core/graphene/object_types.py:465
msgid "stocks" msgid "stocks"
msgstr "Ações" msgstr "Ações"
#: core/admin.py:220 core/graphene/object_types.py:368 #: core/admin.py:309 core/graphene/object_types.py:368
#: core/templates/digital_order_created_email.html:111 #: core/templates/digital_order_created_email.html:111
#: core/templates/digital_order_delivered_email.html:110 #: core/templates/digital_order_delivered_email.html:110
#: core/templates/shipped_order_created_email.html:109 #: core/templates/shipped_order_created_email.html:109
@ -98,31 +122,23 @@ msgstr "Ações"
msgid "price" msgid "price"
msgstr "Preço" msgstr "Preço"
#: core/admin.py:225 #: core/admin.py:314
msgid "rating" msgid "rating"
msgstr "Avaliação do produto" msgstr "Avaliação do produto"
#: core/admin.py:229 #: core/admin.py:390 core/models.py:1382
msgid "basic info"
msgstr "Informações básicas"
#: core/admin.py:245
msgid "important dates"
msgstr "Datas importantes"
#: core/admin.py:289 core/models.py:1382
msgid "order product" msgid "order product"
msgstr "Pedido de produto" msgstr "Pedido de produto"
#: core/admin.py:290 core/graphene/object_types.py:290 core/models.py:1383 #: core/admin.py:391 core/graphene/object_types.py:290 core/models.py:1383
msgid "order products" msgid "order products"
msgstr "Solicitar produtos" msgstr "Solicitar produtos"
#: core/admin.py:317 #: core/admin.py:419
msgid "is business" msgid "is business"
msgstr "É um negócio" msgstr "É um negócio"
#: core/admin.py:448 #: core/admin.py:552
msgid "config" msgid "config"
msgstr "Configuração" msgstr "Configuração"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 1\n" "Project-Id-Version: 1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-06-21 22:42+0100\n" "POT-Creation-Date: 2025-06-22 13:52+0100\n"
"PO-Revision-Date: 2025-01-30 03:27+0000\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n"
"Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n" "Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n"
"Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n" "Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n"
@ -13,21 +13,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: core/abstract.py:11 #: core/abstract.py:12
msgid "unique id" msgid "unique id"
msgstr "ID unic" msgstr "ID unic"
#: core/abstract.py:12 #: core/abstract.py:13
msgid "unique id is used to surely identify any database object" msgid "unique id is used to surely identify any database object"
msgstr "" msgstr ""
"ID-ul unic este utilizat pentru a identifica cu siguranță orice obiect din " "ID-ul unic este utilizat pentru a identifica cu siguranță orice obiect din "
"baza de date" "baza de date"
#: core/abstract.py:19 #: core/abstract.py:21
msgid "is active" msgid "is active"
msgstr "Este activ" msgstr "Este activ"
#: core/abstract.py:20 #: core/abstract.py:23
msgid "" msgid ""
"if set to false, this object can't be seen by users without needed " "if set to false, this object can't be seen by users without needed "
"permission" "permission"
@ -35,62 +35,86 @@ msgstr ""
"Dacă este setat la false, acest obiect nu poate fi văzut de utilizatori fără" "Dacă este setat la false, acest obiect nu poate fi văzut de utilizatori fără"
" permisiunea necesară" " permisiunea necesară"
#: core/abstract.py:22 core/choices.py:18 #: core/abstract.py:28 core/choices.py:18
msgid "created" msgid "created"
msgstr "Creat" msgstr "Creat"
#: core/abstract.py:22 #: core/abstract.py:28
msgid "when the object first appeared on the database" msgid "when the object first appeared on the database"
msgstr "Când a apărut pentru prima dată obiectul în baza de date" msgstr "Când a apărut pentru prima dată obiectul în baza de date"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "modified" msgid "modified"
msgstr "Modificat" msgstr "Modificat"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "when the object was last modified" msgid "when the object was last modified"
msgstr "Când a fost editat obiectul ultima dată" msgstr "Când a fost editat obiectul ultima dată"
#: core/admin.py:41 core/admin.py:56 #: core/admin.py:41
msgid "general"
msgstr "Generalități"
#: core/admin.py:42
msgid "I18N"
msgstr "Internaționalizare"
#: core/admin.py:43
msgid "metadata"
msgstr "Metadate"
#: core/admin.py:44
msgid "timestamps"
msgstr "Timestamps"
#: core/admin.py:45
msgid "relations"
msgstr "Relații"
#: core/admin.py:69 core/admin.py:70
msgid "translations"
msgstr "Traduceri"
#: core/admin.py:98 core/admin.py:113
#, python-format #, python-format
msgid "activate selected %(verbose_name_plural)s" msgid "activate selected %(verbose_name_plural)s"
msgstr "Activați %(verbose_name_plural)s selectate" msgstr "Activați %(verbose_name_plural)s selectate"
#: core/admin.py:46 core/admin.py:61 #: core/admin.py:103 core/admin.py:118
#, python-format #, python-format
msgid "deactivate selected %(verbose_name_plural)s" msgid "deactivate selected %(verbose_name_plural)s"
msgstr "Dezactivați %(verbose_name_plural)s selectate" msgstr "Dezactivați %(verbose_name_plural)s selectate"
#: core/admin.py:70 core/graphene/object_types.py:411 #: core/admin.py:127 core/graphene/object_types.py:411
#: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517 #: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517
msgid "attribute value" msgid "attribute value"
msgstr "Atribut Valoare" msgstr "Atribut Valoare"
#: core/admin.py:71 core/graphene/object_types.py:48 core/models.py:518 #: core/admin.py:128 core/graphene/object_types.py:48 core/models.py:518
msgid "attribute values" msgid "attribute values"
msgstr "Valori ale atributului" msgstr "Valori ale atributului"
#: core/admin.py:148 #: core/admin.py:235
msgid "name" msgid "name"
msgstr "Nume și prenume" msgstr "Nume și prenume"
#: core/admin.py:171 #: core/admin.py:258
msgid "image" msgid "image"
msgstr "Imagine" msgstr "Imagine"
#: core/admin.py:172 core/graphene/object_types.py:364 #: core/admin.py:259 core/graphene/object_types.py:364
msgid "images" msgid "images"
msgstr "Imagini" msgstr "Imagini"
#: core/admin.py:179 core/models.py:648 #: core/admin.py:267 core/models.py:648
msgid "stock" msgid "stock"
msgstr "Stoc" msgstr "Stoc"
#: core/admin.py:180 core/graphene/object_types.py:465 #: core/admin.py:268 core/graphene/object_types.py:465
msgid "stocks" msgid "stocks"
msgstr "Stocuri" msgstr "Stocuri"
#: core/admin.py:220 core/graphene/object_types.py:368 #: core/admin.py:309 core/graphene/object_types.py:368
#: core/templates/digital_order_created_email.html:111 #: core/templates/digital_order_created_email.html:111
#: core/templates/digital_order_delivered_email.html:110 #: core/templates/digital_order_delivered_email.html:110
#: core/templates/shipped_order_created_email.html:109 #: core/templates/shipped_order_created_email.html:109
@ -98,31 +122,23 @@ msgstr "Stocuri"
msgid "price" msgid "price"
msgstr "Preț" msgstr "Preț"
#: core/admin.py:225 #: core/admin.py:314
msgid "rating" msgid "rating"
msgstr "Evaluarea produsului" msgstr "Evaluarea produsului"
#: core/admin.py:229 #: core/admin.py:390 core/models.py:1382
msgid "basic info"
msgstr "Informații de bază"
#: core/admin.py:245
msgid "important dates"
msgstr "Date importante"
#: core/admin.py:289 core/models.py:1382
msgid "order product" msgid "order product"
msgstr "Comanda Produs" msgstr "Comanda Produs"
#: core/admin.py:290 core/graphene/object_types.py:290 core/models.py:1383 #: core/admin.py:391 core/graphene/object_types.py:290 core/models.py:1383
msgid "order products" msgid "order products"
msgstr "Comandați produse" msgstr "Comandați produse"
#: core/admin.py:317 #: core/admin.py:419
msgid "is business" msgid "is business"
msgstr "Este o afacere" msgstr "Este o afacere"
#: core/admin.py:448 #: core/admin.py:552
msgid "config" msgid "config"
msgstr "Configurare" msgstr "Configurare"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 1\n" "Project-Id-Version: 1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-06-21 22:42+0100\n" "POT-Creation-Date: 2025-06-22 13:52+0100\n"
"PO-Revision-Date: 2025-01-30 03:27+0000\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n"
"Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n" "Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n"
"Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n" "Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n"
@ -13,21 +13,21 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: core/abstract.py:11 #: core/abstract.py:12
msgid "unique id" msgid "unique id"
msgstr "Уникальный идентификатор" msgstr "Уникальный идентификатор"
#: core/abstract.py:12 #: core/abstract.py:13
msgid "unique id is used to surely identify any database object" msgid "unique id is used to surely identify any database object"
msgstr "" msgstr ""
"Уникальный идентификатор используется для точной идентификации любого " "Уникальный идентификатор используется для точной идентификации любого "
"объекта базы данных" "объекта базы данных"
#: core/abstract.py:19 #: core/abstract.py:21
msgid "is active" msgid "is active"
msgstr "Активен" msgstr "Активен"
#: core/abstract.py:20 #: core/abstract.py:23
msgid "" msgid ""
"if set to false, this object can't be seen by users without needed " "if set to false, this object can't be seen by users without needed "
"permission" "permission"
@ -35,62 +35,86 @@ msgstr ""
"Если установлено значение false, этот объект не может быть виден " "Если установлено значение false, этот объект не может быть виден "
"пользователям без необходимого разрешения" "пользователям без необходимого разрешения"
#: core/abstract.py:22 core/choices.py:18 #: core/abstract.py:28 core/choices.py:18
msgid "created" msgid "created"
msgstr "Создано" msgstr "Создано"
#: core/abstract.py:22 #: core/abstract.py:28
msgid "when the object first appeared on the database" msgid "when the object first appeared on the database"
msgstr "Когда объект впервые появился в базе данных" msgstr "Когда объект впервые появился в базе данных"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "modified" msgid "modified"
msgstr "Модифицированный" msgstr "Модифицированный"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "when the object was last modified" msgid "when the object was last modified"
msgstr "Когда объект был отредактирован в последний раз" msgstr "Когда объект был отредактирован в последний раз"
#: core/admin.py:41 core/admin.py:56 #: core/admin.py:41
msgid "general"
msgstr "Общие сведения"
#: core/admin.py:42
msgid "I18N"
msgstr "Интернационализация"
#: core/admin.py:43
msgid "metadata"
msgstr "Метаданные"
#: core/admin.py:44
msgid "timestamps"
msgstr "Временные метки"
#: core/admin.py:45
msgid "relations"
msgstr "Отношения"
#: core/admin.py:69 core/admin.py:70
msgid "translations"
msgstr "Переводы"
#: core/admin.py:98 core/admin.py:113
#, python-format #, python-format
msgid "activate selected %(verbose_name_plural)s" msgid "activate selected %(verbose_name_plural)s"
msgstr "Активировать выбранные %(verbose_name_plural)s" msgstr "Активировать выбранные %(verbose_name_plural)s"
#: core/admin.py:46 core/admin.py:61 #: core/admin.py:103 core/admin.py:118
#, python-format #, python-format
msgid "deactivate selected %(verbose_name_plural)s" msgid "deactivate selected %(verbose_name_plural)s"
msgstr "Деактивировать выбранные %(verbose_name_plural)s" msgstr "Деактивировать выбранные %(verbose_name_plural)s"
#: core/admin.py:70 core/graphene/object_types.py:411 #: core/admin.py:127 core/graphene/object_types.py:411
#: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517 #: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517
msgid "attribute value" msgid "attribute value"
msgstr "Значение атрибута" msgstr "Значение атрибута"
#: core/admin.py:71 core/graphene/object_types.py:48 core/models.py:518 #: core/admin.py:128 core/graphene/object_types.py:48 core/models.py:518
msgid "attribute values" msgid "attribute values"
msgstr "Значения атрибутов" msgstr "Значения атрибутов"
#: core/admin.py:148 #: core/admin.py:235
msgid "name" msgid "name"
msgstr "Имя" msgstr "Имя"
#: core/admin.py:171 #: core/admin.py:258
msgid "image" msgid "image"
msgstr "Изображение" msgstr "Изображение"
#: core/admin.py:172 core/graphene/object_types.py:364 #: core/admin.py:259 core/graphene/object_types.py:364
msgid "images" msgid "images"
msgstr "Изображения" msgstr "Изображения"
#: core/admin.py:179 core/models.py:648 #: core/admin.py:267 core/models.py:648
msgid "stock" msgid "stock"
msgstr "Наличие" msgstr "Наличие"
#: core/admin.py:180 core/graphene/object_types.py:465 #: core/admin.py:268 core/graphene/object_types.py:465
msgid "stocks" msgid "stocks"
msgstr "Наличия" msgstr "Наличия"
#: core/admin.py:220 core/graphene/object_types.py:368 #: core/admin.py:309 core/graphene/object_types.py:368
#: core/templates/digital_order_created_email.html:111 #: core/templates/digital_order_created_email.html:111
#: core/templates/digital_order_delivered_email.html:110 #: core/templates/digital_order_delivered_email.html:110
#: core/templates/shipped_order_created_email.html:109 #: core/templates/shipped_order_created_email.html:109
@ -98,31 +122,23 @@ msgstr "Наличия"
msgid "price" msgid "price"
msgstr "Цена" msgstr "Цена"
#: core/admin.py:225 #: core/admin.py:314
msgid "rating" msgid "rating"
msgstr "Рейтинг продукции" msgstr "Рейтинг продукции"
#: core/admin.py:229 #: core/admin.py:390 core/models.py:1382
msgid "basic info"
msgstr "Основная информация"
#: core/admin.py:245
msgid "important dates"
msgstr "Важные даты"
#: core/admin.py:289 core/models.py:1382
msgid "order product" msgid "order product"
msgstr "Заказать товар" msgstr "Заказать товар"
#: core/admin.py:290 core/graphene/object_types.py:290 core/models.py:1383 #: core/admin.py:391 core/graphene/object_types.py:290 core/models.py:1383
msgid "order products" msgid "order products"
msgstr "Заказать товары" msgstr "Заказать товары"
#: core/admin.py:317 #: core/admin.py:419
msgid "is business" msgid "is business"
msgstr "Бизнес" msgstr "Бизнес"
#: core/admin.py:448 #: core/admin.py:552
msgid "config" msgid "config"
msgstr "Конфигурация" msgstr "Конфигурация"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 1\n" "Project-Id-Version: 1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-06-21 22:42+0100\n" "POT-Creation-Date: 2025-06-22 13:52+0100\n"
"PO-Revision-Date: 2025-01-30 03:27+0000\n" "PO-Revision-Date: 2025-01-30 03:27+0000\n"
"Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n" "Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n"
"Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n" "Language-Team: BRITISH ENGLISH <CONTACT@FUREUNOIR.COM>\n"
@ -13,80 +13,104 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: core/abstract.py:11 #: core/abstract.py:12
msgid "unique id" msgid "unique id"
msgstr "唯一 ID" msgstr "唯一 ID"
#: core/abstract.py:12 #: core/abstract.py:13
msgid "unique id is used to surely identify any database object" msgid "unique id is used to surely identify any database object"
msgstr "唯一 ID 用于确定识别任何数据库对象" msgstr "唯一 ID 用于确定识别任何数据库对象"
#: core/abstract.py:19 #: core/abstract.py:21
msgid "is active" msgid "is active"
msgstr "处于活动状态" msgstr "处于活动状态"
#: core/abstract.py:20 #: core/abstract.py:23
msgid "" msgid ""
"if set to false, this object can't be seen by users without needed " "if set to false, this object can't be seen by users without needed "
"permission" "permission"
msgstr "如果设置为 false则没有必要权限的用户无法查看此对象" msgstr "如果设置为 false则没有必要权限的用户无法查看此对象"
#: core/abstract.py:22 core/choices.py:18 #: core/abstract.py:28 core/choices.py:18
msgid "created" msgid "created"
msgstr "创建" msgstr "创建"
#: core/abstract.py:22 #: core/abstract.py:28
msgid "when the object first appeared on the database" msgid "when the object first appeared on the database"
msgstr "对象首次出现在数据库中的时间" msgstr "对象首次出现在数据库中的时间"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "modified" msgid "modified"
msgstr "改装" msgstr "改装"
#: core/abstract.py:23 #: core/abstract.py:32
msgid "when the object was last modified" msgid "when the object was last modified"
msgstr "对象最后一次编辑的时间" msgstr "对象最后一次编辑的时间"
#: core/admin.py:41 core/admin.py:56 #: core/admin.py:41
msgid "general"
msgstr "一般情况"
#: core/admin.py:42
msgid "I18N"
msgstr "国际化"
#: core/admin.py:43
msgid "metadata"
msgstr "元数据"
#: core/admin.py:44
msgid "timestamps"
msgstr "时间戳"
#: core/admin.py:45
msgid "relations"
msgstr "关系"
#: core/admin.py:69 core/admin.py:70
msgid "translations"
msgstr "翻译"
#: core/admin.py:98 core/admin.py:113
#, python-format #, python-format
msgid "activate selected %(verbose_name_plural)s" msgid "activate selected %(verbose_name_plural)s"
msgstr "激活选定的 %(verbose_name_plural)s" msgstr "激活选定的 %(verbose_name_plural)s"
#: core/admin.py:46 core/admin.py:61 #: core/admin.py:103 core/admin.py:118
#, python-format #, python-format
msgid "deactivate selected %(verbose_name_plural)s" msgid "deactivate selected %(verbose_name_plural)s"
msgstr "停用选定的 %(verbose_name_plural)s" msgstr "停用选定的 %(verbose_name_plural)s"
#: core/admin.py:70 core/graphene/object_types.py:411 #: core/admin.py:127 core/graphene/object_types.py:411
#: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517 #: core/graphene/object_types.py:418 core/models.py:509 core/models.py:517
msgid "attribute value" msgid "attribute value"
msgstr "属性值" msgstr "属性值"
#: core/admin.py:71 core/graphene/object_types.py:48 core/models.py:518 #: core/admin.py:128 core/graphene/object_types.py:48 core/models.py:518
msgid "attribute values" msgid "attribute values"
msgstr "属性值" msgstr "属性值"
#: core/admin.py:148 #: core/admin.py:235
msgid "name" msgid "name"
msgstr "名称" msgstr "名称"
#: core/admin.py:171 #: core/admin.py:258
msgid "image" msgid "image"
msgstr "图片" msgstr "图片"
#: core/admin.py:172 core/graphene/object_types.py:364 #: core/admin.py:259 core/graphene/object_types.py:364
msgid "images" msgid "images"
msgstr "图片" msgstr "图片"
#: core/admin.py:179 core/models.py:648 #: core/admin.py:267 core/models.py:648
msgid "stock" msgid "stock"
msgstr "库存" msgstr "库存"
#: core/admin.py:180 core/graphene/object_types.py:465 #: core/admin.py:268 core/graphene/object_types.py:465
msgid "stocks" msgid "stocks"
msgstr "股票" msgstr "股票"
#: core/admin.py:220 core/graphene/object_types.py:368 #: core/admin.py:309 core/graphene/object_types.py:368
#: core/templates/digital_order_created_email.html:111 #: core/templates/digital_order_created_email.html:111
#: core/templates/digital_order_delivered_email.html:110 #: core/templates/digital_order_delivered_email.html:110
#: core/templates/shipped_order_created_email.html:109 #: core/templates/shipped_order_created_email.html:109
@ -94,31 +118,23 @@ msgstr "股票"
msgid "price" msgid "price"
msgstr "价格" msgstr "价格"
#: core/admin.py:225 #: core/admin.py:314
msgid "rating" msgid "rating"
msgstr "产品评级" msgstr "产品评级"
#: core/admin.py:229 #: core/admin.py:390 core/models.py:1382
msgid "basic info"
msgstr "基本信息"
#: core/admin.py:245
msgid "important dates"
msgstr "重要日期"
#: core/admin.py:289 core/models.py:1382
msgid "order product" msgid "order product"
msgstr "订购产品" msgstr "订购产品"
#: core/admin.py:290 core/graphene/object_types.py:290 core/models.py:1383 #: core/admin.py:391 core/graphene/object_types.py:290 core/models.py:1383
msgid "order products" msgid "order products"
msgstr "订购产品" msgstr "订购产品"
#: core/admin.py:317 #: core/admin.py:419
msgid "is business" msgid "is business"
msgstr "Is Business" msgstr "Is Business"
#: core/admin.py:448 #: core/admin.py:552
msgid "config" msgid "config"
msgstr "配置" msgstr "配置"