Opened 17 years ago

Closed 17 years ago

#5798 closed (fixed)

Missing translation string specifier in contrib.auth.forms

Reported by: maru Owned by: nobody
Component: Contrib apps Version: dev
Severity: Keywords: translation string
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

[source:django/trunk/django/contrib/auth/forms.py@L107#L107 django/contrib/auth/forms.py line 107]

send_mail('Password reset on %s' % site_name, t.render(Context(c)), None, [user.email])

Attachments (1)

auth-form-i18n.diff (615 bytes ) - added by maru 17 years ago.

Download all attachments as: .zip

Change History (4)

by maru, 17 years ago

Attachment: auth-form-i18n.diff added

comment:1 by Simon G., 17 years ago

Summary: Missing translation string specifierMissing translation string specifier in contrib.auth.forms
Triage Stage: UnreviewedReady for checkin

comment:2 by Malcolm Tredinnick, 17 years ago

In future, please generate patches from the top of the source tree so that the file location is part of the patch and we don't have to guess which forms.py needs to be patched when reviewing the patch offline.

comment:3 by Malcolm Tredinnick, 17 years ago

Resolution: fixed
Status: newclosed

(In [6617]) Fixed #5798 -- Added a missing translation marker. Thanks, maru.

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