diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-07-04 03:57:07 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-07-04 03:57:07 +0000 |
| commit | a25fe3b65e39ff6f59ac545d7934461be6c13612 (patch) | |
| tree | 1e157cdc5d03d4f5822706af5c42272b71bcffa8 | |
| parent | 4d29cae46769745f41283b7f9746326ebdd04338 (diff) | |
Changed admin/templates/admin/index.html to make <caption> translatable
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3270 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/admin/templates/admin/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/admin/templates/admin/index.html b/django/contrib/admin/templates/admin/index.html index 246086861b..f7b121723a 100644 --- a/django/contrib/admin/templates/admin/index.html +++ b/django/contrib/admin/templates/admin/index.html @@ -15,7 +15,7 @@ {% for app in app_list %} <div class="module"> <table summary="{% blocktrans with app.name as name %}Models available in the {{ name }} application.{% endblocktrans %}"> - <caption>{{ app.name }}</caption> + <caption>{% blocktrans with app.name as name %}{{ name }}{% endblocktrans %}</caption> {% for model in app.models %} <tr> {% if model.perms.change %} |
