Opened 14 years ago

Closed 8 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 Russell Keith-Magee, 14 years ago

(In [13031]) Refs #13427 -- Removed translation from verbose_name and verbose_name_plural on autogenerated m2m models.

comment:2 by Russell Keith-Magee, 14 years ago

Triage Stage: UnreviewedAccepted

comment:3 by Julien Phalip, 13 years ago

Severity: Normal
Type: Bug

comment:4 by Ramiro Morales, 12 years ago

Easy pickings: unset
Keywords: verbose_name added
Owner: changed from nobody to Ramiro Morales
UI/UX: unset

comment:5 by Claude Paroz, 8 years ago

Has patch: set

I've re-added the translatable strings, and encountered no failures locally. Let's see...

comment:6 by Claude Paroz <claude@…>, 8 years ago

Resolution: fixed
Status: newclosed

In 68554d16:

Fixed #13427 -- Made auto-m2m verbose names translatable

Note: See TracTickets for help on using tickets.
Back to Top