mirror of https://github.com/lxndrblz/anatole.git

David Scholz
13.17.2024 f8eda4ac663328b89e8e99d3d5d18b815ccccee1
feat: translate related posts header (#473)

* feat: translate related posts header

---------

Co-authored-by: Alexander Bilz <mail@alexbilz.com>
19 files modified
56 ■■■■■ changed files
i18n/ar.toml 3 ●●●●● patch | view | raw | blame | history
i18n/de.toml 3 ●●●●● patch | view | raw | blame | history
i18n/dk.toml 3 ●●●●● patch | view | raw | blame | history
i18n/en.toml 3 ●●●●● patch | view | raw | blame | history
i18n/es.toml 3 ●●●●● patch | view | raw | blame | history
i18n/fa.toml 3 ●●●●● patch | view | raw | blame | history
i18n/fi.toml 3 ●●●●● patch | view | raw | blame | history
i18n/fr.toml 3 ●●●●● patch | view | raw | blame | history
i18n/hu.toml 3 ●●●●● patch | view | raw | blame | history
i18n/id.toml 3 ●●●●● patch | view | raw | blame | history
i18n/it.toml 3 ●●●●● patch | view | raw | blame | history
i18n/ja.toml 3 ●●●●● patch | view | raw | blame | history
i18n/ko.toml 3 ●●●●● patch | view | raw | blame | history
i18n/pt-PT.toml 3 ●●●●● patch | view | raw | blame | history
i18n/pt-br.toml 3 ●●●●● patch | view | raw | blame | history
i18n/tr.toml 3 ●●●●● patch | view | raw | blame | history
i18n/zh-cn.toml 3 ●●●●● patch | view | raw | blame | history
i18n/zh-tw.toml 3 ●●●●● patch | view | raw | blame | history
layouts/partials/related.html 2 ●●● patch | view | raw | blame | history
i18n/ar.toml
@@ -47,3 +47,6 @@
[series_posts]
other = "المشاركات في هذه السلسلة"
[related_posts]
other = "مشاركات مماثلة"
i18n/de.toml
@@ -50,3 +50,6 @@
[series_posts]
other = "Beiträge in dieser Serie"
[related_posts]
other = "Ähnliche Beiträge"
i18n/dk.toml
@@ -46,3 +46,6 @@
[series_posts]
other = "Indlæg i denne serie"
[related_posts]
other = "lignende indlæg"
i18n/en.toml
@@ -50,3 +50,6 @@
[series_posts]
other = "Posts in this series"
[related_posts]
other = "Related Posts"
i18n/es.toml
@@ -46,3 +46,6 @@
[series_posts]
other = "Publicaciones en esta serie"
[related_posts]
other = "Publicaciones similares"
i18n/fa.toml
@@ -50,3 +50,6 @@
[series_posts]
other = "پست های این مجموعه"
[related_posts]
other = "پست های مشابه"
i18n/fi.toml
@@ -46,3 +46,6 @@
[series_posts]
other = "Viestit tässä sarjassa"
[related_posts]
other = "Vastaavia viestejä"
i18n/fr.toml
@@ -46,3 +46,6 @@
[series_posts]
other = "Articles dans cette série"
[related_posts]
other = "Messages similaires"
i18n/hu.toml
@@ -50,3 +50,6 @@
[series_posts]
other = "További bejegyzések a cikksorozatban"
[related_posts]
other = "Hasonló hozzászólások"
i18n/id.toml
@@ -50,3 +50,6 @@
[series_posts]
other = "Posting dalam seri ini"
[related_posts]
other = "Postingan serupa"
i18n/it.toml
@@ -46,3 +46,6 @@
[series_posts]
other = "Messaggi di questa serie"
[related_posts]
other = "Post simili"
i18n/ja.toml
@@ -46,3 +46,6 @@
[series_posts]
other = "このシリーズの投稿"
[related_posts]
other = "同様の投稿"
i18n/ko.toml
@@ -50,3 +50,6 @@
[series_posts]
other = "이 시리즈의 게시물"
[related_posts]
other = "비슷한 게시물"
i18n/pt-PT.toml
@@ -50,3 +50,6 @@
[series_posts]
other = "Postagens nesta série"
[related_posts]
other = "Posts semelhantes"
i18n/pt-br.toml
@@ -46,3 +46,6 @@
[series_posts]
other = "Postagens nesta série"
[related_posts]
other = "Postagens semelhantes"
i18n/tr.toml
@@ -50,3 +50,6 @@
[series_posts]
other = "Bu serideki gönderiler"
[related_posts]
other = "Benzer gönderiler"
i18n/zh-cn.toml
@@ -46,3 +46,6 @@
[series_posts]
other = "这个系列的帖子"
[related_posts]
other = "类似的帖子"
i18n/zh-tw.toml
@@ -46,3 +46,6 @@
[series_posts]
other = "這個系列的帖子"
[related_posts]
other = "類似的帖子"
layouts/partials/related.html
@@ -1,6 +1,6 @@
{{ $related := .Site.RegularPages.Related . | first .Site.Params.numberOfRelatedPosts }}
{{ with $related }}
  <h3>Related Posts</h3>
  <h3>{{- T "related_posts" -}}</h3>
  <ul>
    {{ range . }}
      <li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>