mirror of
https://github.com/dillonzq/LoveIt.git
synced 2024-11-14 10:56:16 +01:00
Merge pull request #500 from LeiHao0/master
Add Traditional Chinese in i18n
This commit is contained in:
commit
20a02e69e9
4 changed files with 203 additions and 0 deletions
|
@ -836,6 +836,7 @@ In `assets/css/_custom.scss`, you can add some css style code to customize the s
|
|||
|:-------------------- |:---------:|:---------------------:|:-----------------------------:|:-----------------------------:|
|
||||
| English | `en` | `en` | :(far fa-check-square fa-fw): | :(far fa-check-square fa-fw): |
|
||||
| Simplified Chinese | `zh-cn` | `zh-CN` | :(far fa-check-square fa-fw): | :(far fa-check-square fa-fw): |
|
||||
| Traditional Chinese | `zh-tw` | `zh-TW` | :(far fa-square fa-fw): | :(far fa-check-square fa-fw): |
|
||||
| French | `fr` | `fr` | :(far fa-square fa-fw): | :(far fa-check-square fa-fw): |
|
||||
| Polish | `pl` | `pl` | :(far fa-square fa-fw): | :(far fa-square fa-fw): |
|
||||
| Brazilian Portuguese | `pt-br` | `pt-BR` | :(far fa-square fa-fw): | :(far fa-check-square fa-fw): |
|
||||
|
|
|
@ -841,6 +841,7 @@ In `assets/css/_custom.scss`, you can add some css style code to customize the s
|
|||
|:-------------------- |:---------:|:---------------------:|:-----------------------------:|:-----------------------------:|
|
||||
| English | `en` | `en` | :(far fa-check-square fa-fw): | :(far fa-check-square fa-fw): |
|
||||
| Simplified Chinese | `zh-cn` | `zh-CN` | :(far fa-check-square fa-fw): | :(far fa-check-square fa-fw): |
|
||||
| Traditional Chinese | `zh-tw` | `zh-TW` | :(far fa-square fa-fw): | :(far fa-check-square fa-fw): |
|
||||
| French | `fr` | `fr` | :(far fa-square fa-fw): | :(far fa-check-square fa-fw): |
|
||||
| Polish | `pl` | `pl` | :(far fa-square fa-fw): | :(far fa-square fa-fw): |
|
||||
| Brazilian Portuguese | `pt-br` | `pt-BR` | :(far fa-square fa-fw): | :(far fa-check-square fa-fw): |
|
||||
|
|
|
@ -840,6 +840,7 @@ $code-font-family: Fira Mono, Source Code Pro, Menlo, Consolas, Monaco, monospac
|
|||
|:---- |:----:|:----:|:----:|:----:|
|
||||
| 英语 | `en` | `en` | :(far fa-check-square fa-fw): | :(far fa-check-square fa-fw): |
|
||||
| 简体中文 | `zh-cn` | `zh-CN` | :(far fa-check-square fa-fw): | :(far fa-check-square fa-fw): |
|
||||
| 繁體中文 | `zh-tw` | `zh-TW` | :(far fa-square fa-fw): | :(far fa-check-square fa-fw): |
|
||||
| 法语 | `fr` | `fr` | :(far fa-square fa-fw): | :(far fa-check-square fa-fw): |
|
||||
| 波兰语 | `pl` | `pl` | :(far fa-square fa-fw): | :(far fa-square fa-fw): |
|
||||
| 巴西葡萄牙语 | `pt-br` | `pt-BR` | :(far fa-square fa-fw): | :(far fa-check-square fa-fw): |
|
||||
|
|
200
i18n/zh-TW.toml
Normal file
200
i18n/zh-TW.toml
Normal file
|
@ -0,0 +1,200 @@
|
|||
# Translations for Simplified Chinese
|
||||
# 簡體中文的翻譯
|
||||
# https://gohugo.io/content-management/multilingual/#translation-of-strings
|
||||
|
||||
# === baseof ==
|
||||
[backToTop]
|
||||
other = "回到頂部"
|
||||
|
||||
[viewComments]
|
||||
other = "查看評論"
|
||||
# === baseof ==
|
||||
|
||||
# === Post ===
|
||||
[posts]
|
||||
other = "文章"
|
||||
# === Post ===
|
||||
|
||||
# === Taxonomy ===
|
||||
[allSome]
|
||||
other = "所有{{ .Some }}"
|
||||
|
||||
[tag]
|
||||
other = "標籤"
|
||||
|
||||
[tags]
|
||||
other = "標籤"
|
||||
|
||||
[category]
|
||||
other = "分類"
|
||||
|
||||
[categories]
|
||||
other = "分類"
|
||||
# === Taxonomy ===
|
||||
|
||||
# === Pagination ===
|
||||
[more]
|
||||
other = "更多"
|
||||
# === Pagination ===
|
||||
|
||||
# === partials/header.html ===
|
||||
[selectLanguage]
|
||||
other = "選擇語言"
|
||||
|
||||
[switchTheme]
|
||||
other = "切換主題"
|
||||
# === partials/header.html ===
|
||||
|
||||
# === partials/footer.html ===
|
||||
[poweredBySome]
|
||||
other = "由 {{ .Hugo }} 強力驅動 | 主題 - {{ .Theme }}"
|
||||
# === partials/footer.html ===
|
||||
|
||||
# === partials/comment.html ===
|
||||
[valineLang]
|
||||
other = "zh-tw"
|
||||
|
||||
[valinePlaceholder]
|
||||
other = "你的評論 ..."
|
||||
|
||||
[facebookLanguageCode]
|
||||
other = "zh_TW"
|
||||
# === partials/comment.html ===
|
||||
|
||||
# === partials/assets.html ===
|
||||
[search]
|
||||
other = "搜索"
|
||||
|
||||
[searchPlaceholder]
|
||||
other = "搜索文章標題或內容..."
|
||||
|
||||
[clear]
|
||||
other = "清空"
|
||||
|
||||
[cancel]
|
||||
other = "取消"
|
||||
|
||||
[noResultsFound]
|
||||
other = "沒有找到結果"
|
||||
|
||||
[lunrLanguageCode]
|
||||
other = "zh"
|
||||
|
||||
[lunrLanguageLib]
|
||||
other = "lib/lunr/lunr.zh.js"
|
||||
|
||||
[lunrSegmentitLib]
|
||||
other = "lib/lunr/lunr.segmentit.js"
|
||||
|
||||
[copyToClipboard]
|
||||
other = "複製到剪貼板"
|
||||
|
||||
[cookieconsentMessage]
|
||||
other = "本網站使用 Cookies 來改善您的瀏覽體驗."
|
||||
|
||||
[cookieconsentDismiss]
|
||||
other = "同意"
|
||||
|
||||
[cookieconsentLink]
|
||||
other = "了解更多"
|
||||
# === partials/assets.html ===
|
||||
|
||||
# === partials/plugin/share.html ===
|
||||
[shareOn]
|
||||
other = "分享到"
|
||||
# === partials/plugin/share.html ===
|
||||
|
||||
# === posts/single.html ===
|
||||
[contents]
|
||||
other = "目錄"
|
||||
|
||||
[publishedOnDate]
|
||||
other = "發佈於 {{ .Date }}"
|
||||
|
||||
[includedInCategories]
|
||||
other = "收錄於 {{ .Categories }}"
|
||||
|
||||
[wordCount]
|
||||
other = "約 {{ .Count }} 字"
|
||||
|
||||
[readingTime]
|
||||
other = "預計閱讀 {{ .Count }} 分鐘"
|
||||
|
||||
[views]
|
||||
other = "次閱讀"
|
||||
|
||||
[author]
|
||||
other = "作者"
|
||||
|
||||
[updatedOnDate]
|
||||
other = "更新於 {{ .Date }}"
|
||||
|
||||
[readMarkdown]
|
||||
other = "閱讀原始文檔"
|
||||
|
||||
[back]
|
||||
other = "返回"
|
||||
|
||||
[home]
|
||||
other = "主頁"
|
||||
|
||||
[readMore]
|
||||
other = "閱讀全文"
|
||||
# === posts/single.html ===
|
||||
|
||||
# === 404.html ===
|
||||
[pageNotFound]
|
||||
other = "頁面沒找到"
|
||||
|
||||
[pageNotFoundText]
|
||||
other = "抱歉,您要查找的頁面不存在。"
|
||||
# === 404.html ===
|
||||
|
||||
# === shortcodes/admonition.html ===
|
||||
[note]
|
||||
other = "注意"
|
||||
|
||||
[abstract]
|
||||
other = "摘要"
|
||||
|
||||
[info]
|
||||
other = "信息"
|
||||
|
||||
[tip]
|
||||
other = "技巧"
|
||||
|
||||
[success]
|
||||
other = "成功"
|
||||
|
||||
[question]
|
||||
other = "問題"
|
||||
|
||||
[warning]
|
||||
other = "警告"
|
||||
|
||||
[failure]
|
||||
other = "失敗"
|
||||
|
||||
[danger]
|
||||
other = "危險"
|
||||
|
||||
[bug]
|
||||
other = "Bug"
|
||||
|
||||
[example]
|
||||
other = "示例"
|
||||
|
||||
[quote]
|
||||
other = "引用"
|
||||
# === shortcodes/admonition.html ===
|
||||
|
||||
# === shortcodes/version.html ===
|
||||
[new]
|
||||
other = "新增"
|
||||
|
||||
[changed]
|
||||
other = "更改"
|
||||
|
||||
[deleted]
|
||||
other = "刪除"
|
||||
# === shortcodes/version.html ===
|
Loading…
Reference in a new issue