Opened 15 years ago
Closed 9 years ago
#13427 closed Bug (fixed)
verbose_name and verbose_name_plural is untranslated on autogenerated m2m models
Reported by: | Russell Keith-Magee | Owned by: | Ramiro Morales |
---|---|---|---|
Component: | Database layer (models, ORM) | Version: | dev |
Severity: | Normal | Keywords: | verbose_name |
Cc: | Triage Stage: | Accepted | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
When Django adds an autogenerated m2m model, it uses the literal string "A-B relationship" for the verbose_name. This verbose name is then used by the admin if the m2m model is used in an inline. Because the string isn't marked for translation, the title "A-B relationships" on the inline block and the "Add another A-B relationship" button are not translatable.
r13029 included translation, but for some reason, having a ugettext_lazy() with string interpolated arguments caused the fixtures modeltest to fail.
Change History (6)
comment:1 by , 15 years ago
comment:2 by , 15 years ago
Triage Stage: | Unreviewed → Accepted |
---|
comment:3 by , 14 years ago
Severity: | → Normal |
---|---|
Type: | → Bug |
comment:4 by , 13 years ago
Easy pickings: | unset |
---|---|
Keywords: | verbose_name added |
Owner: | changed from | to
UI/UX: | unset |
comment:5 by , 9 years ago
Has patch: | set |
---|
I've re-added the translatable strings, and encountered no failures locally. Let's see...
(In [13031]) Refs #13427 -- Removed translation from verbose_name and verbose_name_plural on autogenerated m2m models.