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

github.com/wangchucheng/hugo-eureka.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/i18n
diff options
context:
space:
mode:
authorWang Chucheng <ccwangchn@gmail.com>2020-05-26 07:24:26 +0300
committerWang Chucheng <ccwangchn@gmail.com>2020-05-26 07:24:26 +0300
commit9683947ad473ecece505ede70ee731e4b290d92d (patch)
tree8c08c4719ec73bdf41b1fe0fd846b70d171273e4 /i18n
parent4eaaf7656dd475976443f11e1d1ee2a8be4e873b (diff)
feat: add basic i18n
Diffstat (limited to 'i18n')
-rw-r--r--i18n/en.toml20
-rw-r--r--i18n/zh.toml20
2 files changed, 40 insertions, 0 deletions
diff --git a/i18n/en.toml b/i18n/en.toml
new file mode 100644
index 0000000..2d36c15
--- /dev/null
+++ b/i18n/en.toml
@@ -0,0 +1,20 @@
+[readMore]
+other = "Read More"
+
+[readingTime]
+other = "{{ .ReadingTime }} min read"
+
+[toc]
+other = "Table of Contents"
+
+[seriesOfPosts]
+other = "Series of Posts"
+
+[previous]
+other = "Previous"
+
+[next]
+other = "Next"
+
+[seeAlso]
+other = "See Also" \ No newline at end of file
diff --git a/i18n/zh.toml b/i18n/zh.toml
new file mode 100644
index 0000000..4d4f463
--- /dev/null
+++ b/i18n/zh.toml
@@ -0,0 +1,20 @@
+[readMore]
+other = "阅读更多"
+
+[readingTime]
+other = "{{ .ReadingTime }}分钟阅读时长"
+
+[toc]
+other = "目录"
+
+[seriesOfPosts]
+other = "系列文章"
+
+[previous]
+other = "上一页"
+
+[next]
+other = "下一页"
+
+[seeAlso]
+other = "相关" \ No newline at end of file