Merge pull request #442 from stdevel/bug-posts_buttons_translation-441

Newer / older posts buttons not translated
This commit is contained in:
Djordje Atlialp 2023-11-22 23:21:02 +01:00 committed by GitHub
commit 36a16d2791
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 77 additions and 7 deletions

View file

@ -37,3 +37,8 @@ other = "{{ .Count }} Wörter"
[lastModified] [lastModified]
other = "Letzte Aktualisierung" other = "Letzte Aktualisierung"
# partials/pagination-list.html
[pagination]
newerPosts = "Neuere Beiträge"
olderPosts = "Ältere Beiträge"

View file

@ -37,3 +37,8 @@ other = "{{ .Count }} Words"
[lastModified] [lastModified]
other = "Last updated" other = "Last updated"
# partials/pagination-list.html
[pagination]
newerPosts = "Newer posts"
olderPosts = "Older posts"

View file

@ -37,3 +37,8 @@ other = "{{ .Count }} Palabras"
[lastModified] [lastModified]
other = "Ultima actualización" other = "Ultima actualización"
# partials/pagination-list.html
[pagination]
newerPosts = "Entradas más recientes"
olderPosts = "Entradas antiguas"

View file

@ -37,3 +37,8 @@ other = "{{ .Count }} Mots"
[lastModified] [lastModified]
other = "Mise à jour" other = "Mise à jour"
# partials/pagination-list.html
[pagination]
newerPosts = "Articles plus récents"
olderPosts = "Articles plus anciens"

View file

@ -34,3 +34,8 @@ other = "Táboa de contidos"
[wordCount] [wordCount]
one = "Unha Palabra" one = "Unha Palabra"
other = "{{ .Count }} Palabras" other = "{{ .Count }} Palabras"
# partials/pagination-list.html
[pagination]
newerPosts = "Entradas más recientes"
olderPosts = "Entradas antiguas"

View file

@ -37,3 +37,8 @@ other = "{{ .Count }} Kata"
[lastModified] [lastModified]
other = "Terakhir diupdate" other = "Terakhir diupdate"
# partials/pagination-list.html
[pagination]
newerPosts = "Postingan yang lebih baru"
olderPosts = "Postingan yang lebih lama"

View file

@ -1,4 +1,4 @@
# Translations for English # Translations for Italian
# https://gohugo.io/content-management/multilingual/#translation-of-strings # https://gohugo.io/content-management/multilingual/#translation-of-strings
# Generic # Generic
@ -37,3 +37,8 @@ other = "{{ .Count }} parole"
[lastModified] [lastModified]
other = "Ultimo aggiornamento" other = "Ultimo aggiornamento"
# partials/pagination-list.html
[pagination]
newerPosts = "Voci più recenti"
olderPosts = "Voci più vecchie"

View file

@ -37,3 +37,8 @@ other = "{{ .Count }}文字"
[lastModified] [lastModified]
other = "最終更新" other = "最終更新"
# partials/pagination-list.html
[pagination]
newerPosts = "新しいエントリー"
olderPosts = "古いエントリー"

View file

@ -1,4 +1,4 @@
# Translations for English # Translations for Lombardian
# https://gohugo.io/content-management/multilingual/#translation-of-strings # https://gohugo.io/content-management/multilingual/#translation-of-strings
# Generic # Generic

View file

@ -1,4 +1,4 @@
# Translations for Portuguese # Translations for Portuguese (Brasilian)
# https://gohugo.io/content-management/multilingual/#translation-of-strings # https://gohugo.io/content-management/multilingual/#translation-of-strings
# Generic # Generic
@ -37,3 +37,8 @@ other = "{{ .Count }} Palavras"
[lastModified] [lastModified]
other = "Última actualização" other = "Última actualização"
# partials/pagination-list.html
[pagination]
newerPosts = "Entradas mais recentes"
olderPosts = "Entradas mais antigas"

View file

@ -37,3 +37,8 @@ other = "{{ .Count }} de cuvinte"
[lastModified] [lastModified]
other = "Ultima modificare" other = "Ultima modificare"
# partials/pagination-list.html
[pagination]
newerPosts = "Intrări mai noi"
olderPosts = "Intrări mai vechi"

View file

@ -41,3 +41,8 @@ other = "{{ .Count }} слов"
[lastModified] [lastModified]
other = "Последнее обновление" other = "Последнее обновление"
# partials/pagination-list.html
[pagination]
newerPosts = "Более новые записи"
olderPosts = "Старые записи"

View file

@ -1,4 +1,4 @@
# Translations for English # Translations for Turkish
# https://gohugo.io/content-management/multilingual/#translation-of-strings # https://gohugo.io/content-management/multilingual/#translation-of-strings
# Generic # Generic
@ -37,3 +37,8 @@ other = "{{ .Count }} Kelime"
[lastModified] [lastModified]
other = "Son güncelleme" other = "Son güncelleme"
# partials/pagination-list.html
[pagination]
newerPosts = "Daha yeni girişler"
olderPosts = "Eski girişler"

View file

@ -41,3 +41,8 @@ other = "{{ .Count }} слів"
[lastModified] [lastModified]
other = "Останнє оновлення" other = "Останнє оновлення"
# partials/pagination-list.html
[pagination]
newerPosts = "Нові записи"
olderPosts = "Старіші записи"

View file

@ -37,3 +37,8 @@ other = "{{ .Count }}字"
[lastModified] [lastModified]
other = "最后修改" other = "最后修改"
# partials/pagination-list.html
[pagination]
newerPosts = "较新条目"
olderPosts = "旧条目"

View file

@ -4,14 +4,14 @@
<span class="button previous"> <span class="button previous">
<a href="{{ .Paginator.Prev.URL }}"> <a href="{{ .Paginator.Prev.URL }}">
<span class="button__icon"></span> <span class="button__icon"></span>
<span class="button__text">Newer posts</span> <span class="button__text">{{ i18n "pagination.newerPosts" }}</span>
</a> </a>
</span> </span>
{{ end }} {{ end }}
{{ if .Paginator.HasNext }} {{ if .Paginator.HasNext }}
<span class="button next"> <span class="button next">
<a href="{{ .Paginator.Next.URL }}"> <a href="{{ .Paginator.Next.URL }}">
<span class="button__text">Older posts</span> <span class="button__text">{{ i18n "pagination.olderPosts" }}</span>
<span class="button__icon"></span> <span class="button__icon"></span>
</a> </a>
</span> </span>