summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Tracey <kmtracey@gmail.com>2009-08-13 17:16:29 +0000
committerKaren Tracey <kmtracey@gmail.com>2009-08-13 17:16:29 +0000
commiteaf1f7d6e3a0cb700895e9986a246c03243c65b7 (patch)
treeb40f9174870fccbb1817b234bcd7c1ee704db1ea
parentab6d6896c47e80307af8e2ed676d75a238861e1d (diff)
Fixed #11534: Improved wording for admin delete confirmation. Thanks hanksims and others who reported this.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11447 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/contrib/admin/templates/admin/delete_selected_confirmation.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/contrib/admin/templates/admin/delete_selected_confirmation.html b/django/contrib/admin/templates/admin/delete_selected_confirmation.html
index a6258b94c0..5550b73e2e 100644
--- a/django/contrib/admin/templates/admin/delete_selected_confirmation.html
+++ b/django/contrib/admin/templates/admin/delete_selected_confirmation.html
@@ -19,7 +19,7 @@
{% endfor %}
</ul>
{% else %}
- <p>{% blocktrans %}Are you sure you want to delete the selected {{ object_name }} objects? All of the following objects and it's related items will be deleted:{% endblocktrans %}</p>
+ <p>{% blocktrans %}Are you sure you want to delete the selected {{ object_name }} objects? All of the following objects and their related items will be deleted:{% endblocktrans %}</p>
{% for deleteable_object in deletable_objects %}
<ul>{{ deleteable_object|unordered_list }}</ul>
{% endfor %}
@@ -34,4 +34,4 @@
</div>
</form>
{% endif %}
-{% endblock %} \ No newline at end of file
+{% endblock %}