mirror of https://github.com/django/django.git
Fixed #5798 -- Added a missing translation marker. Thanks, maru.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6617 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
471616aae9
commit
212aa32e2a
|
@ -104,7 +104,7 @@ class PasswordResetForm(oldforms.Manipulator):
|
||||||
'site_name': site_name,
|
'site_name': site_name,
|
||||||
'user': user,
|
'user': user,
|
||||||
}
|
}
|
||||||
send_mail('Password reset on %s' % site_name, t.render(Context(c)), None, [user.email])
|
send_mail(_('Password reset on %s') % site_name, t.render(Context(c)), None, [user.email])
|
||||||
|
|
||||||
class PasswordChangeForm(oldforms.Manipulator):
|
class PasswordChangeForm(oldforms.Manipulator):
|
||||||
"A form that lets a user change his password."
|
"A form that lets a user change his password."
|
||||||
|
|
Loading…
Reference in New Issue