diff options
Diffstat (limited to 'django/contrib/admindocs/templates/admin_doc/model_detail.html')
| -rw-r--r-- | django/contrib/admindocs/templates/admin_doc/model_detail.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/django/contrib/admindocs/templates/admin_doc/model_detail.html b/django/contrib/admindocs/templates/admin_doc/model_detail.html index 9fb4eeea14..c1e2bf1e22 100644 --- a/django/contrib/admindocs/templates/admin_doc/model_detail.html +++ b/django/contrib/admindocs/templates/admin_doc/model_detail.html @@ -18,7 +18,7 @@ </div> {% endblock %} -{% block title %}Model: {{ name }}{% endblock %} +{% block title %}{% blocktrans %}Model: {{ name }}{% endblocktrans %}{% endblock %} {% block content %} <div id="content-main"> @@ -32,9 +32,9 @@ <table class="model"> <thead> <tr> - <th>Field</th> - <th>Type</th> - <th>Description</th> + <th>{% trans 'Field' %}</th> + <th>{% trans 'Type' %}</th> + <th>{% trans 'Description' %}</th> </tr> </thead> <tbody> @@ -49,6 +49,6 @@ </table> </div> -<p class="small"><a href="{% url 'django-admindocs-models-index' %}">‹ Back to Models Documentation</a></p> +<p class="small"><a href="{% url 'django-admindocs-models-index' %}">‹ {% trans 'Back to Models Documentation' %}</a></p> </div> {% endblock %} |
