diff options
| author | Mike Hansen <mike@rover.com> | 2019-09-23 08:31:21 -0700 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-12-18 13:15:38 +0100 |
| commit | 35d36d946272bed06a3d7c7cd4e5b71b613e7a4f (patch) | |
| tree | e6c774f841dc77ca311be6ecfad9c5d7ef790336 /django/contrib/admin/templates/registration/password_reset_complete.html | |
| parent | d291c72bf24387e4abe8d9883ebe9c69abdd26d0 (diff) | |
Refs #30585 -- Updated project templates and tests to use (block)translate tags.
Diffstat (limited to 'django/contrib/admin/templates/registration/password_reset_complete.html')
| -rw-r--r-- | django/contrib/admin/templates/registration/password_reset_complete.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/django/contrib/admin/templates/registration/password_reset_complete.html b/django/contrib/admin/templates/registration/password_reset_complete.html index 19f87a5b76..396f339841 100644 --- a/django/contrib/admin/templates/registration/password_reset_complete.html +++ b/django/contrib/admin/templates/registration/password_reset_complete.html @@ -3,8 +3,8 @@ {% block breadcrumbs %} <div class="breadcrumbs"> -<a href="{% url 'admin:index' %}">{% trans 'Home' %}</a> -› {% trans 'Password reset' %} +<a href="{% url 'admin:index' %}">{% translate 'Home' %}</a> +› {% translate 'Password reset' %} </div> {% endblock %} @@ -13,8 +13,8 @@ {% block content %} -<p>{% trans "Your password has been set. You may go ahead and log in now." %}</p> +<p>{% translate "Your password has been set. You may go ahead and log in now." %}</p> -<p><a href="{{ login_url }}">{% trans 'Log in' %}</a></p> +<p><a href="{{ login_url }}">{% translate 'Log in' %}</a></p> {% endblock %} |
