schon/evibes/locale/en_US/LC_MESSAGES/django.po

282 lines
10 KiB
Text
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#
msgid ""
msgstr ""
"Project-Id-Version: EVIBES 2025.4\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-11-08 03:29+0300\n"
"PO-Revision-Date: 2025-06-16 08:59+0100\n"
"Last-Translator: EGOR GORBUNOV <CONTACT@FUREUNOIR.COM>\n"
"Language-Team: LANGUAGE <CONTACT@FUREUNOIR.COM>\n"
"Language: en-us\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: evibes/settings/constance.py:22
msgid "Name of the project"
msgstr "Name of the project"
#: evibes/settings/constance.py:23
msgid "Frontend domain name"
msgstr "Frontend domain name"
#: evibes/settings/constance.py:24
msgid "Base domain name"
msgstr "Base domain name"
#: evibes/settings/constance.py:25
msgid "Name of the company"
msgstr "Name of the company"
#: evibes/settings/constance.py:26
msgid "Address of the company"
msgstr "Address of the company"
#: evibes/settings/constance.py:27
msgid "Phone number of the company"
msgstr "Phone number of the company"
#: evibes/settings/constance.py:28
msgid "!!!DO NOT CHANGE"
msgstr "!!!DO NOT CHANGE"
#: evibes/settings/constance.py:29
msgid "SMTP host"
msgstr "SMTP host"
#: evibes/settings/constance.py:30
msgid "SMTP port"
msgstr "SMTP port"
#: evibes/settings/constance.py:31
msgid "Use TLS (0=No, 1=Yes)"
msgstr "Use TLS"
#: evibes/settings/constance.py:32
msgid "Use SSL (0=No, 1=Yes)"
msgstr "Use SSL"
#: evibes/settings/constance.py:33
msgid "SMTP username"
msgstr "SMTP username"
#: evibes/settings/constance.py:34
msgid "SMTP password"
msgstr "SMTP password"
#: evibes/settings/constance.py:35
msgid "Mail from option"
msgstr "The address of the emails sender"
#: evibes/settings/constance.py:36
msgid "Payment gateway URL"
msgstr "Payment gateway URL"
#: evibes/settings/constance.py:37
msgid "Payment gateway token"
msgstr "Payment gateway token"
#: evibes/settings/constance.py:38
msgid "Payment gateway minimum amount"
msgstr "Payment gateway minimum amount"
#: evibes/settings/constance.py:39
msgid "Payment gateway maximum amount"
msgstr "Payment gateway maximum amount"
#: evibes/settings/constance.py:40
msgid "Exchange rate API key"
msgstr "Exchange rate API key"
#: evibes/settings/constance.py:41
msgid "OpenStreetMap Nominatim API URL"
msgstr "OpenStreetMap Nominatim API URL"
#: evibes/settings/constance.py:42
msgid "OpenAI API Key"
msgstr "OpenAI API Key"
#: evibes/settings/constance.py:43
msgid "Abstract API Key"
msgstr "Abstract API Key"
#: evibes/settings/constance.py:44
msgid "HTTP Proxy"
msgstr "HTTP Proxy"
#: evibes/settings/constance.py:45
msgid "Disable buy functionality"
msgstr "Disable buy functionality"
#: evibes/settings/constance.py:46
msgid "An entity for storing advertisiment data"
msgstr "An entity for storing advertisiment data"
#: evibes/settings/constance.py:47
msgid "An entity for storing analytics data"
msgstr "An entity for storing analytics data"
#: evibes/settings/constance.py:48
msgid "Save responses from vendors' APIs"
msgstr "Save responses from vendors' APIs"
#: evibes/settings/constance.py:49
msgid "Use Telegram-bot functionality"
msgstr "Use Telegram-bot functionality"
#: evibes/settings/constance.py:50
msgid "How many days we store messages from anonymous users"
msgstr "How many days we store messages from anonymous users"
#: evibes/settings/constance.py:51
msgid "How many days we store messages from authenticated users"
msgstr "How many days we store messages from authenticated users"
#: evibes/settings/constance.py:57
msgid "General Options"
msgstr "General Options"
#: evibes/settings/constance.py:65
msgid "Email Options"
msgstr "Email Options"
#: evibes/settings/constance.py:75
msgid "Payment Gateway Options"
msgstr "Payment Gateway Options"
#: evibes/settings/constance.py:82
msgid "Features Options"
msgstr "Features Options"
#: evibes/settings/constance.py:92
msgid "SEO Options"
msgstr "SEO Options"
#: evibes/settings/constance.py:96
msgid "Debugging Options"
msgstr "Debugging Options"
#: evibes/settings/drf.py:50
msgid ""
"\n"
"Welcome to the eVibes documentation.\n"
"\n"
"eVibes is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks. \n"
"\n"
"## Key Features\n"
"- **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories.\n"
"- **Order Management:** Process orders, track fulfillment, and handle customer requests efficiently.\n"
"- **Authentication & Authorization:** Comprehensive user authentication with JWT tokens and role-based permissions.\n"
"- **Payment Processing:** Integrate multiple payment gateways and manage transactions securely.\n"
"- **Blog & Content Management:** Create and manage blog posts and marketing content for your store.\n"
"- **B2B Operations:** Dedicated endpoints for business-to-business transactions and wholesale management.\n"
"- **Multi-language Support:** Serve customers worldwide with full internationalization (i18n) capabilities.\n"
"- **Custom Integrations:** Extensible API architecture for integrating with external platforms and services.\n"
"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, and customer behavior.\n"
"- **Real-Time Updates:** Get live data on inventory levels, order statuses, and pricing changes.\n"
"\n"
"## Available APIs\n"
"- **REST API:** Full RESTful interface (this documentation)\n"
"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for interactive queries\n"
"\n"
"## Authentication\n"
"- Authentication is handled via JWT tokens. Include the token in the `X-EVIBES-AUTH` header of your requests in the format `Bearer <your_token>`.\n"
"- Access token lifetime is {\n"
" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n"
"} {\"minutes\" if not DEBUG else \"hours\"}.\n"
"- Refresh token lifetime is {\n"
" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n"
"} hours.\n"
"- Refresh tokens are automatically rotated and invalidated after usage for enhanced security.\n"
"\n"
"## Internationalization (i18n)\n"
"- Set the `Accept-Language` header to specify your preferred language (e.g., `Accept-Language: en-US`).\n"
"- Available languages can be retrieved from the `/app/languages/` endpoint.\n"
"- All user-facing content supports multiple languages out of the box.\n"
"\n"
"## Response Formats\n"
"The API supports multiple response formats:\n"
"- **JSON** (default, camelCase formatted)\n"
"- **XML** (add `?format=xml` or set `Accept: application/xml`)\n"
"- **YAML** (add `?format=yaml` or set `Accept: application/x-yaml`)\n"
"\n"
"## Health & Monitoring\n"
"- Health checks: `/health/`\n"
"- Prometheus metrics (basic-auth protected): `/prometheus/`\n"
"\n"
"## Version\n"
"Current API version: {EVIBES_VERSION}\n"
msgstr ""
"\n"
"Welcome to the eVibes documentation.\n"
"\n"
"eVibes is a powerful e-commerce platform that allows you to launch and manage an online store of any kind in just a few clicks.\n"
"\n"
"## Key Features\n"
"- **Product Catalog:** Manage product details, pricing, inventory, and availability across multiple categories.\n"
"- **Order Management:** Process orders, track fulfillment, and handle customer requests efficiently.\n"
"- **Authentication & Authorization:** Comprehensive user authentication with JWT tokens and role-based permissions.\n"
"- **Payment Processing:** Integrate multiple payment gateways and manage transactions securely.\n"
"- **Blog & Content Management:** Create and manage blog posts and marketing content for your store.\n"
"- **B2B Operations:** Dedicated endpoints for business-to-business transactions and wholesale management.\n"
"- **Multi-language Support:** Serve customers worldwide with full internationalization (i18n) capabilities.\n"
"- **Custom Integrations:** Extensible API architecture for integrating with external platforms and services.\n"
"- **Analytics & Reporting:** Generate detailed reports on sales, inventory, and customer behavior.\n"
"- **Real-Time Updates:** Get live data on inventory levels, order statuses, and pricing changes.\n"
"\n"
"## Available APIs\n"
"- **REST API:** Full RESTful interface (this documentation)\n"
"- **GraphQL API:** Available at `/graphql/` with GraphiQL interface for interactive queries\n"
"\n"
"## Authentication\n"
"- Authentication is handled via JWT tokens. Include the token in the `X-EVIBES-AUTH` header of your requests in the format `Bearer <your_token>`.\n"
"- Access token lifetime is {\n"
" SIMPLE_JWT.get(\"ACCESS_TOKEN_LIFETIME\").total_seconds() // 60 if not DEBUG else 3600 # type: ignore [union-attr]\n"
"} {\"minutes\" if not DEBUG else \"hours\"}.\n"
"- Refresh token lifetime is {\n"
" SIMPLE_JWT.get(\"REFRESH_TOKEN_LIFETIME\").total_seconds() // 3600 # type: ignore [union-attr]\n"
"} hours.\n"
"- Refresh tokens are automatically rotated and invalidated after usage for enhanced security.\n"
"\n"
"## Internationalization (i18n)\n"
"- Set the `Accept-Language` header to specify your preferred language (e.g., `Accept-Language: en-US`).\n"
"- Available languages can be retrieved from the `/app/languages/` endpoint.\n"
"- All user-facing content supports multiple languages out of the box.\n"
"\n"
"## Response Formats\n"
"The API supports multiple response formats:\n"
"- **JSON** (default, camelCase formatted)\n"
"- **XML** (add `?format=xml` or set `Accept: application/xml`)\n"
"- **YAML** (add `?format=yaml` or set `Accept: application/x-yaml`)\n"
"\n"
"## Health & Monitoring\n"
"- Health checks: `/health/`\n"
"- Prometheus metrics (basic-auth protected): `/prometheus/`\n"
"\n"
"## Version\n"
"Current API version: {EVIBES_VERSION}\n"
#: evibes/settings/jazzmin.py:20
msgid "Home"
msgstr "Home"
#: evibes/settings/jazzmin.py:21
msgid "Storefront"
msgstr "Storefront"
#: evibes/settings/jazzmin.py:24
msgid "GraphQL Docs"
msgstr "GraphQL Docs"
#: evibes/settings/jazzmin.py:29
msgid "Platform REST Docs"
msgstr "Platform REST Docs"
#: evibes/settings/jazzmin.py:34
msgid "B2B REST Docs"
msgstr "B2B REST Docs"
#: evibes/settings/jazzmin.py:38
msgid "Support"
msgstr "Support"