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

Alexander Bilz
28.43.2022 2fbe51c98f2669eadeef8c1c2d00ee158d67a440
feat: translate series label (#372)

Translates the series label into all supported languages.
16 files modified
73 ■■■■ changed files
i18n/ar.toml 5 ●●●● patch | view | raw | blame | history
i18n/de.toml 5 ●●●● patch | view | raw | blame | history
i18n/dk.toml 5 ●●●● patch | view | raw | blame | history
i18n/en.toml 5 ●●●● patch | view | raw | blame | history
i18n/es.toml 5 ●●●● patch | view | raw | blame | history
i18n/fa.toml 5 ●●●● patch | view | raw | blame | history
i18n/fi.toml 5 ●●●● patch | view | raw | blame | history
i18n/fr.toml 5 ●●●● patch | view | raw | blame | history
i18n/it.toml 3 ●●●●● patch | view | raw | blame | history
i18n/ja.toml 5 ●●●● patch | view | raw | blame | history
i18n/ko.toml 5 ●●●● patch | view | raw | blame | history
i18n/pt-PT.toml 3 ●●●●● patch | view | raw | blame | history
i18n/pt-br.toml 5 ●●●● patch | view | raw | blame | history
i18n/zh-cn.toml 5 ●●●● patch | view | raw | blame | history
i18n/zh-tw.toml 5 ●●●● patch | view | raw | blame | history
layouts/partials/series.html 2 ●●● patch | view | raw | blame | history
i18n/ar.toml
@@ -43,4 +43,7 @@
other = "حول"
[update]
other = "تحديث"
other = "تحديث"
[series_posts]
other = "المشاركات في هذه السلسلة"
i18n/de.toml
@@ -46,4 +46,7 @@
other = "Info"
[update]
other = "Aktualisierung"
other = "Aktualisierung"
[series_posts]
other = "Beiträge in dieser Serie"
i18n/dk.toml
@@ -42,4 +42,7 @@
other = "Om"
[update]
other = "Opdatering"
other = "Opdatering"
[series_posts]
other = "Indlæg i denne serie"
i18n/en.toml
@@ -46,4 +46,7 @@
other = "Info"
[update]
other = "Update"
other = "Update"
[series_posts]
other = "Posts in this series"
i18n/es.toml
@@ -42,4 +42,7 @@
other = "Acerca de"
[update]
other = "Actualizar"
other = "Actualizar"
[series_posts]
other = "Publicaciones en esta serie"
i18n/fa.toml
@@ -42,4 +42,7 @@
other = "درباره"
[update]
other = "به روز رسانی"
other = "به روز رسانی"
[series_posts]
other = "پست های این مجموعه"
i18n/fi.toml
@@ -42,4 +42,7 @@
other = "Tietoja"
[update]
other = "Päivitys"
other = "Päivitys"
[series_posts]
other = "Viestit tässä sarjassa"
i18n/fr.toml
@@ -42,4 +42,7 @@
other = "À propos"
[update]
other = "mettre à jour"
other = "mettre à jour"
[series_posts]
other = "Articles dans cette série"
i18n/it.toml
@@ -43,3 +43,6 @@
[update]
other = "Aggiorna"
[series_posts]
other = "Messaggi di questa serie"
i18n/ja.toml
@@ -42,4 +42,7 @@
other = "概要"
[update]
other = "更新"
other = "更新"
[series_posts]
other = "このシリーズの投稿"
i18n/ko.toml
@@ -46,4 +46,7 @@
other = "경고"
[update]
other = "업데이트"
other = "업데이트"
[series_posts]
other = "이 시리즈의 게시물"
i18n/pt-PT.toml
@@ -47,3 +47,6 @@
[update]
other = "Atualizar"
[series_posts]
other = "Postagens nesta série"
i18n/pt-br.toml
@@ -42,4 +42,7 @@
other = "Sobre"
[update]
other = "Atualizar"
other = "Atualizar"
[series_posts]
other = "Postagens nesta série"
i18n/zh-cn.toml
@@ -42,4 +42,7 @@
other = "关于"
[update]
other = "更新"
other = "更新"
[series_posts]
other = "这个系列的帖子"
i18n/zh-tw.toml
@@ -42,4 +42,7 @@
other = "關於"
[update]
other = "關於"
other = "關於"
[series_posts]
other = "這個系列的帖子"
layouts/partials/series.html
@@ -1,7 +1,7 @@
{{ $related := where .Site.RegularPages ".Params.series" "intersect" .Params.series }}
<h3>Posts in this Series</h3>
<h3>{{ i18n "series_posts" }}</h3>
<ul>
  {{ range $related }}
    <li><a href="{{ .Page.RelPermalink }}">{{ title .Page.Title }}</a></li>