#1184 closed defect (fixed)
Russian translation of admin system dies when adding object
Reported by: | Owned by: | Adrian Holovaty | |
---|---|---|---|
Component: | contrib.admin | Version: | dev |
Severity: | normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
When you`re using russian translation of admin system and trying to add new object you may get 500 error with text:
ValueError at /admin/your/path/here/add
unsupported format character '�' (0xffffffd0) at index 37
There is a bug in django/conf/locale/ru/LC_MESSAGES/django.po on line 411
now:
msgid "You may add another %s below."
msgstr "Вы можете добавить % внизу."
should be:
msgid "You may add another %s below."
msgstr "Вы можете добавить %s внизу."
Attachments (1)
Change History (3)
comment:1 by , 19 years ago
comment:2 by , 19 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Please attach the full .po file after correction - otherwise I am completely unable to fix the error, as I don't even know how to enter those chars :-)
It's much easier to just attach the .po file to the ticket so that I can include that to the svn trunk.