summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/contrib/admin/templates/admin/edit_inline_tabular.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/django/contrib/admin/templates/admin/edit_inline_tabular.html b/django/contrib/admin/templates/admin/edit_inline_tabular.html
index 91aac45a4f..449345d7a1 100644
--- a/django/contrib/admin/templates/admin/edit_inline_tabular.html
+++ b/django/contrib/admin/templates/admin/edit_inline_tabular.html
@@ -1,9 +1,10 @@
+{% load i18n %}
{{ bound_inline.formset.management_form }}
<fieldset class="module">
<h2>{{ bound_inline.verbose_name_plural|capfirst|escape }}</h2>
<table>
<thead><tr>
- {% if bound_inline.formset.deletable %}<th>Delete?</th>{% endif %}
+ {% if bound_inline.formset.deletable %}<th>{% trans "Delete" %}?</th>{% endif %}
{% for field in bound_inline.fields %}
{% if not field.is_hidden %}
<th>{{ field.label|capfirst|escape }}</th>
@@ -90,4 +91,4 @@
{% endfor %}
{% endfor %}
</fieldset>
-{% endcomment %} \ No newline at end of file
+{% endcomment %}