@jx3box/jx3box-ui 2.0.5 → 2.0.7
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.
- package/.storybook/preview.js +22 -13
- package/.storybook/storybookMocks.js +214 -0
- package/README.md +39 -43
- package/assets/css/bread/admin.less +20 -2
- package/assets/css/bread/breadcrumb.less +5 -2
- package/assets/css/comment/quick-reply.less +1 -1
- package/assets/css/common/left-sidebar.less +1 -1
- package/assets/css/interact/like2.less +5 -2
- package/assets/css/interact/qrcode.less +69 -0
- package/assets/css/single/author.less +15 -10
- package/assets/css/single/cms-single.less +1 -0
- package/assets/css/single/thx.less +34 -11
- package/assets/css/wiki/wiki-comments.less +176 -0
- package/assets/css/wiki/wiki-panel.less +177 -0
- package/assets/css/wiki/wiki-revisions.less +62 -0
- package/assets/data/nav.json +344 -10
- package/assets/img/comment/comment.svg +1 -1
- package/assets/img/comment/heart_1.svg +1 -1
- package/assets/img/comment/hide.svg +1 -1
- package/assets/img/leftsidebar/medal.svg +1 -1
- package/assets/img/leftsidebar/post.svg +27 -46
- package/i18n/messages/en-US.js +357 -22
- package/i18n/messages/vi.js +350 -22
- package/i18n/messages/zh-CN.js +469 -20
- package/i18n/messages/zh-TW.js +350 -22
- package/index.js +19 -7
- package/package.json +8 -5
- package/service/cms.js +22 -0
- package/service/commit-history.js +18 -0
- package/service/community.js +60 -0
- package/service/fav.js +5 -6
- package/src/App.vue +210 -80
- package/src/Breadcrumb.vue +24 -11
- package/src/CommonFooter.vue +2 -2
- package/src/Footer.vue +13 -5
- package/src/LeftSideToggle.vue +10 -3
- package/src/LeftSidebar.vue +19 -5
- package/src/Main.vue +9 -2
- package/src/RightSidebar.vue +12 -3
- package/src/SuspendCommon.vue +52 -38
- package/src/author/AuthorFans.vue +7 -5
- package/src/author/AuthorFollow.vue +14 -7
- package/src/author/AuthorGift.vue +25 -17
- package/src/author/AuthorInfo.vue +46 -19
- package/src/author/AuthorLink.vue +3 -1
- package/src/author/AuthorMedals.vue +5 -2
- package/src/author/AuthorPosts.vue +31 -13
- package/src/author/AuthorRss.vue +7 -3
- package/src/author/AuthorTeams.vue +3 -1
- package/src/author/UserPop.vue +29 -17
- package/src/bread/Admin.vue +55 -32
- package/src/bread/AdminDirectMessage.vue +15 -8
- package/src/bread/AdminDrop.vue +124 -45
- package/src/bread/CommunityAdmin.vue +527 -0
- package/src/bread/DesignTask.vue +30 -26
- package/src/bread/ListAdmin.vue +199 -0
- package/src/bread/MigrateCommunity.vue +192 -0
- package/src/bread/MoveToCommunityDialog.vue +234 -0
- package/src/comment/Avatar.vue +18 -24
- package/src/comment/CommentContent.vue +57 -37
- package/src/comment/CommentContentSimple.vue +61 -63
- package/src/comment/CommentInputForm.vue +45 -34
- package/src/comment/CommentWithReply.vue +9 -6
- package/src/comment/QuickReply.vue +5 -1
- package/src/comment/ReplyForReply.vue +6 -4
- package/src/comment/ReplyList.vue +28 -18
- package/src/comment/Upload.vue +24 -6
- package/src/filters/clientBy.vue +10 -8
- package/src/filters/markBy.vue +35 -31
- package/src/filters/menuBy.vue +20 -22
- package/src/filters/orderBy.vue +17 -11
- package/src/filters/tagBy.vue +4 -2
- package/src/filters/topicBy.vue +12 -10
- package/src/filters/versionBy.vue +5 -3
- package/src/filters/zlpBy.vue +29 -25
- package/src/footer/copyright.vue +5 -5
- package/src/footer/links.vue +2 -2
- package/src/footer/official.vue +1 -1
- package/src/footer/resource.vue +6 -6
- package/src/header/alternate.vue +35 -18
- package/src/header/asset.vue +9 -19
- package/src/header/box.vue +20 -8
- package/src/header/box2.vue +16 -9
- package/src/header/client.vue +7 -7
- package/src/header/lang.vue +41 -6
- package/src/header/logo.vue +2 -3
- package/src/header/manage.vue +2 -2
- package/src/header/message.vue +3 -3
- package/src/header/nav.vue +26 -23
- package/src/header/publish.vue +2 -2
- package/src/header/search.vue +2 -2
- package/src/header/shop.vue +2 -2
- package/src/header/user.vue +4 -4
- package/src/header/userInfo.vue +22 -24
- package/src/header/vip.vue +2 -2
- package/src/interact/BoxcoinAdmin.vue +30 -16
- package/src/interact/BoxcoinRecords.vue +28 -11
- package/src/interact/BoxcoinUser.vue +33 -17
- package/src/interact/Fav.vue +5 -1
- package/src/interact/Homework.vue +317 -0
- package/src/interact/Like.vue +4 -2
- package/src/interact/QRcode.vue +104 -0
- package/src/interact/Rss.vue +10 -4
- package/src/interact/Share.vue +18 -19
- package/src/interact/WatchLater.vue +5 -1
- package/src/main.js +1 -0
- package/src/single/Author.vue +5 -1
- package/src/single/CmsSingle.vue +29 -15
- package/src/single/Collection.vue +36 -26
- package/src/single/Comment.vue +19 -13
- package/src/single/Creators.vue +5 -3
- package/src/single/PostCollection.vue +158 -0
- package/src/single/PostDirectory.vue +0 -126
- package/src/single/PostGuide.vue +93 -0
- package/src/single/PostHeader.vue +39 -17
- package/src/single/PostTopic.vue +3 -3
- package/src/single/PostVersion.vue +219 -0
- package/src/single/RightAffix.vue +160 -0
- package/src/single/SimpleThx.vue +4 -2
- package/src/single/Thx.vue +14 -2
- package/src/single/VersionDialog.vue +238 -0
- package/src/stories/components/StoryPropsTable.vue +137 -0
- package/src/stories/filters/FilterGallery.stories.js +110 -0
- package/src/stories/filters/clientBy.stories.js +24 -0
- package/src/stories/filters/markBy.stories.js +6 -0
- package/src/stories/filters/menuBy.stories.js +6 -0
- package/src/stories/filters/orderBy.stories.js +6 -0
- package/src/stories/filters/tagBy.stories.js +6 -0
- package/src/stories/filters/topicBy.stories.js +6 -0
- package/src/stories/filters/versionBy.stories.js +6 -0
- package/src/stories/filters/zlpBy.stories.js +6 -0
- package/src/stories/interact/QRcode.stories.js +59 -0
- package/src/stories/layout/BaseShell.stories.js +38 -0
- package/src/stories/layout/Breadcrumb.stories.js +40 -0
- package/src/stories/layout/CommonFooter.stories.js +1 -1
- package/src/stories/layout/CommonHeader.stories.js +1 -1
- package/src/stories/layout/LeftSideToggle.stories.js +78 -0
- package/src/stories/layout/LeftSidebar.stories.js +40 -0
- package/src/stories/layout/Main.stories.js +41 -0
- package/src/stories/layout/RightSidebar.stories.js +36 -0
- package/src/stories/layout/StorybookShell.vue +271 -0
- package/src/stories/layout/SuspendCommon.stories.js +67 -0
- package/src/stories/layout/SuspendCommonStage.vue +143 -0
- package/src/stories/mockData.js +369 -0
- package/src/stories/other/UserPop.stories.js +51 -0
- package/src/stories/single/Author.stories.js +19 -0
- package/src/stories/single/AuthorStoryStage.vue +103 -0
- package/src/stories/single/CmsSingle.stories.js +19 -0
- package/src/stories/single/CmsSingleStoryStage.vue +118 -0
- package/src/stories/single/Collection.stories.js +34 -0
- package/src/stories/single/Comment.stories.js +36 -0
- package/src/stories/single/Creators.stories.js +34 -0
- package/src/stories/single/PostCollection.stories.js +34 -0
- package/src/stories/single/PostDirectory.stories.js +31 -0
- package/src/stories/single/PostGuide.stories.js +47 -0
- package/src/stories/single/PostHeader.stories.js +39 -0
- package/src/stories/single/PostVersion.stories.js +41 -0
- package/src/stories/single/RightAffix.stories.js +84 -0
- package/src/stories/single/SimpleThx.stories.js +39 -0
- package/src/stories/single/SingleGallery.stories.js +207 -0
- package/src/stories/single/Thx.stories.js +38 -0
- package/src/stories/wiki/GamePrice.stories.js +64 -0
- package/src/stories/wiki/WikiComments.stories.js +58 -0
- package/src/stories/wiki/WikiPanel.stories.js +69 -0
- package/src/stories/wiki/WikiRevisions.stories.js +47 -0
- package/src/wiki/GamePrice.vue +107 -0
- package/src/wiki/WikiComment.vue +153 -0
- package/src/wiki/WikiComments.vue +206 -0
- package/src/wiki/WikiPanel.vue +121 -0
- package/src/wiki/WikiRevisions.vue +125 -0
- package/vue.config.js +2 -12
- package/assets/css/common/bottom.less +0 -25
- package/assets/css/editor/article.less +0 -36
- package/assets/css/editor/combo.less +0 -362
- package/assets/css/editor/resource.less +0 -399
- package/assets/css/editor/tinymce.less +0 -100
- package/assets/css/editor/upload.less +0 -136
- package/assets/css/module/author.less +0 -231
- package/assets/css/module/buff.less +0 -88
- package/assets/css/module/directory.less +0 -165
- package/assets/css/module/icon.less +0 -25
- package/assets/css/module/item.less +0 -279
- package/assets/css/module/item_simple.less +0 -58
- package/assets/css/module/jx3_element.less +0 -5
- package/assets/css/module/macro.less +0 -89
- package/assets/css/module/npc.less +0 -265
- package/assets/css/module/resource.less +0 -93
- package/assets/css/module/skill.less +0 -74
- package/assets/css/module/talent.less +0 -495
- package/assets/js/a.js +0 -46
- package/assets/js/code.js +0 -13
- package/assets/js/combo.js +0 -40
- package/assets/js/directory.js +0 -114
- package/assets/js/filter2.js +0 -186
- package/assets/js/fold.js +0 -11
- package/assets/js/gallery.js +0 -14
- package/assets/js/hljs_languages.js +0 -177
- package/assets/js/iframe.js +0 -38
- package/assets/js/img.js +0 -23
- package/assets/js/item/attribute_percent.js +0 -88
- package/assets/js/item/bind.js +0 -18
- package/assets/js/item/border.js +0 -19
- package/assets/js/item/border_quest.js +0 -12
- package/assets/js/item/color.js +0 -25
- package/assets/js/item/hljs_languages.js +0 -177
- package/assets/js/item/icon_url.js +0 -15
- package/assets/js/item/second_format.js +0 -19
- package/assets/js/jx3_element.js +0 -73
- package/assets/js/katex.js +0 -181
- package/assets/js/macro.js +0 -16
- package/assets/js/nextpage.js +0 -4
- package/assets/js/pswp.js +0 -67
- package/assets/js/pswp_template.js +0 -66
- package/assets/js/pz_iframe.js +0 -30
- package/assets/js/qixue.js +0 -28
- package/assets/js/renderImgPreview.js +0 -18
- package/assets/js/script.js +0 -6
- package/assets/js/stat.js +0 -107
- package/assets/js/talent2.js +0 -21
- package/assets/js/tex-mml-chtml.js +0 -36310
- package/assets/js/voice.js +0 -238
- package/assets/js/xss.js +0 -130
- package/src/editor/Article.vue +0 -230
- package/src/editor/BoxResource.vue +0 -441
- package/src/editor/Resource.vue +0 -623
- package/src/editor/Tinymce.vue +0 -204
- package/src/editor/Upload.vue +0 -277
- package/src/editor/UploadAlum.vue +0 -176
- package/src/editor/UploadBanner.vue +0 -156
- package/src/editor/components/Author.vue +0 -322
- package/src/editor/components/Avatar.vue +0 -95
- package/src/editor/components/Buff.vue +0 -80
- package/src/editor/components/Combo.vue +0 -259
- package/src/editor/components/Equip.vue +0 -299
- package/src/editor/components/GameText.vue +0 -242
- package/src/editor/components/Item.vue +0 -325
- package/src/editor/components/ItemSimple.vue +0 -134
- package/src/editor/components/Medal.vue +0 -43
- package/src/editor/components/Npc.vue +0 -215
- package/src/editor/components/PostAuthor.vue +0 -102
- package/src/editor/components/Skill.vue +0 -71
package/i18n/messages/en-US.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default {
|
|
2
|
-
|
|
2
|
+
commonHeader: {
|
|
3
3
|
vipCenter: "VIP Center",
|
|
4
4
|
createCenter: "Creator Center",
|
|
5
5
|
messageCenter: "Messages",
|
|
@@ -56,8 +56,64 @@ export default {
|
|
|
56
56
|
manageCenter: "Admin",
|
|
57
57
|
},
|
|
58
58
|
all: "All",
|
|
59
|
+
|
|
60
|
+
alternate: {
|
|
61
|
+
title: "Switch Alt",
|
|
62
|
+
userNickname: "Nickname: ",
|
|
63
|
+
lastLogin: "Last login: ",
|
|
64
|
+
expired: "(Expired)",
|
|
65
|
+
expiredNeedRelogin: "This alt is expired. Please log in again.",
|
|
66
|
+
switchConfirm: "Switch to this alt?",
|
|
67
|
+
deleteConfirm: "Delete this alt?",
|
|
68
|
+
maxFive: "You can add up to 5 alts.",
|
|
69
|
+
},
|
|
70
|
+
nav: {
|
|
71
|
+
index: "Home",
|
|
72
|
+
macro: "Macros",
|
|
73
|
+
macro_index: "All Class Macros",
|
|
74
|
+
pz: "Gear Builder",
|
|
75
|
+
talent: "Talent Simulator",
|
|
76
|
+
talent2: "School Skill Simulator",
|
|
77
|
+
macroeditor: "Macro Editor",
|
|
78
|
+
bps: "Class",
|
|
79
|
+
bps_post: "Class Guides",
|
|
80
|
+
jcl: "Combat Analysis",
|
|
81
|
+
battle: "Combat Stats",
|
|
82
|
+
superstar: "Class Stars",
|
|
83
|
+
pvp: "PvP",
|
|
84
|
+
yanxi: "Martial Study",
|
|
85
|
+
desert: "Battle Royale",
|
|
86
|
+
sandbox: "Sandbox Lookup",
|
|
87
|
+
changelog: "Balance History",
|
|
88
|
+
fb: "Dungeon",
|
|
89
|
+
fb_post: "Dungeon Guides",
|
|
90
|
+
baizhan: "Baizhan Lookup",
|
|
91
|
+
bhhj: "Bahuang Simulator",
|
|
92
|
+
team: "Team Platform",
|
|
93
|
+
jdt: "Top 100 Dungeons",
|
|
94
|
+
wiki: "Wiki",
|
|
95
|
+
cj: "Achievement Wiki",
|
|
96
|
+
item: "Item Wiki",
|
|
97
|
+
quest: "Quest Wiki",
|
|
98
|
+
knowledge: "General Wiki",
|
|
99
|
+
pvx: "Casual",
|
|
100
|
+
face: "Appearance Data",
|
|
101
|
+
adventure: "Adventure Compendium",
|
|
102
|
+
gonggao: "Event Notices",
|
|
103
|
+
price: "Price Trends",
|
|
104
|
+
tool: "Tools",
|
|
105
|
+
tool_post: "Tutorial Resources",
|
|
106
|
+
dbm: "Addon Data",
|
|
107
|
+
database: "Data Library",
|
|
108
|
+
design: "Art Resources",
|
|
109
|
+
bbs: "Community",
|
|
110
|
+
topic: "Game Topics",
|
|
111
|
+
event: "Event Topics",
|
|
112
|
+
namespace: "JX3.com",
|
|
113
|
+
jx3pve: "JX3PVE Legacy",
|
|
114
|
+
},
|
|
59
115
|
},
|
|
60
|
-
|
|
116
|
+
commonFooter: {
|
|
61
117
|
slogan1: "All-in-one tools & resources for JX3.",
|
|
62
118
|
slogan2: "Long roads ahead, glad to have you here.",
|
|
63
119
|
downloadCenter: "Downloads",
|
|
@@ -104,25 +160,304 @@ export default {
|
|
|
104
160
|
cancel: "Cancel",
|
|
105
161
|
tip: "Tip",
|
|
106
162
|
},
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
163
|
+
footer: { icp: "ICP: 湘ICP备2021002288号", about: "About", doc: "Docs", repo: "Repository", feedback: "Feedback" },
|
|
164
|
+
breadcrumb: { publish: "Publish", feedback: "Feedback" },
|
|
165
|
+
box2: { title: "Box Matrix", searchPlaceholder: "Search apps", empty: "No matching apps found" },
|
|
166
|
+
user: { register: "Register", login: "Log in" },
|
|
167
|
+
nav: { quickNav: "Quick Nav" },
|
|
168
|
+
leftSidebar: { collapse: "Collapse sidebar", expand: "Open sidebar" },
|
|
169
|
+
rightSidebar: { collapse: "Collapse sidebar", expand: "Open sidebar" },
|
|
170
|
+
author: { message: "Message" },
|
|
171
|
+
authorInfo: {
|
|
172
|
+
superAuthor: "Signed Author",
|
|
173
|
+
unknown: "Unknown",
|
|
174
|
+
mysterious: "Mysterious Hero",
|
|
175
|
+
experience: "EXP: {value}",
|
|
176
|
+
proVip: "Pro Membership",
|
|
177
|
+
preVip: "Premium Membership",
|
|
178
|
+
},
|
|
179
|
+
authorPosts: { latest: "Latest Posts", noTitle: "{type}/Untitled" },
|
|
180
|
+
authorFans: {
|
|
181
|
+
title: "Fans",
|
|
182
|
+
summary: "Rewarded {count} BoxCoin",
|
|
183
|
+
fansCount: "Fans: {count}",
|
|
184
|
+
boxcoinCount: ", Total BoxCoin received: {count}",
|
|
185
|
+
},
|
|
186
|
+
authorMedals: { title: "Honors" },
|
|
187
|
+
authorTeams: { title: "Teams" },
|
|
188
|
+
authorFollow: {
|
|
189
|
+
followed: "Following",
|
|
190
|
+
follow: "Follow",
|
|
191
|
+
unfollow: "Unfollow",
|
|
192
|
+
followSuccess: "Followed successfully",
|
|
193
|
+
confirmUnfollow: "Stop following this user?",
|
|
194
|
+
unfollowSuccess: "Unfollowed successfully",
|
|
195
|
+
},
|
|
196
|
+
authorGift: {
|
|
197
|
+
button: "Gift",
|
|
198
|
+
dialogTitle: "Send Gift",
|
|
199
|
+
leaf: "Gold Leaf",
|
|
200
|
+
recharge: "Top up",
|
|
201
|
+
give: "Send",
|
|
202
|
+
remark: "Message",
|
|
203
|
+
remarkPlaceholder: "Enter a message (required)",
|
|
204
|
+
defaultRemark: "Thanks for your hard work!",
|
|
205
|
+
selfDisabled: "You cannot send gifts to yourself",
|
|
206
|
+
statusDisabled: "This author is not accepting gifts",
|
|
207
|
+
processing: "Processing",
|
|
208
|
+
success: "Gift sent successfully",
|
|
209
|
+
busy: "The transaction is busy. Please try again later.",
|
|
210
|
+
},
|
|
211
|
+
authorRss: { followed: "Following", follow: "Follow", followSuccess: "Followed successfully", success: "Success" },
|
|
212
|
+
authorLink: { roomId: "Room ID: {id}" },
|
|
213
|
+
userPop: {
|
|
214
|
+
placeholder: "Search by user UID or nickname",
|
|
215
|
+
search: "Search",
|
|
216
|
+
notFound: "No match found",
|
|
217
|
+
empty: "Please enter a search keyword",
|
|
218
|
+
invalid: "User does not exist or UID is invalid",
|
|
219
|
+
alertTitle: "Notice",
|
|
220
|
+
},
|
|
221
|
+
boxcoinAdmin: {
|
|
222
|
+
tooltip: "Appraise",
|
|
223
|
+
dialogTitle: "Appraisal Score",
|
|
224
|
+
monthStatus: "This Month",
|
|
225
|
+
monthSummary: "Used {used} Remaining {left} Total {total}",
|
|
226
|
+
appraise: "Appraise",
|
|
227
|
+
boxcoin: "BoxCoin",
|
|
228
|
+
custom: "Custom",
|
|
229
|
+
customPlaceholder: "Enter custom amount",
|
|
230
|
+
remark: "Message",
|
|
231
|
+
remarkPlaceholder: "Enter a message (required)",
|
|
232
|
+
insertCurrentRelease: "Insert current version",
|
|
233
|
+
defaultRemark: "Thanks for your hard work!",
|
|
234
|
+
success: "Success",
|
|
235
|
+
fetchFailed: "Failed to fetch",
|
|
236
|
+
},
|
|
237
|
+
boxcoinUser: {
|
|
238
|
+
tooltip: "Reward",
|
|
239
|
+
disabledTooltip: "Your current level is not high enough to send BoxCoin.",
|
|
240
|
+
dialogTitle: "BoxCoin Reward",
|
|
241
|
+
currentBoxcoin: "Current BoxCoin",
|
|
242
|
+
recharge: "Top up",
|
|
243
|
+
reward: "Reward",
|
|
244
|
+
boxcoin: "BoxCoin",
|
|
245
|
+
custom: "Custom",
|
|
246
|
+
customPlaceholder: "Enter custom amount",
|
|
247
|
+
remark: "Message",
|
|
248
|
+
remarkPlaceholder: "Enter a message (required)",
|
|
249
|
+
defaultRemark: "Thank you so much!",
|
|
250
|
+
success: "Success",
|
|
251
|
+
},
|
|
252
|
+
boxcoinRecords: {
|
|
253
|
+
participant: "Sender",
|
|
254
|
+
author: "Author",
|
|
255
|
+
boxcoin: "BoxCoin",
|
|
256
|
+
remark: "Message",
|
|
257
|
+
reward: "Reward",
|
|
258
|
+
appraise: "Appraise",
|
|
259
|
+
system: "System",
|
|
260
|
+
revoke: "Revoke",
|
|
261
|
+
confirmRevoke: "Are you sure you want to revoke this score?",
|
|
262
|
+
confirmTitle: "Confirm",
|
|
263
|
+
revokeSuccess: "Revoked successfully",
|
|
264
|
+
},
|
|
265
|
+
share: { share: "Share", wechatShare: "Scan with WeChat to share", weibo: "Weibo", qq: "QQ", qzone: "Qzone", tieba: "Tieba" },
|
|
266
|
+
watchLater: { add: "Add to Watch Later", added: "Added to Watch Later" },
|
|
267
|
+
fav: { collect: "Favorite", collected: "Favorited" },
|
|
268
|
+
like: { like: "Like" },
|
|
269
|
+
rss: { subscribe: "Subscribe", subscribed: "Subscribed" },
|
|
270
|
+
commentContent: {
|
|
271
|
+
like: "Like",
|
|
272
|
+
liked: "Liked",
|
|
273
|
+
reply: "Reply",
|
|
274
|
+
delete: "Delete",
|
|
275
|
+
hideTip: "After being hidden, only the commenter can see it",
|
|
276
|
+
hide: "Hide",
|
|
277
|
+
top: "Pin",
|
|
278
|
+
cancelTop: "Unpin",
|
|
279
|
+
star: "Feature",
|
|
280
|
+
cancelStar: "Unfeature",
|
|
281
|
+
show: "Show",
|
|
282
|
+
hidden: "Hidden",
|
|
283
|
+
placeholder: "Join the discussion...",
|
|
284
|
+
submit: "Submit",
|
|
285
|
+
collapse: "Collapse",
|
|
286
|
+
confirmDelete: "Delete this comment?",
|
|
287
|
+
confirmHide: "Hide this comment?",
|
|
288
|
+
},
|
|
289
|
+
commentContentSimple: {
|
|
290
|
+
reply: "Reply",
|
|
291
|
+
like: "Like",
|
|
292
|
+
liked: "Liked",
|
|
293
|
+
delete: "Delete",
|
|
294
|
+
hideTip: "After being hidden, only the commenter can see it",
|
|
295
|
+
hide: "Hide",
|
|
296
|
+
confirmDelete: "Delete this comment?",
|
|
297
|
+
confirmHide: "Hide this comment?",
|
|
298
|
+
},
|
|
299
|
+
commentInputForm: {
|
|
300
|
+
authMaskPrefix: "To comment, please complete ",
|
|
301
|
+
authLink: "account verification",
|
|
302
|
+
authMaskSuffix: ".",
|
|
303
|
+
placeholder: "Join the discussion...",
|
|
304
|
+
secret: "Private",
|
|
305
|
+
secretTip: "Private comments are only visible to you and the author and cannot be changed later",
|
|
306
|
+
publish: "Post Comment",
|
|
307
|
+
},
|
|
308
|
+
commentWithReply: {
|
|
309
|
+
defaultName: "Anonymous Wanderer",
|
|
310
|
+
top: "Pinned",
|
|
311
|
+
star: "Featured",
|
|
312
|
+
secret: "Private",
|
|
313
|
+
commentSuccess: "Comment posted!",
|
|
314
|
+
deleteSuccess: "Deleted successfully!",
|
|
315
|
+
},
|
|
316
|
+
commentUpload: {
|
|
317
|
+
tip: "Upload up to {count} {types} images, each no larger than {size} MB",
|
|
318
|
+
exceed: "You can upload up to {count} images!",
|
|
319
|
+
maxSize: "Each image must be no larger than {size} MB!",
|
|
320
|
+
uploadFailed: "Image upload failed!",
|
|
321
|
+
},
|
|
322
|
+
quickReply: { title: "Quick Reply" },
|
|
323
|
+
replyForReply: { reply: "Reply", placeholder: "Enter reply...", submit: "Submit", collapse: "Collapse" },
|
|
324
|
+
replyList: { collapse: "Collapse", showMore: "Show more" },
|
|
325
|
+
clientBy: { all: "All", allClients: "All Clients", std: "JX3", origin: "Origin", wujie: "Wujie" },
|
|
326
|
+
menuBy: { all: "All", default: "Filter" },
|
|
327
|
+
tagBy: { all: "All" },
|
|
328
|
+
topicBy: { all: "All", label: "Topic" },
|
|
329
|
+
markBy: { all: "All", default: "Featured", newbie: "Beginner Friendly", advanced: "Advanced", recommended: "Editor's Pick", geek: "Hardcore" },
|
|
330
|
+
orderBy: { sortLabel: "Sort: {current}", lastUpdate: "Latest Update", earliestPublish: "Earliest Publish", mostFavs: "Most Favorites", mostLikes: "Most Likes", mostDownloads: "Most Downloads" },
|
|
331
|
+
versionBy: { all: "Dual", standard: "Flagship", wujie: "Wujie" },
|
|
332
|
+
zlpBy: { all: "All", default: "Expansion" },
|
|
333
|
+
collection: { included: "This post has been included in the author's JX3 booklet" },
|
|
334
|
+
comment: {
|
|
335
|
+
sortMode: "Sort:",
|
|
336
|
+
desc: "Newest first",
|
|
337
|
+
asc: "Oldest first",
|
|
338
|
+
likesFirst: "Most liked first",
|
|
339
|
+
openWhitelist: "Enable filter",
|
|
340
|
+
openWhitelistTip: "When enabled, only comments marked as visible can be seen by others",
|
|
341
|
+
deleteSuccess: "Deleted successfully!",
|
|
342
|
+
actionSuccess: "Success!",
|
|
343
|
+
commentFailed: "Comment failed",
|
|
344
|
+
commentSuccess: "Comment posted!",
|
|
345
|
+
},
|
|
346
|
+
creators: { title: "Co-Creators", editCurrent: "Edit current post" },
|
|
347
|
+
postHeader: {
|
|
348
|
+
original: "Original",
|
|
349
|
+
wujie: "Wujie",
|
|
350
|
+
mysterious: "Mysterious Hero",
|
|
351
|
+
client: "Client",
|
|
352
|
+
publishDateTitle: "Published: {time}",
|
|
353
|
+
updateDateTitle: "Updated: {time}",
|
|
354
|
+
wordCount: "Word Count",
|
|
355
|
+
edit: "Edit",
|
|
356
|
+
noTitle: "Untitled",
|
|
357
|
+
anonymous: "Anonymous",
|
|
358
|
+
},
|
|
359
|
+
simpleThx: { record: "Reward Records" },
|
|
360
|
+
thx: {
|
|
361
|
+
copyright1: "For all original works, copyright belongs to the author. Unauthorized reposts or plagiarism without attribution may be pursued by law.",
|
|
362
|
+
copyright2: "Exclusive signed-author submissions and officially appraised JX3BOX works are treated as paid submissions once redeemed. Commercial reuse requires platform authorization.",
|
|
363
|
+
},
|
|
364
|
+
cmsSingle: { comment: "Comments", commentDisabled: "The author has not enabled comments", authorSet: "The author set [" },
|
|
365
|
+
suspendCommon: {
|
|
366
|
+
more: "More",
|
|
367
|
+
pinButton: "Pin Button",
|
|
368
|
+
collect: "Favorite",
|
|
369
|
+
subscribe: "Subscribe",
|
|
370
|
+
collectWork: "Favorite Work",
|
|
371
|
+
subscribeWork: "Subscribe Work",
|
|
372
|
+
alreadyCollected: "You already favorited this work",
|
|
373
|
+
alreadySubscribed: "You already subscribed to this work",
|
|
374
|
+
tryWatchLater: "Not interested enough? Try adding it to Watch Later",
|
|
375
|
+
cancelCollect: "Unfavorite",
|
|
376
|
+
cancelSubscribe: "Unsubscribe",
|
|
377
|
+
workSuffix: "",
|
|
378
|
+
addWatchLater: "Add to Watch Later",
|
|
379
|
+
watchLater: "Watch Later",
|
|
380
|
+
cancelPin: "Unpin",
|
|
381
|
+
pinContent: "Pinned Content",
|
|
382
|
+
viewPinnedAnywhere: "You can view pinned content on other pages at any time",
|
|
383
|
+
pinShort: "P",
|
|
384
|
+
pinAgain: "You can pin it again on the original page",
|
|
385
|
+
supportedPinPrefix: "On pages that support pinning, tap",
|
|
386
|
+
supportedPinSuffix: "to pin the page",
|
|
387
|
+
openFailed: "Failed to open page",
|
|
388
|
+
searchContent: "Search Content",
|
|
389
|
+
pinCurrent: "Pin This Page",
|
|
390
|
+
viewPinned: "View Pinned",
|
|
391
|
+
author: "Author",
|
|
392
|
+
report: "Report",
|
|
393
|
+
addedWatchLater: "Added to Watch Later",
|
|
394
|
+
},
|
|
395
|
+
admin: {
|
|
396
|
+
title: "Admin Panel",
|
|
397
|
+
status: "Status",
|
|
398
|
+
refreshCache: "Refresh Cache",
|
|
399
|
+
visible: "Visibility",
|
|
400
|
+
mark: "Recommended Badges",
|
|
401
|
+
highlight: "Highlight & Pin",
|
|
402
|
+
sticky: "Pin",
|
|
403
|
+
enableHighlight: "Enable Highlight",
|
|
404
|
+
previewHighlight: "Preview Highlight",
|
|
405
|
+
banner: "Cover Banner",
|
|
406
|
+
bannerUrl: "Banner URL",
|
|
407
|
+
removeBanner: "Remove Banner",
|
|
408
|
+
meta: "Metadata",
|
|
409
|
+
section: "Section",
|
|
410
|
+
sectionPlaceholder: "Select a section",
|
|
411
|
+
authorPlaceholder: "Enter author ID",
|
|
412
|
+
authorId: "Author ID",
|
|
413
|
+
submit: "Submit",
|
|
414
|
+
statusDefault: "Default",
|
|
415
|
+
statusDraft: "Draft",
|
|
416
|
+
statusPending: "Pending Review",
|
|
417
|
+
statusDeleted: "Deleted",
|
|
418
|
+
uploadFailed: "Upload failed",
|
|
419
|
+
success: "Saved successfully",
|
|
420
|
+
},
|
|
421
|
+
adminDrop: {
|
|
422
|
+
manage: "Manage",
|
|
423
|
+
setting: "Settings",
|
|
424
|
+
message: "Message",
|
|
425
|
+
push: "Push",
|
|
426
|
+
pictureTask: "Refresh Image",
|
|
427
|
+
messageInput: "Please enter the message",
|
|
428
|
+
messageTitle: "Admin Message",
|
|
429
|
+
noticePrefix: "Operation notice: ",
|
|
430
|
+
messageSuccess: "Message sent successfully",
|
|
431
|
+
pictureSuccess: "QQ bot image refresh task submitted",
|
|
432
|
+
invalidParams: "Invalid parameters",
|
|
433
|
+
},
|
|
434
|
+
adminDirectMessage: {
|
|
435
|
+
button: "Message",
|
|
436
|
+
title: "Admin Message",
|
|
437
|
+
input: "Please enter the message",
|
|
438
|
+
noticePrefix: "Operation notice: ",
|
|
439
|
+
success: "Message sent successfully",
|
|
440
|
+
},
|
|
441
|
+
designTask: {
|
|
442
|
+
title: "Quick Push",
|
|
443
|
+
formTitle: "Title",
|
|
444
|
+
titlePlaceholder: "Enter a title",
|
|
445
|
+
formType: "Type",
|
|
446
|
+
typePlaceholder: "Select a type",
|
|
447
|
+
formVersion: "Version",
|
|
448
|
+
formRemark: "Remark",
|
|
449
|
+
remarkPlaceholder: "Enter a remark",
|
|
450
|
+
formStar: "Rating",
|
|
451
|
+
recent: "Recent Pushes",
|
|
452
|
+
pushAt: "Push Time",
|
|
453
|
+
pusher: "Pusher",
|
|
454
|
+
star: "Rating",
|
|
455
|
+
remark: "Remark",
|
|
456
|
+
empty: "No push history for this post yet",
|
|
457
|
+
std: "JX3",
|
|
458
|
+
origin: "Origin",
|
|
459
|
+
wujie: "Wujie",
|
|
460
|
+
test: "Test",
|
|
461
|
+
success: "Submitted successfully",
|
|
127
462
|
},
|
|
128
463
|
};
|