Skip to content

Commit

Permalink
App name translation still missing in app index list. Changed from
Browse files Browse the repository at this point in the history
{% blocktrans %} to {% trans %}. Related to #175
  • Loading branch information
darklow committed Nov 25, 2013
1 parent fd47967 commit 9dfcc73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion suit/templates/admin/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
{% for app in app_list %}
<div class="module">
<table class="table-overview applist" summary="{% blocktrans with name=app.name %}Models available in the {{ name }} application.{% endblocktrans %}">
<caption><a href="{{ app.app_url }}" class="section">{% blocktrans with name=app.name %}{{ name }}{% endblocktrans %}</a></caption>
<caption><a href="{{ app.app_url }}" class="section">{% trans app.name %}</a></caption>
{% for model in app.models %}
<tr>
<th scope="row">{{ model.name }}</th>
Expand Down

0 comments on commit 9dfcc73

Please sign in to comment.