mirror of
https://github.com/monero-project/monero-site.git
synced 2025-01-28 18:56:33 +02:00
blog: make 'Next' and 'Prev' translatable
This commit is contained in:
parent
0fcd167bb4
commit
f29f5f7ffc
@ -880,6 +880,8 @@ blog:
|
||||
author: Posted by
|
||||
date: Posted at
|
||||
filter: "Filter by category:"
|
||||
next: Next
|
||||
previous: Prev
|
||||
|
||||
|
||||
tags:
|
||||
|
@ -65,7 +65,7 @@ title: titles.blogbytag
|
||||
{% if paginator.total_pages > 1 %}
|
||||
<div class="page-numbers"><p>
|
||||
{% if paginator.previous_page %}
|
||||
<a href="{{ paginator.previous_page_path | replace: '//', '/' }}">« Prev</a>
|
||||
<a href="{{ paginator.previous_page_path | replace: '//', '/' }}">« {% t blog.prev %}</a>
|
||||
{% else %}
|
||||
<span>« Prev</span>
|
||||
{% endif %}
|
||||
@ -81,7 +81,7 @@ title: titles.blogbytag
|
||||
{% endfor %}
|
||||
|
||||
{% if paginator.next_page %}
|
||||
<a href="{{ paginator.next_page_path | replace: '//', '/' }}">Next »</a>
|
||||
<a href="{{ paginator.next_page_path | replace: '//', '/' }}">{% t blog.next %} »</a>
|
||||
{% else %}
|
||||
<span>Next »</span>
|
||||
{% endif %}
|
||||
|
Loading…
Reference in New Issue
Block a user