Skip to content

Commit

Permalink
Corrected grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
littlesvensson committed Jan 17, 2025
1 parent 141958f commit 79b7b03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dojo/templates/dojo/paging_snippet.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
{% if num.page_number %}
<a href="?{% url_replace request page_param num.page_number %}" aria-label="{% trans 'Page' %} {{ num.display }}"> {{ num.display }}</a>
{% else %}
<a href="#" role="presentation" aria-disabled="true" tabindex="-1">{{ num.display }}</a>
<a role="presentation" aria-disabled="true" tabindex="-1">{{ num.display }}</a>
{% endif %}
</li>
{% endfor %}
Expand All @@ -42,7 +42,7 @@
{% if page.paginator.count > 500 %}
<li role="presentation"><a href="?{% url_replace request page_size_param 500 %}" aria-label="{% trans '500 items per page' %}" role="menuitem" >500</a></li>
{% endif %}
<li role="presentation"><a href="?{% url_replace request page_size_param page.paginator.count %}" aria-label="{% trans 'All items per page' %}" role="menuitem">{% trans "All" %}</a></li>
<li role="presentation"><a href="?{% url_replace request page_size_param page.paginator.count %}" aria-label="{% trans 'All items on one page' %}" role="menuitem">{% trans "All" %}</a></li>
</ul>
</div>
</li>
Expand Down

0 comments on commit 79b7b03

Please sign in to comment.