Skip to content

Commit

Permalink
Plugin: BigBlueButton: Internationalize pagination terms - refs #4336
Browse files Browse the repository at this point in the history
  • Loading branch information
ywarnier committed Sep 9, 2022
1 parent c91d81d commit db5aa3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin/bbb/view/listing.tpl
Expand Up @@ -116,7 +116,7 @@
<li class="page-item {% if page_id <= 1 %} disabled {% endif %} ">
<a class="page-link"
href= "{{ _p.web_self_query_vars ~ '&' ~ {'page_id' : page_id - 1 }|url_encode() }}" >
Anterior
{{ 'Previous' | get_lang }}
</a>
</li>
{% if page_number > 0 %}
Expand All @@ -130,7 +130,7 @@
{% endif %}
<li class="page-item {% if page_number <= page_id %} disabled {% endif %} ">
<a class="page-link" href= "{{ _p.web_self_query_vars ~ '&' ~ {'page_id' : page_id + 1 }|url_encode() }}">
Siguiente
{{ 'Next' | get_lang }}
</a>
</li>
</ul>
Expand Down

0 comments on commit db5aa3f

Please sign in to comment.