diff --git a/evibes/api_urls.py b/evibes/api_urls.py index c0397063..6780aaaa 100644 --- a/evibes/api_urls.py +++ b/evibes/api_urls.py @@ -17,11 +17,11 @@ from core.views import ( from evibes.settings import SPECTACULAR_PLATFORM_SETTINGS urlpatterns = [ - path(r"health/", include("health_check.urls")), - path("prometheus/", include("django_prometheus.urls")), + path(r"health/", include("health_check.urls", namespace="health_check")), + path("prometheus/", include("django_prometheus.urls", namespace="prometheus")), path( r"graphql/", - csrf_exempt(CustomGraphQLView.as_view(graphiql=True, schema=schema)), + csrf_exempt(CustomGraphQLView.as_view(graphiql=True, schema=schema)), name="graphql-platform" ), path( r"docs/", @@ -42,10 +42,10 @@ urlpatterns = [ path(r"i18n/", include("django.conf.urls.i18n")), path(r"favicon.ico", favicon_view), path(r"", index), - path(r"", include("core.api_urls")), - path(r"auth/", include("vibes_auth.urls")), - path(r"payments/", include("payments.urls")), - path(r"blog/", include("blog.urls")), + path(r"", include("core.api_urls", namespace="core")), + path(r"auth/", include("vibes_auth.urls", namespace="vibes_auth")), + path(r"payments/", include("payments.urls", namespace="payments")), + path(r"blog/", include("blog.urls", namespace="blog")), path("admin/doc/", include("django.contrib.admindocs.urls")), ] + i18n_patterns(path("admin/", admin.site.urls)) diff --git a/evibes/locale/ar_AR/LC_MESSAGES/django.mo b/evibes/locale/ar_AR/LC_MESSAGES/django.mo index 2cddb2b5..59461915 100644 Binary files a/evibes/locale/ar_AR/LC_MESSAGES/django.mo and b/evibes/locale/ar_AR/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/ar_AR/LC_MESSAGES/django.po b/evibes/locale/ar_AR/LC_MESSAGES/django.po index 9a64d005..b51f61a3 100644 --- a/evibes/locale/ar_AR/LC_MESSAGES/django.po +++ b/evibes/locale/ar_AR/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2.8.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-06-29 17:31+0100\n" +"POT-Creation-Date: 2025-06-29 17:46+0100\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -211,6 +211,10 @@ msgstr "" "## الإصدار\n" "إصدار API الحالي: {EVIBES_VERSION}\n" +#: evibes/settings/jazzmin.py:20 +msgid "Home" +msgstr "الصفحة الرئيسية" + #: evibes/settings/jazzmin.py:21 msgid "Documentation" msgstr "التوثيق" diff --git a/evibes/locale/cs_CZ/LC_MESSAGES/django.mo b/evibes/locale/cs_CZ/LC_MESSAGES/django.mo index c0d4f73f..ba5fdf8f 100644 Binary files a/evibes/locale/cs_CZ/LC_MESSAGES/django.mo and b/evibes/locale/cs_CZ/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/cs_CZ/LC_MESSAGES/django.po b/evibes/locale/cs_CZ/LC_MESSAGES/django.po index 26a27fce..5a624f56 100644 --- a/evibes/locale/cs_CZ/LC_MESSAGES/django.po +++ b/evibes/locale/cs_CZ/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2.8.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-06-29 17:31+0100\n" +"POT-Creation-Date: 2025-06-29 17:46+0100\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -213,6 +213,10 @@ msgstr "" "## Verze\n" "Aktuální verze API: {EVIBES_VERSION}\n" +#: evibes/settings/jazzmin.py:20 +msgid "Home" +msgstr "Home" + #: evibes/settings/jazzmin.py:21 msgid "Documentation" msgstr "Dokumentace" diff --git a/evibes/locale/da_DK/LC_MESSAGES/django.mo b/evibes/locale/da_DK/LC_MESSAGES/django.mo index 364c7a4e..85f6699e 100644 Binary files a/evibes/locale/da_DK/LC_MESSAGES/django.mo and b/evibes/locale/da_DK/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/da_DK/LC_MESSAGES/django.po b/evibes/locale/da_DK/LC_MESSAGES/django.po index 3d6cbcb0..0c8f3275 100644 --- a/evibes/locale/da_DK/LC_MESSAGES/django.po +++ b/evibes/locale/da_DK/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2.8.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-06-29 17:31+0100\n" +"POT-Creation-Date: 2025-06-29 17:46+0100\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -212,6 +212,10 @@ msgstr "" "## Version\n" "Nuværende API-version: {EVIBES_VERSION}\n" +#: evibes/settings/jazzmin.py:20 +msgid "Home" +msgstr "Hjem" + #: evibes/settings/jazzmin.py:21 msgid "Documentation" msgstr "Dokumentation" diff --git a/evibes/locale/de_DE/LC_MESSAGES/django.mo b/evibes/locale/de_DE/LC_MESSAGES/django.mo index 4e041aba..9937f72e 100644 Binary files a/evibes/locale/de_DE/LC_MESSAGES/django.mo and b/evibes/locale/de_DE/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/de_DE/LC_MESSAGES/django.po b/evibes/locale/de_DE/LC_MESSAGES/django.po index 6aa49e18..93a005a0 100644 --- a/evibes/locale/de_DE/LC_MESSAGES/django.po +++ b/evibes/locale/de_DE/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2.8.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-06-29 17:31+0100\n" +"POT-Creation-Date: 2025-06-29 17:46+0100\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -212,6 +212,10 @@ msgstr "" "## Version\n" "Aktuelle API-Version: {EVIBES_VERSION}\n" +#: evibes/settings/jazzmin.py:20 +msgid "Home" +msgstr "Startseite" + #: evibes/settings/jazzmin.py:21 msgid "Documentation" msgstr "Dokumentation" diff --git a/evibes/locale/en_GB/LC_MESSAGES/django.mo b/evibes/locale/en_GB/LC_MESSAGES/django.mo index 13f04c14..7d0b5fb9 100644 Binary files a/evibes/locale/en_GB/LC_MESSAGES/django.mo and b/evibes/locale/en_GB/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/en_GB/LC_MESSAGES/django.po b/evibes/locale/en_GB/LC_MESSAGES/django.po index b0f2d2d5..4c7c2a6d 100644 --- a/evibes/locale/en_GB/LC_MESSAGES/django.po +++ b/evibes/locale/en_GB/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2.8.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-06-29 17:31+0100\n" +"POT-Creation-Date: 2025-06-29 17:46+0100\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -215,6 +215,10 @@ msgstr "" "## Version\n" "Current API version: {EVIBES_VERSION}\n" +#: evibes/settings/jazzmin.py:20 +msgid "Home" +msgstr "Home" + #: evibes/settings/jazzmin.py:21 msgid "Documentation" msgstr "Documentation" diff --git a/evibes/locale/en_US/LC_MESSAGES/django.mo b/evibes/locale/en_US/LC_MESSAGES/django.mo index 82034bbf..40750891 100644 Binary files a/evibes/locale/en_US/LC_MESSAGES/django.mo and b/evibes/locale/en_US/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/en_US/LC_MESSAGES/django.po b/evibes/locale/en_US/LC_MESSAGES/django.po index d42bd475..c44af938 100644 --- a/evibes/locale/en_US/LC_MESSAGES/django.po +++ b/evibes/locale/en_US/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2.8.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-06-29 17:31+0100\n" +"POT-Creation-Date: 2025-06-29 17:46+0100\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -211,6 +211,10 @@ msgstr "" "## Version\n" "Current API version: {EVIBES_VERSION}\n" +#: evibes/settings/jazzmin.py:20 +msgid "Home" +msgstr "Home" + #: evibes/settings/jazzmin.py:21 msgid "Documentation" msgstr "Documentation" diff --git a/evibes/locale/es_ES/LC_MESSAGES/django.mo b/evibes/locale/es_ES/LC_MESSAGES/django.mo index 395816cf..9de7fda4 100644 Binary files a/evibes/locale/es_ES/LC_MESSAGES/django.mo and b/evibes/locale/es_ES/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/es_ES/LC_MESSAGES/django.po b/evibes/locale/es_ES/LC_MESSAGES/django.po index 3f2249d7..c86821af 100644 --- a/evibes/locale/es_ES/LC_MESSAGES/django.po +++ b/evibes/locale/es_ES/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2.8.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-06-29 17:31+0100\n" +"POT-Creation-Date: 2025-06-29 17:46+0100\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -213,6 +213,10 @@ msgstr "" "## Versión\n" "Versión actual de la API: {EVIBES_VERSION}\n" +#: evibes/settings/jazzmin.py:20 +msgid "Home" +msgstr "Inicio" + #: evibes/settings/jazzmin.py:21 msgid "Documentation" msgstr "Documentación" diff --git a/evibes/locale/fr_FR/LC_MESSAGES/django.mo b/evibes/locale/fr_FR/LC_MESSAGES/django.mo index 6d315929..ea893f3f 100644 Binary files a/evibes/locale/fr_FR/LC_MESSAGES/django.mo and b/evibes/locale/fr_FR/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/fr_FR/LC_MESSAGES/django.po b/evibes/locale/fr_FR/LC_MESSAGES/django.po index 40999e3c..ae451730 100644 --- a/evibes/locale/fr_FR/LC_MESSAGES/django.po +++ b/evibes/locale/fr_FR/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2.8.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-06-29 17:31+0100\n" +"POT-Creation-Date: 2025-06-29 17:46+0100\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -213,6 +213,10 @@ msgstr "" "## Version\n" "Version actuelle de l'API : {EVIBES_VERSION}\n" +#: evibes/settings/jazzmin.py:20 +msgid "Home" +msgstr "Accueil" + #: evibes/settings/jazzmin.py:21 msgid "Documentation" msgstr "Documentation" diff --git a/evibes/locale/hi_IN/LC_MESSAGES/django.po b/evibes/locale/hi_IN/LC_MESSAGES/django.po index e2357176..c5fcec9c 100644 --- a/evibes/locale/hi_IN/LC_MESSAGES/django.po +++ b/evibes/locale/hi_IN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2.8.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-06-29 17:31+0100\n" +"POT-Creation-Date: 2025-06-29 17:46+0100\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -196,6 +196,10 @@ msgid "" "Current API version: {EVIBES_VERSION}\n" msgstr "" +#: evibes/settings/jazzmin.py:20 +msgid "Home" +msgstr "" + #: evibes/settings/jazzmin.py:21 msgid "Documentation" msgstr "" diff --git a/evibes/locale/it_IT/LC_MESSAGES/django.mo b/evibes/locale/it_IT/LC_MESSAGES/django.mo index e9c7728e..7a358bb0 100644 Binary files a/evibes/locale/it_IT/LC_MESSAGES/django.mo and b/evibes/locale/it_IT/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/it_IT/LC_MESSAGES/django.po b/evibes/locale/it_IT/LC_MESSAGES/django.po index df4d64c7..a88eee66 100644 --- a/evibes/locale/it_IT/LC_MESSAGES/django.po +++ b/evibes/locale/it_IT/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2.8.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-06-29 17:31+0100\n" +"POT-Creation-Date: 2025-06-29 17:46+0100\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -212,6 +212,10 @@ msgstr "" "## Versione\n" "Versione attuale dell'API: {EVIBES_VERSION}\n" +#: evibes/settings/jazzmin.py:20 +msgid "Home" +msgstr "Casa" + #: evibes/settings/jazzmin.py:21 msgid "Documentation" msgstr "Documentazione" diff --git a/evibes/locale/ja_JP/LC_MESSAGES/django.mo b/evibes/locale/ja_JP/LC_MESSAGES/django.mo index ad28a653..e3afecc8 100644 Binary files a/evibes/locale/ja_JP/LC_MESSAGES/django.mo and b/evibes/locale/ja_JP/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/ja_JP/LC_MESSAGES/django.po b/evibes/locale/ja_JP/LC_MESSAGES/django.po index 0cf2eda4..ee33f1f3 100644 --- a/evibes/locale/ja_JP/LC_MESSAGES/django.po +++ b/evibes/locale/ja_JP/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2.8.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-06-29 17:31+0100\n" +"POT-Creation-Date: 2025-06-29 17:46+0100\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -211,6 +211,10 @@ msgstr "" "## バージョン\n" "現在のAPIバージョン:現在のAPIバージョン: {EVIBES_VERSION}.\n" +#: evibes/settings/jazzmin.py:20 +msgid "Home" +msgstr "ホーム" + #: evibes/settings/jazzmin.py:21 msgid "Documentation" msgstr "ドキュメンテーション" diff --git a/evibes/locale/kk_KZ/LC_MESSAGES/django.po b/evibes/locale/kk_KZ/LC_MESSAGES/django.po index e2357176..c5fcec9c 100644 --- a/evibes/locale/kk_KZ/LC_MESSAGES/django.po +++ b/evibes/locale/kk_KZ/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2.8.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-06-29 17:31+0100\n" +"POT-Creation-Date: 2025-06-29 17:46+0100\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -196,6 +196,10 @@ msgid "" "Current API version: {EVIBES_VERSION}\n" msgstr "" +#: evibes/settings/jazzmin.py:20 +msgid "Home" +msgstr "" + #: evibes/settings/jazzmin.py:21 msgid "Documentation" msgstr "" diff --git a/evibes/locale/nl_NL/LC_MESSAGES/django.mo b/evibes/locale/nl_NL/LC_MESSAGES/django.mo index 4f722bef..511c9c75 100644 Binary files a/evibes/locale/nl_NL/LC_MESSAGES/django.mo and b/evibes/locale/nl_NL/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/nl_NL/LC_MESSAGES/django.po b/evibes/locale/nl_NL/LC_MESSAGES/django.po index 49510b57..c8ada352 100644 --- a/evibes/locale/nl_NL/LC_MESSAGES/django.po +++ b/evibes/locale/nl_NL/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2.8.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-06-29 17:31+0100\n" +"POT-Creation-Date: 2025-06-29 17:46+0100\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -212,6 +212,10 @@ msgstr "" "## Versie\n" "Huidige API-versie: {EVIBES_VERSION}\n" +#: evibes/settings/jazzmin.py:20 +msgid "Home" +msgstr "Home" + #: evibes/settings/jazzmin.py:21 msgid "Documentation" msgstr "Documentatie" diff --git a/evibes/locale/pl_PL/LC_MESSAGES/django.mo b/evibes/locale/pl_PL/LC_MESSAGES/django.mo index 57860462..028b6e29 100644 Binary files a/evibes/locale/pl_PL/LC_MESSAGES/django.mo and b/evibes/locale/pl_PL/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/pl_PL/LC_MESSAGES/django.po b/evibes/locale/pl_PL/LC_MESSAGES/django.po index 988d8ec2..4f2819d5 100644 --- a/evibes/locale/pl_PL/LC_MESSAGES/django.po +++ b/evibes/locale/pl_PL/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2.8.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-06-29 17:31+0100\n" +"POT-Creation-Date: 2025-06-29 17:46+0100\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -211,6 +211,10 @@ msgstr "" "## Wersja\n" "Aktualna wersja API: {EVIBES_VERSION}\n" +#: evibes/settings/jazzmin.py:20 +msgid "Home" +msgstr "Strona główna" + #: evibes/settings/jazzmin.py:21 msgid "Documentation" msgstr "Dokumentacja" diff --git a/evibes/locale/pt_BR/LC_MESSAGES/django.mo b/evibes/locale/pt_BR/LC_MESSAGES/django.mo index 835a6ec4..0dd2d337 100644 Binary files a/evibes/locale/pt_BR/LC_MESSAGES/django.mo and b/evibes/locale/pt_BR/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/pt_BR/LC_MESSAGES/django.po b/evibes/locale/pt_BR/LC_MESSAGES/django.po index bea23b0f..45f18348 100644 --- a/evibes/locale/pt_BR/LC_MESSAGES/django.po +++ b/evibes/locale/pt_BR/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2.8.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-06-29 17:31+0100\n" +"POT-Creation-Date: 2025-06-29 17:46+0100\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -211,6 +211,10 @@ msgstr "" "## Versão\n" "Versão atual da API: {EVIBES_VERSION}\n" +#: evibes/settings/jazzmin.py:20 +msgid "Home" +msgstr "Início" + #: evibes/settings/jazzmin.py:21 msgid "Documentation" msgstr "Documentação" diff --git a/evibes/locale/ro_RO/LC_MESSAGES/django.mo b/evibes/locale/ro_RO/LC_MESSAGES/django.mo index 94c7a5f7..2ab187b6 100644 Binary files a/evibes/locale/ro_RO/LC_MESSAGES/django.mo and b/evibes/locale/ro_RO/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/ro_RO/LC_MESSAGES/django.po b/evibes/locale/ro_RO/LC_MESSAGES/django.po index 4b5599e9..27f020eb 100644 --- a/evibes/locale/ro_RO/LC_MESSAGES/django.po +++ b/evibes/locale/ro_RO/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2.8.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-06-29 17:31+0100\n" +"POT-Creation-Date: 2025-06-29 17:46+0100\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -213,6 +213,10 @@ msgstr "" "## Versiune\n" "Versiunea curentă a API: {EVIBES_VERSION}\n" +#: evibes/settings/jazzmin.py:20 +msgid "Home" +msgstr "Acasă" + #: evibes/settings/jazzmin.py:21 msgid "Documentation" msgstr "Documentație" diff --git a/evibes/locale/ru_RU/LC_MESSAGES/django.mo b/evibes/locale/ru_RU/LC_MESSAGES/django.mo index 602a0473..6d97bc36 100644 Binary files a/evibes/locale/ru_RU/LC_MESSAGES/django.mo and b/evibes/locale/ru_RU/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/ru_RU/LC_MESSAGES/django.po b/evibes/locale/ru_RU/LC_MESSAGES/django.po index ee39ab92..116c3812 100644 --- a/evibes/locale/ru_RU/LC_MESSAGES/django.po +++ b/evibes/locale/ru_RU/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2.8.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-06-29 17:31+0100\n" +"POT-Creation-Date: 2025-06-29 17:46+0100\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -212,6 +212,10 @@ msgstr "" "## Версия\n" "Текущая версия API: {EVIBES_VERSION}\n" +#: evibes/settings/jazzmin.py:20 +msgid "Home" +msgstr "Главная" + #: evibes/settings/jazzmin.py:21 msgid "Documentation" msgstr "Документация" diff --git a/evibes/locale/zh_Hans/LC_MESSAGES/django.mo b/evibes/locale/zh_Hans/LC_MESSAGES/django.mo index a1befa32..34974e71 100644 Binary files a/evibes/locale/zh_Hans/LC_MESSAGES/django.mo and b/evibes/locale/zh_Hans/LC_MESSAGES/django.mo differ diff --git a/evibes/locale/zh_Hans/LC_MESSAGES/django.po b/evibes/locale/zh_Hans/LC_MESSAGES/django.po index 55464e4b..2d2b681a 100644 --- a/evibes/locale/zh_Hans/LC_MESSAGES/django.po +++ b/evibes/locale/zh_Hans/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: EVIBES 2.8.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-06-29 17:31+0100\n" +"POT-Creation-Date: 2025-06-29 17:46+0100\n" "PO-Revision-Date: 2025-06-16 08:59+0100\n" "Last-Translator: EGOR GORBUNOV \n" "Language-Team: LANGUAGE \n" @@ -211,6 +211,10 @@ msgstr "" "## 版本\n" "当前的 API 版本:{EVIBES_VERSION}\n" +#: evibes/settings/jazzmin.py:20 +msgid "Home" +msgstr "首页" + #: evibes/settings/jazzmin.py:21 msgid "Documentation" msgstr "文件" diff --git a/evibes/settings/jazzmin.py b/evibes/settings/jazzmin.py index ce63eb43..543e8e5b 100644 --- a/evibes/settings/jazzmin.py +++ b/evibes/settings/jazzmin.py @@ -17,10 +17,8 @@ JAZZMIN_SETTINGS = { "search_model": None, "user_avatar": "avatar", "topmenu_links": [ - {"name": "Home", "url": "admin:index"}, - {"name": _("Documentation"), "url": "admin:docs"}, + {"name": _("Home"), "url": "admin:index"}, {"name": _("Storefront"), "url": f"https://{CONSTANCE_CONFIG.get('BASE_DOMAIN')[0]}", "new_window": True}, - {"name": _("Support"), "url": "https://t.me/fureunoir", "new_window": True}, {"name": "GitLab", "url": "https://gitlab.com/wiseless/evibes", "new_window": True}, { "name": _("GraphQL Docs"), @@ -37,6 +35,7 @@ JAZZMIN_SETTINGS = { "url": f"https://b2b.{CONSTANCE_CONFIG.get('BASE_DOMAIN')[0]}/docs/swagger", # type: ignore "new_window": True, }, + {"name": _("Support"), "url": "https://t.me/fureunoir", "new_window": True}, ], "usermenu_links": [], "show_sidebar": True,