hexo-theme-shokax 0.0.1-alpha1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (162) hide show
  1. package/LICENSE +21 -0
  2. package/LICENSE-shoka +21 -0
  3. package/README.md +47 -0
  4. package/_config.yml +353 -0
  5. package/_images.yml +99 -0
  6. package/languages/README.md +19 -0
  7. package/languages/default.yml +1 -0
  8. package/languages/en.yml +151 -0
  9. package/languages/ja.yml +146 -0
  10. package/languages/zh-CN.yml +154 -0
  11. package/languages/zh-HK.yml +146 -0
  12. package/languages/zh-TW.yml +146 -0
  13. package/layout/_alternate/atom.ejs +30 -0
  14. package/layout/_alternate/json.ejs +16 -0
  15. package/layout/_alternate/rss.ejs +34 -0
  16. package/layout/_mixin/breadcrumb.pug +33 -0
  17. package/layout/_mixin/card.pug +37 -0
  18. package/layout/_mixin/comment.pug +10 -0
  19. package/layout/_mixin/postmeta.pug +30 -0
  20. package/layout/_mixin/segment.pug +32 -0
  21. package/layout/_mixin/sidebar.pug +36 -0
  22. package/layout/_mixin/widgets.pug +29 -0
  23. package/layout/_partials/footer.pug +61 -0
  24. package/layout/_partials/head/head.pug +54 -0
  25. package/layout/_partials/head/head_com.pug +17 -0
  26. package/layout/_partials/head/pwa.pug +17 -0
  27. package/layout/_partials/header.pug +19 -0
  28. package/layout/_partials/layout.pug +143 -0
  29. package/layout/_partials/loading.pug +13 -0
  30. package/layout/_partials/pagination.pug +4 -0
  31. package/layout/_partials/post/copyright.pug +20 -0
  32. package/layout/_partials/post/footer.pug +13 -0
  33. package/layout/_partials/post/nav.pug +13 -0
  34. package/layout/_partials/post/post.pug +26 -0
  35. package/layout/_partials/post/reward.pug +18 -0
  36. package/layout/_partials/sidebar/menu.pug +37 -0
  37. package/layout/_partials/sidebar/overview.pug +40 -0
  38. package/layout/_partials/third-party/baidu-analytics.pug +11 -0
  39. package/layout/_partials/third-party/clarity.pug +8 -0
  40. package/layout/_partials/third-party/qweather.pug +35 -0
  41. package/layout/archive.pug +31 -0
  42. package/layout/category.pug +66 -0
  43. package/layout/index.pug +33 -0
  44. package/layout/page.pug +56 -0
  45. package/layout/post.pug +35 -0
  46. package/layout/tag.pug +43 -0
  47. package/package.json +35 -0
  48. package/scripts/filters/locals.js +57 -0
  49. package/scripts/filters/post.js +23 -0
  50. package/scripts/generaters/archive.js +141 -0
  51. package/scripts/generaters/config.js +43 -0
  52. package/scripts/generaters/images.js +26 -0
  53. package/scripts/generaters/index.js +110 -0
  54. package/scripts/generaters/pages.js +19 -0
  55. package/scripts/generaters/script.js +81 -0
  56. package/scripts/helpers/asset.js +237 -0
  57. package/scripts/helpers/engine.js +183 -0
  58. package/scripts/helpers/list_categories.js +140 -0
  59. package/scripts/helpers/symbols_count_time.js +76 -0
  60. package/scripts/tags/links.js +86 -0
  61. package/scripts/tags/media.js +19 -0
  62. package/source/assets/404.png +0 -0
  63. package/source/assets/algolia_logo.svg +9 -0
  64. package/source/assets/apple-touch-icon.png +0 -0
  65. package/source/assets/beian.webp +0 -0
  66. package/source/assets/failure.ico +0 -0
  67. package/source/assets/favicon.ico +0 -0
  68. package/source/assets/logo.svg +16 -0
  69. package/source/assets/play_disc.png +0 -0
  70. package/source/assets/play_needle.png +0 -0
  71. package/source/assets/search.png +0 -0
  72. package/source/css/_colors.styl +207 -0
  73. package/source/css/_common/components/components.styl +6 -0
  74. package/source/css/_common/components/highlight/highlight.styl +353 -0
  75. package/source/css/_common/components/highlight/operation.styl +21 -0
  76. package/source/css/_common/components/pages/collapse.styl +119 -0
  77. package/source/css/_common/components/pages/home.styl +385 -0
  78. package/source/css/_common/components/pages/pages.styl +56 -0
  79. package/source/css/_common/components/pages/tag-cloud.styl +12 -0
  80. package/source/css/_common/components/post/breadcrumb.styl +39 -0
  81. package/source/css/_common/components/post/copyright.styl +41 -0
  82. package/source/css/_common/components/post/expand.styl +264 -0
  83. package/source/css/_common/components/post/footer.styl +11 -0
  84. package/source/css/_common/components/post/header.styl +79 -0
  85. package/source/css/_common/components/post/nav.styl +63 -0
  86. package/source/css/_common/components/post/post.styl +29 -0
  87. package/source/css/_common/components/post/reward.styl +50 -0
  88. package/source/css/_common/components/post/rtl.styl +12 -0
  89. package/source/css/_common/components/post/tags.styl +39 -0
  90. package/source/css/_common/components/tags/collapse.styl +72 -0
  91. package/source/css/_common/components/tags/container.styl +49 -0
  92. package/source/css/_common/components/tags/label.styl +12 -0
  93. package/source/css/_common/components/tags/links.styl +77 -0
  94. package/source/css/_common/components/tags/list.styl +131 -0
  95. package/source/css/_common/components/tags/note.styl +70 -0
  96. package/source/css/_common/components/tags/player.styl +361 -0
  97. package/source/css/_common/components/tags/quiz.styl +200 -0
  98. package/source/css/_common/components/tags/tabs.styl +83 -0
  99. package/source/css/_common/components/tags/tags.styl +9 -0
  100. package/source/css/_common/components/third-party/loading.styl +222 -0
  101. package/source/css/_common/components/third-party/mermaid/class.styl +90 -0
  102. package/source/css/_common/components/third-party/mermaid/flowchart.styl +72 -0
  103. package/source/css/_common/components/third-party/mermaid/gantt.styl +251 -0
  104. package/source/css/_common/components/third-party/mermaid/git.styl +7 -0
  105. package/source/css/_common/components/third-party/mermaid/mermaid.styl +37 -0
  106. package/source/css/_common/components/third-party/mermaid/pie.styl +9 -0
  107. package/source/css/_common/components/third-party/mermaid/sequence.styl +95 -0
  108. package/source/css/_common/components/third-party/mermaid/state.styl +130 -0
  109. package/source/css/_common/components/third-party/pace.styl +18 -0
  110. package/source/css/_common/components/third-party/search.styl +167 -0
  111. package/source/css/_common/components/third-party/theme.styl +151 -0
  112. package/source/css/_common/components/third-party/third-party.styl +22 -0
  113. package/source/css/_common/components/third-party/valine.styl +548 -0
  114. package/source/css/_common/components/third-party/widgets.styl +57 -0
  115. package/source/css/_common/outline/footer/footer.styl +69 -0
  116. package/source/css/_common/outline/header/brand.styl +77 -0
  117. package/source/css/_common/outline/header/header.styl +20 -0
  118. package/source/css/_common/outline/header/image.styl +79 -0
  119. package/source/css/_common/outline/header/menu.styl +117 -0
  120. package/source/css/_common/outline/header/nav.styl +81 -0
  121. package/source/css/_common/outline/header/right.styl +15 -0
  122. package/source/css/_common/outline/header/tool.styl +207 -0
  123. package/source/css/_common/outline/header/waves.styl +50 -0
  124. package/source/css/_common/outline/mobile.styl +46 -0
  125. package/source/css/_common/outline/outline.styl +78 -0
  126. package/source/css/_common/outline/sidebar/author.styl +59 -0
  127. package/source/css/_common/outline/sidebar/dimmer.styl +23 -0
  128. package/source/css/_common/outline/sidebar/menu.styl +63 -0
  129. package/source/css/_common/outline/sidebar/quick.styl +43 -0
  130. package/source/css/_common/outline/sidebar/related.styl +56 -0
  131. package/source/css/_common/outline/sidebar/sidebar.styl +75 -0
  132. package/source/css/_common/outline/sidebar/social.styl +69 -0
  133. package/source/css/_common/outline/sidebar/state.styl +37 -0
  134. package/source/css/_common/outline/sidebar/tab.styl +71 -0
  135. package/source/css/_common/outline/sidebar/toc.styl +47 -0
  136. package/source/css/_common/scaffolding/animate.styl +318 -0
  137. package/source/css/_common/scaffolding/base.styl +172 -0
  138. package/source/css/_common/scaffolding/buttons.styl +48 -0
  139. package/source/css/_common/scaffolding/divider.styl +36 -0
  140. package/source/css/_common/scaffolding/iconfont.styl +443 -0
  141. package/source/css/_common/scaffolding/normalize.styl +289 -0
  142. package/source/css/_common/scaffolding/pagination.styl +81 -0
  143. package/source/css/_common/scaffolding/ribbon.styl +38 -0
  144. package/source/css/_common/scaffolding/scaffolding.styl +14 -0
  145. package/source/css/_common/scaffolding/scrollbar.styl +37 -0
  146. package/source/css/_common/scaffolding/tables.styl +50 -0
  147. package/source/css/_common/scaffolding/tip.styl +19 -0
  148. package/source/css/_common/scaffolding/toggles.styl +59 -0
  149. package/source/css/_iconfont.styl +451 -0
  150. package/source/css/_mixins.styl +146 -0
  151. package/source/css/_variables.styl +89 -0
  152. package/source/css/app.styl +27 -0
  153. package/source/css/comment.styl +5 -0
  154. package/source/css/mermaid.styl +5 -0
  155. package/source/css/plugin.styl +174 -0
  156. package/source/css/twikoo.css +2002 -0
  157. package/source/js/_app/components.js +330 -0
  158. package/source/js/_app/global.js +317 -0
  159. package/source/js/_app/library.js +302 -0
  160. package/source/js/_app/page.js +623 -0
  161. package/source/js/_app/player.js +748 -0
  162. package/source/js/_app/vue.js +43 -0
@@ -0,0 +1,151 @@
1
+ name: English
2
+
3
+ favicon:
4
+ show: (●´3`●)Goooood
5
+ hide: (´Д`)Booooom
6
+
7
+ title:
8
+ archive: Archive
9
+ category: Category
10
+ tag: Tag
11
+ all: All
12
+ not_found: Σ( ° △ °|||)︴404!
13
+ category_in: Posted in category "%s"
14
+ tag_in: Posted with tag "%s"
15
+ archive_in: Posted on "%s"
16
+
17
+ menu:
18
+ home: Home
19
+ posts: Posts
20
+ archives: Archives
21
+ categories: Categories
22
+ tags: Tags
23
+ about: About
24
+ search: Search
25
+ aboutsite: About the Website
26
+ census: Blog access statistics
27
+ updata: Changelog
28
+ statistics: Article statistics
29
+ admiration: Appreciation to author
30
+
31
+ sidebar:
32
+ overview: Overview
33
+ toc: Contents
34
+ related: Related
35
+
36
+ index:
37
+ sticky: Sticky Posts
38
+ category: Categories
39
+ posts: Post List
40
+ random_posts: Random Posts
41
+ recent_comments: Recent Comments
42
+
43
+ post:
44
+ posted: Posted on
45
+ edited: Edited on
46
+ created: Created
47
+ modified: Modified
48
+ edit: Edit this post
49
+ in: In
50
+ read_more: Read more
51
+ untitled: Untitled
52
+ sticky: Sticky
53
+ views: Views
54
+ related_posts: Related Posts
55
+ next: Next Post
56
+ prev: Previous Post
57
+ copyright:
58
+ author: Post author
59
+ link: Post link
60
+ license_title: Copyright Notice
61
+ license_content: "All articles in this blog are licensed under %s unless stating additionally."
62
+ nocopy: "<span class=\"red\">This page is prohibited reprint.</span>"
63
+
64
+ footer:
65
+ powered: "Powered by %s"
66
+ total_views: Total Views
67
+ total_visitors: Total Visitors
68
+
69
+ counter:
70
+ index:
71
+ post: "%d posts in total"
72
+ category: "%d subcategories in total, "
73
+ tag_cloud:
74
+ zero: No tags
75
+ one: 1 tag in total
76
+ other: "%d tags in total"
77
+ categories:
78
+ zero: No categories
79
+ one: 1 category in total
80
+ other: "%d categories in total"
81
+ archive_posts:
82
+ zero: No posts.
83
+ one: 1 post.
84
+ other: "%d posts in total."
85
+
86
+ state:
87
+ posts: posts
88
+ tags: tags
89
+ categories: categories
90
+
91
+ search:
92
+ placeholder: Search for Posts
93
+ empty: "We didn't find any results for the search: ${query}"
94
+ stats: "${hits} results found in ${time} ms"
95
+
96
+ cheers:
97
+ um: Um..
98
+ ok: OK
99
+ nice: Nice
100
+ good: Good
101
+ great: Great
102
+ excellent: Excellent
103
+
104
+ keep_on: Keep on posting.
105
+
106
+ symbol:
107
+ comma: ", "
108
+ period: ". "
109
+ colon: ": "
110
+ year: "Y"
111
+ month: "M"
112
+
113
+ reward:
114
+ donate: Donate
115
+ text: Give me a cup of [coffee]~( ̄▽ ̄)~*
116
+ wechatpay: WeChat Pay
117
+ alipay: Alipay
118
+ paypal: PayPal
119
+ bitcoin: Bitcoin
120
+
121
+ follow_me:
122
+ welcome: Welcome to my other publishing channels
123
+
124
+ accessibility:
125
+ nav_toggle: Toggle navigation bar
126
+ prev_page: Previous page
127
+ next_page: Next page
128
+
129
+ symbols_count_time:
130
+ count: Symbols count in article
131
+ count_total: Symbols count total
132
+ time: Reading time
133
+ time_total: Reading time total
134
+ time_minutes: mins.
135
+ word: words
136
+ view: times
137
+
138
+ tips:
139
+ copyright: "Copied to clipboard successfully! <br> All articles in this blog are licensed under %s."
140
+ nocopy: "Copied to clipboard failed! This page is prohibited reprint."
141
+
142
+ quiz:
143
+ choice: Multiple Choice
144
+ multiple: Multiple Answer
145
+ true_false: True/False
146
+ essay: Questions
147
+ gap_fill: Gap Filling
148
+ mistake: Wrong Answer
149
+
150
+ outime:
151
+ template: "<div class=\"note warning\"><p><span class=\"label warning\">Article Timeliness Alert</span><br>This is an article published {{publish}} days ago and last updated {{updated}} days ago. Some information may have changed, so please be careful to screen it.</p></div>"
@@ -0,0 +1,146 @@
1
+ ---
2
+ name: 日本語
3
+ favicon:
4
+ show: (●´3`●)やれやれだぜ
5
+ hide: (´Д`)大変だ!
6
+
7
+ title:
8
+ archive: アーカイブ
9
+ category: カテゴリ
10
+ tag: タグ
11
+ all: 全て
12
+ not_found: Σ( ° △ °|||)︴404!何も見えない
13
+ category_in: 「%s」に分類された記事
14
+ tag_in: タグ "%s"の記事
15
+ archive_in: 「%s」で公開された記事
16
+
17
+ menu:
18
+ home: ホーム
19
+ posts: 投稿
20
+ archives: アーカイブ
21
+ categories: カテゴリ
22
+ tags: タグ
23
+ about: プロフィール
24
+ search: 検索
25
+
26
+ sidebar:
27
+ overview: 概要
28
+ toc: 見出し
29
+ related: 関連記事
30
+
31
+ index:
32
+ sticky: 固定記事
33
+ category: 注目のカテゴリ
34
+ posts: 記事のリスト
35
+ random_posts: ランダムな記事
36
+ recent_comments: 最近のコメント
37
+
38
+ post:
39
+ posted: 投稿日
40
+ edited: 編集日
41
+ created: 作成日
42
+ modified: 修正日
43
+ edit: この記事を編集する
44
+ in: カテゴリ
45
+ read_more: 続きを読む
46
+ untitled: 無題
47
+ sticky: 固定
48
+ views: 閲覧数
49
+ related_posts: 関連記事
50
+ next: 次の記事
51
+ prev: 前の記事
52
+ copyright:
53
+ author: 著者
54
+ link: 記事へのリンク
55
+ license_title: 著作権表示
56
+ license_content: "このブログ内のすべての記事は、特別な記載がない限り %s の下のライセンスで保護されています。"
57
+ nocopy: "<span class=\"red\">再印刷は禁止されています。</span>"
58
+
59
+ footer:
60
+ powered: "Powered by %s"
61
+ total_views: 閲覧合計数
62
+ total_visitors: 合計閲覧者数
63
+
64
+ counter:
65
+ index:
66
+ post: "%d 件の記事"
67
+ category: "%d サブカテゴリ,"
68
+ tag_cloud:
69
+ zero: タグなし
70
+ one: 全 1 タグ
71
+ other: "全 %d タグ"
72
+ categories:
73
+ zero: カテゴリなし
74
+ one: 全 1 カテゴリ
75
+ other: "全 %d カテゴリ"
76
+ archive_posts:
77
+ zero: ポストなし
78
+ one: 全 1 ポスト
79
+ other: "全 %d ポスト"
80
+
81
+ state:
82
+ posts: ポスト
83
+ tags: タグ
84
+ categories: カテゴリ
85
+
86
+ search:
87
+ placeholder: 検索…
88
+ empty: "「 ${query} 」については何も見つかりませんでした"
89
+ stats: "${time} ms以内に ${hits} 件の結果が見つかりました"
90
+
91
+ cheers:
92
+ um: うーん
93
+ ok: はい
94
+ nice: まあまあ
95
+ good: いいね
96
+ great: すごい
97
+ excellent: 最高
98
+
99
+ keep_on: もっと書こう!
100
+
101
+ symbol:
102
+ comma: "、"
103
+ period: "。"
104
+ colon: ":"
105
+ year: 年
106
+ month: 月
107
+
108
+ reward:
109
+ donate: 寄付
110
+ text: "*~( ̄▽ ̄)~[お茶]を一杯ください"
111
+ wechatpay: WeChat 支払う
112
+ alipay: Alipay
113
+ paypal: PayPal
114
+ bitcoin: ビットコイン
115
+
116
+ follow_me:
117
+ welcome: Welcome to my other publishing channels
118
+
119
+ accessibility:
120
+ nav_toggle: ナビゲーションバーの切り替え
121
+ prev_page: 前のページ
122
+ next_page: 次のページ
123
+
124
+ symbols_count_time:
125
+ count: 単語数
126
+ count_total: 単語の総数
127
+ time: 読書の時間
128
+ time_total: 読書の合計時間
129
+ time_minutes: 分
130
+ word: 単語
131
+ view: 回
132
+
133
+ tips:
134
+ copyright: "コピーは成功しました。 <br> 再印刷については、 %s 契約に従ってください。"
135
+ nocopy: "コピーに失敗しました。 <br> 再印刷は禁止されています。"
136
+
137
+ quiz:
138
+ choice: 選択
139
+ multiple: 複数選択
140
+ true_false: 正誤
141
+ essay: 問答
142
+ gap_fill: 空欄
143
+ mistake: 間違った答え
144
+
145
+ outime:
146
+ template: "<div class=\"note warning\"><p><span class=\"label warning\">記事の適時性の警告</span><br> {{publish}} 日前に公開され、 {{updated}} 日前に最終更新された記事です。 一部情報が変更されている可能性がありますので、ご了承ください。</p></div>"
@@ -0,0 +1,154 @@
1
+ ---
2
+ name: 简体中文
3
+ favicon:
4
+ show: (●´3`●)やれやれだぜ
5
+ hide: (´Д`)大変だ!
6
+
7
+ title:
8
+ archive: 归档
9
+ category: 分类
10
+ tag: 标签
11
+ all: 全部
12
+ not_found: Σ( ° △ °|||)︴404!何も見えない
13
+ category_in: 分类于"%s"的文章
14
+ tag_in: 包含标签"%s"的文章
15
+ archive_in: 发表于"%s"的文章
16
+
17
+ menu:
18
+ home: 首页
19
+ posts: 文章
20
+ archives: 归档
21
+ categories: 分类
22
+ tags: 标签
23
+ about: 关于
24
+ search: 搜索
25
+ census: 博客访问统计
26
+ aboutsite: 关于本站
27
+ updata: 更新日志
28
+ statistics: 统计
29
+ admiration: 赞赏博主
30
+ friends: 友链
31
+ howtoask: 提问的智慧
32
+ privacy: 隐私政策
33
+
34
+ sidebar:
35
+ overview: 站点概览
36
+ toc: 文章目录
37
+ related: 系列文章
38
+
39
+ index:
40
+ sticky: 置顶文章
41
+ category: 精选分类
42
+ posts: 文章列表
43
+ random_posts: 随机文章
44
+ recent_comments: 最新评论
45
+
46
+ post:
47
+ posted: 发表于
48
+ edited: 更新于
49
+ created: 创建时间
50
+ modified: 修改时间
51
+ edit: 编辑
52
+ in: 分类于
53
+ read_more: 阅读全文
54
+ untitled: 未命名
55
+ sticky: 置顶
56
+ views: 阅读次数
57
+ related_posts: 相关文章
58
+ next: 下一篇
59
+ prev: 上一篇
60
+ copyright:
61
+ author: 本文作者
62
+ link: 本文链接
63
+ license_title: 版权声明
64
+ license_content: "本站所有文章除特别声明外,均采用 %s 许可协议。转载请注明出处!"
65
+ nocopy: "<span class=\"red\">本页内容禁止转载!</span>"
66
+
67
+ footer:
68
+ powered: "基于 %s"
69
+ total_views: 总访问量
70
+ total_visitors: 总访客量
71
+
72
+ counter:
73
+ index:
74
+ post: "%d 篇文章"
75
+ category: "%d 个子项,"
76
+ tag_cloud:
77
+ zero: 暂无标签
78
+ one: 目前共计 1 个标签
79
+ other: "目前共计 %d 个标签"
80
+ categories:
81
+ zero: 暂无分类
82
+ one: 目前共计 1 个分类
83
+ other: "目前共计 %d 个分类"
84
+ archive_posts:
85
+ zero: 暂无文章。
86
+ one: 目前共计 1 篇文章。
87
+ other: "目前共计 %d 篇文章。"
88
+
89
+ state:
90
+ posts: 文章
91
+ tags: 标签
92
+ categories: 分类
93
+
94
+ search:
95
+ placeholder: 文章搜索
96
+ empty: "关于 「 ${query} 」,什么也没搜到"
97
+ stats: "${time} ms 内找到 ${hits} 条结果"
98
+
99
+ cheers:
100
+ um: 嗯..
101
+ ok: 还行
102
+ nice: 不错
103
+ good: 很好
104
+ great: 非常好
105
+ excellent: 太棒了
106
+
107
+ keep_on: 继续努力。
108
+
109
+ symbol:
110
+ comma: ","
111
+ period: "。"
112
+ colon: ":"
113
+ year: 年
114
+ month: 月
115
+
116
+ reward:
117
+ donate: 赞赏
118
+ text: 请我喝[茶]~( ̄▽ ̄)~*
119
+ wechatpay: 微信支付
120
+ alipay: 支付宝
121
+ paypal: 贝宝
122
+ bitcoin: 比特币
123
+
124
+ follow_me:
125
+ welcome: 欢迎关注我的其它发布渠道
126
+
127
+ accessibility:
128
+ nav_toggle: 切换导航栏
129
+ prev_page: 上一页
130
+ next_page: 下一页
131
+
132
+ symbols_count_time:
133
+ count: 本文字数
134
+ count_total: 站点总字数
135
+ time: 阅读时长
136
+ time_total: 站点阅读时长
137
+ time_minutes: 分钟
138
+ word: 字
139
+ view: 次
140
+
141
+ tips:
142
+ copyright: "复制成功,转载请遵守 %s 协议。"
143
+ nocopy: "复制失败,本页内容禁止转载!"
144
+
145
+ quiz:
146
+ choice: 单选题
147
+ multiple: 多选题
148
+ true_false: 判断题
149
+ essay: 问答题
150
+ gap_fill: 填空题
151
+ mistake: 错题备注
152
+
153
+ outime:
154
+ template: "<div class=\"note warning\"><p><span class=\"label warning\">文章时效性提示</span><br>这是一篇发布于 {{publish}} 天前,最后一次更新在 {{updated}} 天前的文章,部分信息可能已经发生改变,请注意甄别。</p></div>"
@@ -0,0 +1,146 @@
1
+ ---
2
+ name: 繁體中文(香港)
3
+ favicon:
4
+ show: (●´3`●)復活成功
5
+ hide: (´Д`)瀏覽器崩潰啦
6
+
7
+ title:
8
+ archive: 歸檔
9
+ category: 分類
10
+ tag: 標籤
11
+ all: 全部
12
+ not_found: Σ( ° △ °|||)︴404!何も見えない
13
+ category_in: 分類於"%s"的文章
14
+ tag_in: 包含標籤"%s"的文章
15
+ archive_in: 發表於"%s"的文章
16
+
17
+ menu:
18
+ home: 首頁
19
+ posts: 文章
20
+ archives: 歸檔
21
+ categories: 分類
22
+ tags: 標籤
23
+ about: 關於
24
+ search: 檢索
25
+
26
+ sidebar:
27
+ overview: 本站概覽
28
+ toc: 文章目錄
29
+ related: 系列文章
30
+
31
+ index:
32
+ sticky: 置頂文章
33
+ category: 精選分類
34
+ posts: 文章列表
35
+ random_posts: 隨機文章
36
+ recent_comments: 最新評論
37
+
38
+ post:
39
+ posted: 發表於
40
+ edited: 更新於
41
+ created: 創建時間
42
+ modified: 修改時間
43
+ edit: 編輯
44
+ in: 分類於
45
+ read_more: 閱讀全文
46
+ untitled: 未命名
47
+ sticky: 置頂
48
+ views: 閱讀次數
49
+ related_posts: 相關文章
50
+ next: 下一篇
51
+ prev: 上一篇
52
+ copyright:
53
+ author: 博主
54
+ link: 文章連結
55
+ license_title: 版權聲明
56
+ license_content: "本網誌所有文章除特別聲明外,均採用 %s 許可協議。轉載請註明出處!"
57
+ nocopy: "<span class=\"red\">本頁內容禁止轉載!</span>"
58
+
59
+ footer:
60
+ powered: "基於 %s"
61
+ total_views: 總瀏覽次數
62
+ total_visitors: 訪客總數
63
+
64
+ counter:
65
+ index:
66
+ post: "%d 篇文章"
67
+ category: "%d 個子項,"
68
+ tag_cloud:
69
+ zero: 暫無標籤
70
+ one: 目前共有 1 個標籤
71
+ other: "目前共有 %d 個標籤"
72
+ categories:
73
+ zero: 暫無分類
74
+ one: 目前共有 1 個分類
75
+ other: "目前共有 %d 個分類"
76
+ archive_posts:
77
+ zero: 暫無文章。
78
+ one: 目前共有 1 篇文章。
79
+ other: "目前共有 %d 篇文章。"
80
+
81
+ state:
82
+ posts: 文章
83
+ tags: 標籤
84
+ categories: 分類
85
+
86
+ search:
87
+ placeholder: 文章搜索
88
+ empty: "關於 「 ${query} 」 ,什麼也沒搜到"
89
+ stats: "${time} ms 內找到 ${hits} 條結果"
90
+
91
+ cheers:
92
+ um: 嗯..
93
+ ok: 還行
94
+ nice: 好
95
+ good: 很好
96
+ great: 非常好
97
+ excellent: 太棒了
98
+
99
+ keep_on: 繼續努力。
100
+
101
+ symbol:
102
+ comma: ","
103
+ period: "。"
104
+ colon: ":"
105
+ year: 年
106
+ month: 月
107
+
108
+ reward:
109
+ donate: 打賞
110
+ text: 請我喝[茶]~( ̄▽ ̄)~*
111
+ wechatpay: 微信支付
112
+ alipay: 支付寶
113
+ paypal: PayPal
114
+ bitcoin: 比特幣
115
+
116
+ follow_me:
117
+ welcome: 歡迎關注我的其它發布渠道
118
+
119
+ accessibility:
120
+ nav_toggle: 切換導航欄
121
+ prev_page: 上一頁
122
+ next_page: 下一頁
123
+
124
+ symbols_count_time:
125
+ count: 本文字數
126
+ count_total: 站點總字數
127
+ time: 閱讀時長
128
+ time_total: 站點閱讀時長
129
+ time_minutes: 分鍾
130
+ word: 字
131
+ view: 次
132
+
133
+ tips:
134
+ copyright: "複製成功,轉載請遵守 %s 協議。"
135
+ nocopy: "複製失敗,本頁內容禁止轉載!"
136
+
137
+ quiz:
138
+ choice: 單選題
139
+ multiple: 多選題
140
+ true_false: 判斷題
141
+ essay: 問答題
142
+ gap_fill: 填空題
143
+ mistake: 錯題備註
144
+
145
+ outime:
146
+ template: "<div class=\"note warning\"><p><span class=\"label warning\">文章時效性提示</span><br>這是一篇發佈於 {{publish}} 天前,最後一次更新在 {{updated}} 天前的文章,部分信息可能已經發生改變,請注意甄別。</p></div>"