hexo-theme-shokax 0.5.1 → 0.5.2-hotfix.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (164) hide show
  1. package/CODE_OF_CONDUCT.md +128 -128
  2. package/LICENSE +660 -660
  3. package/LICENSE-shoka +21 -21
  4. package/README.md +74 -68
  5. package/UsageRestrictions.md +25 -25
  6. package/_config.yml +352 -350
  7. package/languages/README.md +19 -19
  8. package/languages/default.yml +1 -1
  9. package/languages/en.yml +155 -155
  10. package/languages/ja.yml +155 -155
  11. package/languages/zh-CN.yml +155 -155
  12. package/languages/zh-HK.yml +155 -155
  13. package/languages/zh-TW.yml +155 -155
  14. package/layout/_alternate/atom.ejs +30 -30
  15. package/layout/_alternate/json.ejs +16 -16
  16. package/layout/_alternate/rss.ejs +34 -34
  17. package/layout/_mixin/breadcrumb.pug +33 -33
  18. package/layout/_mixin/card.pug +37 -37
  19. package/layout/_mixin/comment.pug +6 -6
  20. package/layout/_mixin/postmeta.pug +29 -29
  21. package/layout/_mixin/segment.pug +35 -35
  22. package/layout/_mixin/sidebar.pug +40 -40
  23. package/layout/_mixin/widgets.pug +28 -28
  24. package/layout/_partials/footer.pug +43 -43
  25. package/layout/_partials/head/head.pug +50 -50
  26. package/layout/_partials/head/head_com.pug +24 -24
  27. package/layout/_partials/head/pwa.pug +18 -18
  28. package/layout/_partials/header.pug +18 -18
  29. package/layout/_partials/layout.pug +137 -137
  30. package/layout/_partials/loading.pug +13 -13
  31. package/layout/_partials/pagination.pug +4 -4
  32. package/layout/_partials/post/copyright.pug +20 -20
  33. package/layout/_partials/post/footer.pug +20 -20
  34. package/layout/_partials/post/nav.pug +17 -17
  35. package/layout/_partials/post/post.pug +42 -42
  36. package/layout/_partials/post/reward.pug +18 -18
  37. package/layout/_partials/sidebar/menu.pug +37 -37
  38. package/layout/_partials/sidebar/overview.pug +42 -42
  39. package/layout/_partials/third-party/baidu-analytics.pug +11 -11
  40. package/layout/_partials/third-party/clarity.pug +8 -8
  41. package/layout/_partials/third-party/google-analytics.pug +9 -9
  42. package/layout/archive.pug +121 -121
  43. package/layout/category.pug +62 -62
  44. package/layout/index.pug +36 -36
  45. package/layout/page.pug +60 -60
  46. package/layout/post.pug +42 -42
  47. package/layout/tag.pug +46 -46
  48. package/package.json +13 -12
  49. package/scripts/generaters/images.js +11 -13
  50. package/scripts/generaters/script.js +3 -1
  51. package/scripts/plugin/check.js +48 -10
  52. package/scripts/plugin/index.js +2 -2
  53. package/source/assets/algolia_logo.svg +9 -9
  54. package/source/assets/logo.svg +16 -16
  55. package/source/css/_colors.styl +207 -207
  56. package/source/css/_common/components/components.styl +5 -6
  57. package/source/css/_common/components/pages/collapse.styl +119 -119
  58. package/source/css/_common/components/pages/home.styl +391 -391
  59. package/source/css/_common/components/pages/pages.styl +56 -56
  60. package/source/css/_common/components/pages/tag-cloud.styl +12 -12
  61. package/source/css/_common/components/post/breadcrumb.styl +39 -39
  62. package/source/css/_common/components/post/copyright.styl +41 -41
  63. package/source/css/_common/components/post/expand.styl +263 -263
  64. package/source/css/_common/components/post/footer.styl +11 -11
  65. package/source/css/_common/components/post/header.styl +79 -79
  66. package/source/css/_common/components/post/nav.styl +64 -64
  67. package/source/css/_common/components/post/post.styl +29 -29
  68. package/source/css/_common/components/post/reward.styl +50 -50
  69. package/source/css/_common/components/post/rtl.styl +12 -12
  70. package/source/css/_common/components/post/tags.styl +39 -39
  71. package/source/css/_common/components/tags/collapse.styl +72 -72
  72. package/source/css/_common/components/tags/container.styl +49 -49
  73. package/source/css/_common/components/tags/label.styl +12 -12
  74. package/source/css/_common/components/tags/links.styl +77 -77
  75. package/source/css/_common/components/tags/list.styl +131 -131
  76. package/source/css/_common/components/tags/note.styl +70 -70
  77. package/source/css/_common/components/tags/player.styl +361 -361
  78. package/source/css/_common/components/tags/quiz.styl +200 -200
  79. package/source/css/_common/components/tags/tabs.styl +89 -89
  80. package/source/css/_common/components/tags/tags.styl +9 -9
  81. package/source/css/_common/components/third-party/loading.styl +222 -222
  82. package/source/css/_common/components/third-party/mermaid/class.styl +90 -90
  83. package/source/css/_common/components/third-party/mermaid/flowchart.styl +72 -72
  84. package/source/css/_common/components/third-party/mermaid/gantt.styl +251 -251
  85. package/source/css/_common/components/third-party/mermaid/git.styl +7 -7
  86. package/source/css/_common/components/third-party/mermaid/mermaid.styl +37 -37
  87. package/source/css/_common/components/third-party/mermaid/pie.styl +9 -9
  88. package/source/css/_common/components/third-party/mermaid/sequence.styl +95 -95
  89. package/source/css/_common/components/third-party/mermaid/state.styl +130 -130
  90. package/source/css/_common/components/third-party/pace.styl +18 -18
  91. package/source/css/_common/components/third-party/search.styl +167 -167
  92. package/source/css/_common/components/third-party/theme.styl +151 -151
  93. package/source/css/_common/components/third-party/third-party.styl +22 -22
  94. package/source/css/_common/components/third-party/widgets.styl +57 -57
  95. package/source/css/_common/outline/footer/footer.styl +67 -67
  96. package/source/css/_common/outline/header/brand.styl +77 -77
  97. package/source/css/_common/outline/header/header.styl +20 -20
  98. package/source/css/_common/outline/header/image.styl +85 -85
  99. package/source/css/_common/outline/header/menu.styl +117 -117
  100. package/source/css/_common/outline/header/nav.styl +81 -81
  101. package/source/css/_common/outline/header/right.styl +15 -15
  102. package/source/css/_common/outline/header/tool.styl +207 -207
  103. package/source/css/_common/outline/header/waves.styl +57 -57
  104. package/source/css/_common/outline/mobile.styl +46 -46
  105. package/source/css/_common/outline/outline.styl +78 -78
  106. package/source/css/_common/outline/sidebar/author.styl +59 -59
  107. package/source/css/_common/outline/sidebar/dimmer.styl +23 -23
  108. package/source/css/_common/outline/sidebar/menu.styl +63 -63
  109. package/source/css/_common/outline/sidebar/quick.styl +43 -43
  110. package/source/css/_common/outline/sidebar/related.styl +56 -56
  111. package/source/css/_common/outline/sidebar/sidebar.styl +82 -82
  112. package/source/css/_common/outline/sidebar/social.styl +69 -69
  113. package/source/css/_common/outline/sidebar/state.styl +37 -37
  114. package/source/css/_common/outline/sidebar/tab.styl +71 -71
  115. package/source/css/_common/outline/sidebar/toc.styl +47 -47
  116. package/source/css/_common/scaffolding/animate.styl +322 -322
  117. package/source/css/_common/scaffolding/base.styl +192 -190
  118. package/source/css/_common/scaffolding/buttons.styl +48 -48
  119. package/source/css/_common/scaffolding/divider.styl +36 -36
  120. package/source/css/_common/scaffolding/iconfont.styl +443 -443
  121. package/source/css/_common/scaffolding/normalize.styl +273 -273
  122. package/source/css/_common/scaffolding/pagination.styl +81 -81
  123. package/source/css/_common/scaffolding/ribbon.styl +38 -38
  124. package/source/css/_common/scaffolding/scaffolding.styl +14 -14
  125. package/source/css/_common/scaffolding/scrollbar.styl +37 -37
  126. package/source/css/_common/scaffolding/tables.styl +50 -50
  127. package/source/css/_common/scaffolding/tip.styl +19 -19
  128. package/source/css/_common/scaffolding/toggles.styl +59 -59
  129. package/source/css/_iconfont.styl +455 -455
  130. package/source/css/_mixins.styl +148 -148
  131. package/source/css/_variables.styl +89 -89
  132. package/source/css/app.styl +25 -25
  133. package/source/css/mermaid.styl +5 -5
  134. package/source/css/page.styl +2 -2
  135. package/source/css/post.styl +5 -5
  136. package/source/css/scaffolding.styl +4 -4
  137. package/source/js/_app/components/cloudflare.ts +18 -18
  138. package/source/js/_app/components/comments.ts +88 -86
  139. package/source/js/_app/components/sidebar.ts +243 -243
  140. package/source/js/_app/components/tcomments.ts +53 -53
  141. package/source/js/_app/globals/globalVars.ts +84 -84
  142. package/source/js/_app/globals/handles.ts +124 -124
  143. package/source/js/_app/globals/themeColor.ts +62 -62
  144. package/source/js/_app/globals/thirdparty.ts +63 -63
  145. package/source/js/_app/globals/tools.ts +73 -73
  146. package/source/js/_app/library/anime.ts +121 -121
  147. package/source/js/_app/library/declare.d.ts +128 -126
  148. package/source/js/_app/library/proto.ts +70 -70
  149. package/source/js/_app/library/vue.ts +49 -49
  150. package/source/js/_app/page/common.ts +41 -41
  151. package/source/js/_app/page/imageviewer.ts +15 -15
  152. package/source/js/_app/page/post.ts +252 -248
  153. package/source/js/_app/page/search.ts +109 -109
  154. package/source/js/_app/page/tab.ts +59 -59
  155. package/source/js/_app/pjax/domInit.ts +102 -102
  156. package/source/js/_app/pjax/refresh.ts +117 -117
  157. package/source/js/_app/pjax/siteInit.ts +90 -90
  158. package/source/js/_app/player.ts +13 -13
  159. package/toolbox/compiler.mjs +49 -53
  160. package/toolbox/dev-version.mjs +14 -14
  161. package/toolbox/hoistdep.mjs +5 -5
  162. package/toolbox/lib.mjs +63 -63
  163. package/source/css/_common/components/highlight/highlight.styl +0 -357
  164. package/source/css/_common/components/highlight/operation.styl +0 -21
@@ -1,19 +1,19 @@
1
- # Override Default Translations
2
-
3
- If you would like to customize the default translation, you do not need to modify the translation files in the `languages` directory. You can override all translations using [Data Files](https://hexo.io/docs/data-files).
4
-
5
- 1. Creat a `languages.yml` in `source/_data`.
6
- 2. Insert following codes: (be careful about the two-space indent)
7
-
8
- ```yml
9
- # language
10
- zh-CN:
11
- # items
12
- post:
13
- copyright:
14
- # the translation you perfer
15
- author: 本文博主
16
- en:
17
- menu:
18
- schedule: Calendar
19
- ```
1
+ # Override Default Translations
2
+
3
+ If you would like to customize the default translation, you do not need to modify the translation files in the `languages` directory. You can override all translations using [Data Files](https://hexo.io/docs/data-files).
4
+
5
+ 1. Creat a `languages.yml` in `source/_data`.
6
+ 2. Insert following codes: (be careful about the two-space indent)
7
+
8
+ ```yml
9
+ # language
10
+ zh-CN:
11
+ # items
12
+ post:
13
+ copyright:
14
+ # the translation you perfer
15
+ author: 本文博主
16
+ en:
17
+ menu:
18
+ schedule: Calendar
19
+ ```
@@ -1 +1 @@
1
- en.yml
1
+ en.yml
package/languages/en.yml CHANGED
@@ -1,155 +1,155 @@
1
- name: English
2
-
3
- favicon:
4
- show: (●´3`●) Here we go again.
5
- hide: (´Д`) It's a disaster!
6
-
7
- title:
8
- archive: Archive
9
- category: Category
10
- tag: Tag
11
- all: All
12
- not_found: Σ( ° △ °|||)︴404! Nothing can be seen
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
- census: Blog Visits Statistics
26
- aboutsite: About This Site
27
- updata: Update Log
28
- statistics: Statistics
29
- admiration: Appreciation
30
- friends: Friends
31
- privacy: Privacy Policy
32
-
33
- sidebar:
34
- overview: Overview
35
- toc: Contents
36
- related: Related
37
-
38
- index:
39
- sticky: Sticky Posts
40
- category: Categories
41
- posts: Post List
42
- random_posts: Random Posts
43
- recent_comments: Recent Comments
44
-
45
- post:
46
- posted: Posted on
47
- edited: Edited on
48
- created: Created
49
- modified: Modified
50
- edit: Edit this post
51
- in: In
52
- read_more: Read more
53
- untitled: Untitled
54
- sticky: Sticky
55
- views: Views
56
- related_posts: Related Posts
57
- next: Next Post
58
- prev: Previous Post
59
- copyright:
60
- author: Post author
61
- link: Post link
62
- license_title: Copyright Notice
63
- license_content: "All articles in this blog are licensed under %s unless stating additionally."
64
- nocopy: "<span class=\"red\">This page is prohibited reprint.</span>"
65
-
66
- footer:
67
- powered: "Powered by %s"
68
- total_views: Total Views
69
- total_visitors: Total Visitors
70
- loading: "Loading..."
71
-
72
- counter:
73
- index:
74
- post: "%d posts in total"
75
- category: "%d subcategories in total, "
76
- tag_cloud:
77
- zero: No tags
78
- one: 1 tag in total
79
- other: "%d tags in total"
80
- categories:
81
- zero: No categories
82
- one: 1 category in total
83
- other: "%d categories in total"
84
- archive_posts:
85
- zero: No posts.
86
- one: 1 post.
87
- other: "%d posts in total."
88
-
89
- state:
90
- posts: posts
91
- tags: tags
92
- categories: categories
93
-
94
- search:
95
- placeholder: Search for Posts
96
- empty: "We didn't find any results for the search: ${query}"
97
- stats: "${hits} results found in ${time} ms"
98
-
99
- cheers:
100
- um: Um..
101
- ok: OK
102
- nice: Nice
103
- good: Good
104
- great: Great
105
- excellent: Excellent
106
-
107
- keep_on: Keep on posting.
108
-
109
- symbol:
110
- comma: ", "
111
- period: ". "
112
- colon: ": "
113
- space: " "
114
- year: "Y"
115
- month: "M"
116
-
117
- reward:
118
- donate: Donate
119
- text: Give me a cup of [coffee]~( ̄▽ ̄)~*
120
- wechatpay: WeChat Pay
121
- alipay: Alipay
122
- paypal: PayPal
123
- bitcoin: Bitcoin
124
-
125
- follow_me:
126
- welcome: Welcome to my other publishing channels
127
-
128
- accessibility:
129
- nav_toggle: Toggle navigation bar
130
- prev_page: Previous page
131
- next_page: Next page
132
-
133
- symbols_count_time:
134
- count: Symbols count in article
135
- count_total: Symbols count total
136
- time: Reading time
137
- time_total: Reading time total
138
- time_minutes: mins.
139
- word: words
140
- view: times
141
-
142
- tips:
143
- copyright: "Copied to clipboard successfully! <br> All articles in this blog are licensed under %s."
144
- nocopy: "Copied to clipboard failed! This page is prohibited reprint."
145
-
146
- quiz:
147
- choice: Multiple Choice
148
- multiple: Multiple Answer
149
- true_false: True/False
150
- essay: Questions
151
- gap_fill: Gap Filling
152
- mistake: Wrong Answer
153
-
154
- outime:
155
- 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>"
1
+ name: English
2
+
3
+ favicon:
4
+ show: (●´3`●) Here we go again.
5
+ hide: (´Д`) It's a disaster!
6
+
7
+ title:
8
+ archive: Archive
9
+ category: Category
10
+ tag: Tag
11
+ all: All
12
+ not_found: Σ( ° △ °|||)︴404! Nothing can be seen
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
+ census: Blog Visits Statistics
26
+ aboutsite: About This Site
27
+ updata: Update Log
28
+ statistics: Statistics
29
+ admiration: Appreciation
30
+ friends: Friends
31
+ privacy: Privacy Policy
32
+
33
+ sidebar:
34
+ overview: Overview
35
+ toc: Contents
36
+ related: Related
37
+
38
+ index:
39
+ sticky: Sticky Posts
40
+ category: Categories
41
+ posts: Post List
42
+ random_posts: Random Posts
43
+ recent_comments: Recent Comments
44
+
45
+ post:
46
+ posted: Posted on
47
+ edited: Edited on
48
+ created: Created
49
+ modified: Modified
50
+ edit: Edit this post
51
+ in: In
52
+ read_more: Read more
53
+ untitled: Untitled
54
+ sticky: Sticky
55
+ views: Views
56
+ related_posts: Related Posts
57
+ next: Next Post
58
+ prev: Previous Post
59
+ copyright:
60
+ author: Post author
61
+ link: Post link
62
+ license_title: Copyright Notice
63
+ license_content: "All articles in this blog are licensed under %s unless stating additionally."
64
+ nocopy: "<span class=\"red\">This page is prohibited reprint.</span>"
65
+
66
+ footer:
67
+ powered: "Powered by %s"
68
+ total_views: Total Views
69
+ total_visitors: Total Visitors
70
+ loading: "Loading..."
71
+
72
+ counter:
73
+ index:
74
+ post: "%d posts in total"
75
+ category: "%d subcategories in total, "
76
+ tag_cloud:
77
+ zero: No tags
78
+ one: 1 tag in total
79
+ other: "%d tags in total"
80
+ categories:
81
+ zero: No categories
82
+ one: 1 category in total
83
+ other: "%d categories in total"
84
+ archive_posts:
85
+ zero: No posts.
86
+ one: 1 post.
87
+ other: "%d posts in total."
88
+
89
+ state:
90
+ posts: posts
91
+ tags: tags
92
+ categories: categories
93
+
94
+ search:
95
+ placeholder: Search for Posts
96
+ empty: "We didn't find any results for the search: ${query}"
97
+ stats: "${hits} results found in ${time} ms"
98
+
99
+ cheers:
100
+ um: Um..
101
+ ok: OK
102
+ nice: Nice
103
+ good: Good
104
+ great: Great
105
+ excellent: Excellent
106
+
107
+ keep_on: Keep on posting.
108
+
109
+ symbol:
110
+ comma: ", "
111
+ period: ". "
112
+ colon: ": "
113
+ space: " "
114
+ year: "Y"
115
+ month: "M"
116
+
117
+ reward:
118
+ donate: Donate
119
+ text: Give me a cup of [coffee]~( ̄▽ ̄)~*
120
+ wechatpay: WeChat Pay
121
+ alipay: Alipay
122
+ paypal: PayPal
123
+ bitcoin: Bitcoin
124
+
125
+ follow_me:
126
+ welcome: Welcome to my other publishing channels
127
+
128
+ accessibility:
129
+ nav_toggle: Toggle navigation bar
130
+ prev_page: Previous page
131
+ next_page: Next page
132
+
133
+ symbols_count_time:
134
+ count: Symbols count in article
135
+ count_total: Symbols count total
136
+ time: Reading time
137
+ time_total: Reading time total
138
+ time_minutes: mins.
139
+ word: words
140
+ view: times
141
+
142
+ tips:
143
+ copyright: "Copied to clipboard successfully! <br> All articles in this blog are licensed under %s."
144
+ nocopy: "Copied to clipboard failed! This page is prohibited reprint."
145
+
146
+ quiz:
147
+ choice: Multiple Choice
148
+ multiple: Multiple Answer
149
+ true_false: True/False
150
+ essay: Questions
151
+ gap_fill: Gap Filling
152
+ mistake: Wrong Answer
153
+
154
+ outime:
155
+ 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>"
package/languages/ja.yml CHANGED
@@ -1,155 +1,155 @@
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
- privacy: プライバシーポリシー
32
-
33
- sidebar:
34
- overview: 概要
35
- toc: 見出し
36
- related: 関連記事
37
-
38
- index:
39
- sticky: 固定記事
40
- category: 注目のカテゴリ
41
- posts: 記事のリスト
42
- random_posts: ランダムな記事
43
- recent_comments: 最近のコメント
44
-
45
- post:
46
- posted: 投稿日
47
- edited: 編集日
48
- created: 作成日
49
- modified: 修正日
50
- edit: この記事を編集する
51
- in: カテゴリ
52
- read_more: 続きを読む
53
- untitled: 無題
54
- sticky: 固定
55
- views: 閲覧数
56
- related_posts: 関連記事
57
- next: 次の記事
58
- prev: 前の記事
59
- copyright:
60
- author: 著者
61
- link: 記事へのリンク
62
- license_title: 著作権表示
63
- license_content: "このブログ内のすべての記事は、特別な記載がない限り %s の下のライセンスで保護されています。"
64
- nocopy: "<span class=\"red\">再印刷は禁止されています。</span>"
65
-
66
- footer:
67
- powered: "Powered by %s"
68
- total_views: 閲覧合計数
69
- total_visitors: 合計閲覧者数
70
- loading: "ローディング..."
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
- space: " "
114
- year: 年
115
- month: 月
116
-
117
- reward:
118
- donate: 寄付
119
- text: "*~( ̄▽ ̄)~[お茶]を一杯ください"
120
- wechatpay: WeChat 支払う
121
- alipay: Alipay
122
- paypal: PayPal
123
- bitcoin: ビットコイン
124
-
125
- follow_me:
126
- welcome: Welcome to my other publishing channels
127
-
128
- accessibility:
129
- nav_toggle: ナビゲーションバーの切り替え
130
- prev_page: 前のページ
131
- next_page: 次のページ
132
-
133
- symbols_count_time:
134
- count: 単語数
135
- count_total: 単語の総数
136
- time: 読書の時間
137
- time_total: 読書の合計時間
138
- time_minutes: 分
139
- word: 単語
140
- view: 回
141
-
142
- tips:
143
- copyright: "コピーは成功しました。 <br> 再印刷については、 %s 契約に従ってください。"
144
- nocopy: "コピーに失敗しました。 <br> 再印刷は禁止されています。"
145
-
146
- quiz:
147
- choice: 選択
148
- multiple: 複数選択
149
- true_false: 正誤
150
- essay: 問答
151
- gap_fill: 空欄
152
- mistake: 間違った答え
153
-
154
- outime:
155
- template: "<div class=\"note warning\"><p><span class=\"label warning\">記事の適時性の警告</span><br> {{publish}} 日前に公開され、 {{updated}} 日前に最終更新された記事です。 一部情報が変更されている可能性がありますので、ご了承ください。</p></div>"
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
+ privacy: プライバシーポリシー
32
+
33
+ sidebar:
34
+ overview: 概要
35
+ toc: 見出し
36
+ related: 関連記事
37
+
38
+ index:
39
+ sticky: 固定記事
40
+ category: 注目のカテゴリ
41
+ posts: 記事のリスト
42
+ random_posts: ランダムな記事
43
+ recent_comments: 最近のコメント
44
+
45
+ post:
46
+ posted: 投稿日
47
+ edited: 編集日
48
+ created: 作成日
49
+ modified: 修正日
50
+ edit: この記事を編集する
51
+ in: カテゴリ
52
+ read_more: 続きを読む
53
+ untitled: 無題
54
+ sticky: 固定
55
+ views: 閲覧数
56
+ related_posts: 関連記事
57
+ next: 次の記事
58
+ prev: 前の記事
59
+ copyright:
60
+ author: 著者
61
+ link: 記事へのリンク
62
+ license_title: 著作権表示
63
+ license_content: "このブログ内のすべての記事は、特別な記載がない限り %s の下のライセンスで保護されています。"
64
+ nocopy: "<span class=\"red\">再印刷は禁止されています。</span>"
65
+
66
+ footer:
67
+ powered: "Powered by %s"
68
+ total_views: 閲覧合計数
69
+ total_visitors: 合計閲覧者数
70
+ loading: "ローディング..."
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
+ space: " "
114
+ year: 年
115
+ month: 月
116
+
117
+ reward:
118
+ donate: 寄付
119
+ text: "*~( ̄▽ ̄)~[お茶]を一杯ください"
120
+ wechatpay: WeChat 支払う
121
+ alipay: Alipay
122
+ paypal: PayPal
123
+ bitcoin: ビットコイン
124
+
125
+ follow_me:
126
+ welcome: Welcome to my other publishing channels
127
+
128
+ accessibility:
129
+ nav_toggle: ナビゲーションバーの切り替え
130
+ prev_page: 前のページ
131
+ next_page: 次のページ
132
+
133
+ symbols_count_time:
134
+ count: 単語数
135
+ count_total: 単語の総数
136
+ time: 読書の時間
137
+ time_total: 読書の合計時間
138
+ time_minutes: 分
139
+ word: 単語
140
+ view: 回
141
+
142
+ tips:
143
+ copyright: "コピーは成功しました。 <br> 再印刷については、 %s 契約に従ってください。"
144
+ nocopy: "コピーに失敗しました。 <br> 再印刷は禁止されています。"
145
+
146
+ quiz:
147
+ choice: 選択
148
+ multiple: 複数選択
149
+ true_false: 正誤
150
+ essay: 問答
151
+ gap_fill: 空欄
152
+ mistake: 間違った答え
153
+
154
+ outime:
155
+ template: "<div class=\"note warning\"><p><span class=\"label warning\">記事の適時性の警告</span><br> {{publish}} 日前に公開され、 {{updated}} 日前に最終更新された記事です。 一部情報が変更されている可能性がありますので、ご了承ください。</p></div>"