Ticket #2100: admin-change-list-i18n.diff

File admin-change-list-i18n.diff, 2.4 KB (added by Ramiro Morales, 18 years ago)
  • django/contrib/admin/templates/admin/search_form.html

     
    77<input type="text" size="40" name="{{ search_var }}" value="{{ cl.query|escape }}" id="searchbar" />
    88<input type="submit" value="{% trans 'Go' %}" />
    99{% if show_result_count %}
    10     <span class="small quiet">{{ cl.result_count }} result{{ cl.result_count|pluralize }} (<a href="?">{{ cl.full_result_count }} total</a>)</span>
     10    <span class="small quiet">{% blocktrans count cl.result_count as counter %}one result{% plural %}{{ counter }} results{% endblocktrans %} (<a href="?">{% blocktrans with cl.full_result_count as full_result_count %}{{ full_result_count }} total{% endblocktrans %}</a>)</span>
    1111{% endif %}
    1212{% for pair in cl.params.items %}
    1313    {% ifnotequal pair.0 search_var %}<input type="hidden" name="{{ pair.0|escape }}" value="{{ pair.1|escape }}"/>{% endifnotequal %}
  • django/contrib/admin/templates/admin/pagination.html

     
    11{% load admin_list %}
     2{% load i18n %}
    23<p class="paginator">
    34{% if pagination_required %}
    45{% for i in page_range %}
     
    67{% endfor %}
    78{% endif %}
    89{{ cl.result_count }} {% ifequal cl.result_count 1 %}{{ cl.opts.verbose_name }}{% else %}{{ cl.opts.verbose_name_plural }}{% endifequal %}
    9 {% if show_all_url %}&nbsp;&nbsp;<a href="{{ show_all_url }}" class="showall">Show all</a>{% endif %}
     10{% if show_all_url %}&nbsp;&nbsp;<a href="{{ show_all_url }}" class="showall">{% trans 'Show all' %}</a>{% endif %}
    1011</p>
  • django/contrib/admin/templates/admin/filters.html

     
    11{% load admin_list %}
     2{% load i18n %}
    23{% if cl.has_filters %}<div id="changelist-filter">
    3 <h2>Filter</h2>
     4<h2>{% trans 'Filter' %}</h2>
    45{% for spec in cl.filter_specs %}
    56   {% filter cl spec %}
    67{% endfor %}</div>{% endif %}
Back to Top