Changes between Version 3 and Version 4 of Ticket #36950
- Timestamp:
- Feb 25, 2026, 12:19:57 AM (2 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36950 – Description
v3 v4 11 11 Even though the locale is properly configured and other texts on the admin login page are translated into Japanese, this specific string remains in English. 12 12 13 However, according to the source, the Japanese translation does exist in the django.po file:13 However, according to the source, the Japanese translation for this string exists in 14 14 15 15 https://github.com/django/django/blob/a73eed2b5d6dbc78e95482dbd79809b4bd6dd1fd/django/contrib/admin/locale/ja/LC_MESSAGES/django.po#L572-L573 16 16 17 so it appears that the translation entry is present, but not being applied in practice.17 It is possible that the key (msgid) used in the template does not exactly match the one defined in the translation file (for example, due to whitespace or context differences), which may be why the translation is not being applied at runtime. 18 18 19 19