diff options
| author | Georg Bauer <gb@hugo.westfalen.de> | 2005-09-29 22:39:15 +0000 |
|---|---|---|
| committer | Georg Bauer <gb@hugo.westfalen.de> | 2005-09-29 22:39:15 +0000 |
| commit | 828ca2572dc772dcb0efe46fcb99ad762d7ade5b (patch) | |
| tree | dd5bf051cb9af06d751a0fb09c1ddb8d332b3b6c | |
| parent | e3b2fbf6adf5c03dd99e3f3e15fe15eac239d125 (diff) | |
fixed a missing i18n command in the password changing form
git-svn-id: http://code.djangoproject.com/svn/django/branches/i18n@733 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/conf/admin_templates/registration/password_change_form.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/conf/admin_templates/registration/password_change_form.html b/django/conf/admin_templates/registration/password_change_form.html index 0544c4182b..f0b8c3bf41 100644 --- a/django/conf/admin_templates/registration/password_change_form.html +++ b/django/conf/admin_templates/registration/password_change_form.html @@ -2,7 +2,7 @@ {% block breadcrumbs %}<div class="breadcrumbs"><a href="../">{% i18n _('Home') %}</a> › {% i18n _('Password change') %}</div>{% endblock %} -{% block title %}{% _('Password change') %}{% endblock %} +{% block title %}{% i18n _('Password change') %}{% endblock %} {% block content %} |
