-
{% i18n _('Recent Actions') %}
-
{% i18n _('My Actions') %}
+
{{ _('Recent Actions') }}
+
{{ _('My Actions') }}
{% load auth.log %}
{% get_admin_log 10 as admin_log for_user user %}
{% if not admin_log %}
-
{% i18n _('None available') %}
+
{{ _('None available') }}
{% else %}
{% for entry in admin_log %}
diff --git a/django/conf/admin_templates/login.html b/django/conf/admin_templates/login.html
index 47a5e05750..b1c6e2a8bb 100644
--- a/django/conf/admin_templates/login.html
+++ b/django/conf/admin_templates/login.html
@@ -11,16 +11,16 @@
diff --git a/django/conf/admin_templates/registration/logged_out.html b/django/conf/admin_templates/registration/logged_out.html
index 404b8c37fc..25e4d9fbae 100644
--- a/django/conf/admin_templates/registration/logged_out.html
+++ b/django/conf/admin_templates/registration/logged_out.html
@@ -1,11 +1,11 @@
{% extends "base_site" %}
-{% block breadcrumbs %}
{% endblock %}
+{% block breadcrumbs %}
{% endblock %}
{% block content %}
-
{% i18n _("Thanks for spending some quality time with the Web site today.") %}
+
{{ _("Thanks for spending some quality time with the Web site today.") }}
-
{% i18n _('Log in again') %}
+
{{ _('Log in again') }}
{% endblock %}
diff --git a/django/conf/admin_templates/registration/password_change_done.html b/django/conf/admin_templates/registration/password_change_done.html
index f5242c7076..5859965abd 100644
--- a/django/conf/admin_templates/registration/password_change_done.html
+++ b/django/conf/admin_templates/registration/password_change_done.html
@@ -1,13 +1,13 @@
{% extends "base_site" %}
-{% block breadcrumbs %}
{% endblock %}
+{% block breadcrumbs %}
{% endblock %}
-{% block title %}{% i18n _('Password change successful') %}{% endblock %}
+{% block title %}{{ _('Password change successful') }}{% endblock %}
{% block content %}
-
{% i18n _('Password change successful') %}
+
{{ _('Password change successful') }}
-
{% i18n _('Your password was changed.') %}
+
{{ _('Your password was changed.') }}
{% endblock %}
diff --git a/django/conf/admin_templates/registration/password_change_form.html b/django/conf/admin_templates/registration/password_change_form.html
index f0b8c3bf41..9d00a17e02 100644
--- a/django/conf/admin_templates/registration/password_change_form.html
+++ b/django/conf/admin_templates/registration/password_change_form.html
@@ -1,25 +1,25 @@
{% extends "base_site" %}
-{% block breadcrumbs %}
{% endblock %}
+{% block breadcrumbs %}
{% endblock %}
-{% block title %}{% i18n _('Password change') %}{% endblock %}
+{% block title %}{{ _('Password change') }}{% endblock %}
{% block content %}
-
{% i18n _('Password change') %}
+
{{ _('Password change') }}
-
{% i18n _("Please enter your old password, for security's sake, and then enter your new password twice so we can verify you typed it in correctly.") %}
+
{{ _("Please enter your old password, for security's sake, and then enter your new password twice so we can verify you typed it in correctly.") }}
{% endblock %}
diff --git a/django/conf/admin_templates/registration/password_reset_done.html b/django/conf/admin_templates/registration/password_reset_done.html
index 625ed0c833..51e3668526 100644
--- a/django/conf/admin_templates/registration/password_reset_done.html
+++ b/django/conf/admin_templates/registration/password_reset_done.html
@@ -1,13 +1,13 @@
{% extends "base_site" %}
-{% block breadcrumbs %}
{% endblock %}
+{% block breadcrumbs %}
{% endblock %}
-{% block title %}{% i18n _('Password reset successful') %}{% endblock %}
+{% block title %}{{ _('Password reset successful') }}{% endblock %}
{% block content %}
-
{% i18n _('Password reset successful') %}
+
{{ _('Password reset successful') }}
-
{% i18n _("We've e-mailed a new password to the e-mail address you submitted. You should be receiving it shortly.") %}
+
{{ _("We've e-mailed a new password to the e-mail address you submitted. You should be receiving it shortly.") }}
{% endblock %}
diff --git a/django/conf/admin_templates/registration/password_reset_email.html b/django/conf/admin_templates/registration/password_reset_email.html
index f707fbb279..08ca2c142d 100644
--- a/django/conf/admin_templates/registration/password_reset_email.html
+++ b/django/conf/admin_templates/registration/password_reset_email.html
@@ -1,14 +1,14 @@
-{% i18n _("You're receiving this e-mail because you requested a password reset") %}
-{% i18n _("for your user account at %(site_name)s") %}.
+{{ _("You're receiving this e-mail because you requested a password reset") }}
+{{ _("for your user account at %(site_name)s") }}.
-{% i18n _("Your new password is: %(new_password)s") %}
+{{ _("Your new password is: %(new_password)s") }}
-{% i18n _("Feel free to change this password by going to this page:") %}
+{{ _("Feel free to change this password by going to this page:") }}
http://{{ domain }}/password_change/
-{% i18n _("Your username, in case you've forgotten:") %} {{ user.username }}
+{{ _("Your username, in case you've forgotten:") }} {{ user.username }}
-{% i18n _("Thanks for using our site!") %}
+{{ _("Thanks for using our site!") }}
-{% i18n _("The %(site_name)s team") %}
+{{ _("The %(site_name)s team") }}
diff --git a/django/conf/admin_templates/registration/password_reset_form.html b/django/conf/admin_templates/registration/password_reset_form.html
index 3c378def29..116f9f5bbb 100644
--- a/django/conf/admin_templates/registration/password_reset_form.html
+++ b/django/conf/admin_templates/registration/password_reset_form.html
@@ -1,18 +1,18 @@
{% extends "base_site" %}
-{% block breadcrumbs %}
{% endblock %}
+{% block breadcrumbs %}
{% endblock %}
-{% block title %}{% i18n _("Password reset") %}{% endblock %}
+{% block title %}{{ _("Password reset") }}{% endblock %}
{% block content %}
-
{% i18n _("Password reset") %}
+
{{ _("Password reset") }}
-
{% i18n _("Forgotten your password? Enter your e-mail address below, and we'll reset your password and e-mail the new one to you.") %}
+
{{ _("Forgotten your password? Enter your e-mail address below, and we'll reset your password and e-mail the new one to you.") }}
{% endblock %}