Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/pacollins/hugo-future-imperfect-slim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Collins <thepatrickcollins@gmail.com>2020-03-24 00:11:11 +0300
committerGitHub <noreply@github.com>2020-03-24 00:11:11 +0300
commita846c4c603f8ee413f0d01c74048ae6b93cebb02 (patch)
treebb4ba7a47e64563b6b1da6476d7b8a42a122b672
parentbdf95347c33f19aabca7ed1d978291b1fb1e7a73 (diff)
Add email translation (#127)
-rw-r--r--i18n/de.toml2
-rw-r--r--i18n/en.toml2
-rw-r--r--i18n/es.toml2
-rw-r--r--i18n/fr.toml2
-rw-r--r--i18n/ja.toml2
-rw-r--r--i18n/pl.toml2
-rw-r--r--i18n/pt.toml2
-rw-r--r--i18n/zh-CN.toml2
-rw-r--r--i18n/zh-TW.toml2
-rw-r--r--layouts/partials/share-buttons.html2
10 files changed, 19 insertions, 1 deletions
diff --git a/i18n/de.toml b/i18n/de.toml
index ae5d6bc..80e3cfb 100644
--- a/i18n/de.toml
+++ b/i18n/de.toml
@@ -21,6 +21,8 @@
other = "Unkategorisiert"
[share_post]
other = "Teilen"
+[check_out]
+ other = "Schauen Sie sich diesen Beitrag von an"
[about]
other = "Über mich"
[learn_more]
diff --git a/i18n/en.toml b/i18n/en.toml
index 3de1017..711d031 100644
--- a/i18n/en.toml
+++ b/i18n/en.toml
@@ -21,6 +21,8 @@
other = "Uncategorized"
[share_post]
other = "Share this post"
+[check_out]
+ other = "Check out this post by"
[about]
other = "About"
[learn_more]
diff --git a/i18n/es.toml b/i18n/es.toml
index d8d9d16..14fcbf6 100644
--- a/i18n/es.toml
+++ b/i18n/es.toml
@@ -21,6 +21,8 @@
other = "Sin categoría"
[share_post]
other = "Compartir post"
+[check_out]
+ other = "Mira esta publicación por"
[about]
other = "Sobre"
[learn_more]
diff --git a/i18n/fr.toml b/i18n/fr.toml
index 5407d7a..0939316 100644
--- a/i18n/fr.toml
+++ b/i18n/fr.toml
@@ -21,6 +21,8 @@
other = "Non catégorisé"
[share_post]
other = "Partager ce post"
+[check_out]
+ other = "Découvrez ce post par"
[about]
other = "A propos"
[learn_more]
diff --git a/i18n/ja.toml b/i18n/ja.toml
index ecb2e88..3544d38 100644
--- a/i18n/ja.toml
+++ b/i18n/ja.toml
@@ -21,6 +21,8 @@
other = "未分類"
[share_post]
other = "この投稿をシェアする"
+[check_out]
+ other = "この投稿をチェックする"
[about]
other = "About"
[learn_more]
diff --git a/i18n/pl.toml b/i18n/pl.toml
index a3e1628..b78ec55 100644
--- a/i18n/pl.toml
+++ b/i18n/pl.toml
@@ -23,6 +23,8 @@
other = "Bez kategorii"
[share_post]
other = "Udostępnij ten post"
+[check_out]
+ other = "Sprawdź ten post przez"
[about]
other = "O mnie"
[learn_more]
diff --git a/i18n/pt.toml b/i18n/pt.toml
index 6d0f3ba..4dfb8fb 100644
--- a/i18n/pt.toml
+++ b/i18n/pt.toml
@@ -23,6 +23,8 @@
other = "Sem categoria"
[share_post]
other = "Compartilhe este post"
+[check_out]
+ other = "Confira esta postagem por"
[about]
other = "Sobre"
[learn_more]
diff --git a/i18n/zh-CN.toml b/i18n/zh-CN.toml
index 79e27d9..727a091 100644
--- a/i18n/zh-CN.toml
+++ b/i18n/zh-CN.toml
@@ -20,6 +20,8 @@
other = "未分类"
[share_post]
other = "分享这篇文章"
+[check_out]
+ other = "查看此帖子的作者"
[about]
other = "关于"
[learn_more]
diff --git a/i18n/zh-TW.toml b/i18n/zh-TW.toml
index ea5005a..bca95f3 100644
--- a/i18n/zh-TW.toml
+++ b/i18n/zh-TW.toml
@@ -20,6 +20,8 @@
other = "未分類"
[share_post]
other = "分享這篇文章"
+[check_out]
+ other = "查看此帖子的作者"
[about]
other = "關於"
[learn_more]
diff --git a/layouts/partials/share-buttons.html b/layouts/partials/share-buttons.html
index b7c840a..ea01c13 100644
--- a/layouts/partials/share-buttons.html
+++ b/layouts/partials/share-buttons.html
@@ -25,7 +25,7 @@
<i class="fab fa-pinterest-p"></i><p>&nbsp;Pinterest</p>
</a>
{{ else if eq . "email" }}
- <a href="mailto:?subject=Check out this post by {{ $author }}&amp;body={{ $permalink }}" target="_blank" class="share-btn email" data-proofer-ignore>
+ <a href="mailto:?subject={[ i18n "Check_Out"]} {{ $author }}&amp;body={{ $permalink }}" target="_blank" class="share-btn email" data-proofer-ignore>
<i class="fas fa-envelope"></i><p>&nbsp;Email</p>
</a>
{{ end }}