admin管理员组文章数量:1344631
I have a Django project where I need to localize the admin panel into two languages.
It seems like I'm following the instructions, but for some reason, my custom translation isn't working.
Below, I’ve attached the configuration files.
#settings.py
USE_I18N = True
USE_L10N = True
USE_TZ = True
LOCALE_PATHS = [BASE_DIR / "locale"]
LANGUAGE_CODE = "ru"
LANGUAGES = [
("ru", _("Русский")),
("en", _("Английский")),
]
#urls.py
urlpatterns = [
path("i18n/", include("django.conf.urls.i18n")),
]
urlpatterns += i18n_patterns(path("admin/", admin.site.urls))
And specifically the usage
#models.py
from django.utils.translation import gettext_lazy as _
class Bot(models.Model):
session_name = models.CharField(_("Имя сессии"))
.po file
#locale/en/LC_MESSAGES/django.po
...
#: src/backend/bots/models.py:8
msgid "Имя сессии"
msgstr "Session name"
.po file compiled with the command
python manage.py compilemessages
In the admin panel, when changing the language, everything is translated except my custom translations.
I also tried running the check through the shell.
#Django shell
from django.utils.translation import gettext as _, activate, get_language
activate("en")
print(_("Имя сессии")) # Имя сессии
It feels like Django is ignoring my .po file
And files tree
.
├── locale
│ └── en
│ └── LC_MESSAGES
│ ├── django.mo
│ └── django.po
├── manage.py
├── src
│ ├── backend
│ │ ├── core
│ │ │ ├── __init__.py
│ │ │ ├── settings.py
│ │ │ ├── urls.py
本文标签: internationalizationCustom text in Django admin is not translatingStack Overflow
版权声明:本文标题:internationalization - Custom text in Django admin is not translating - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743745788a2531730.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论