@shzlx/ui-default 4.58.2

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 (448) hide show
  1. package/README.md +5 -0
  2. package/api.ts +61 -0
  3. package/backendlib/builder.ts +182 -0
  4. package/backendlib/markdown-it-imsize.ts +235 -0
  5. package/backendlib/markdown-it-katex.ts +139 -0
  6. package/backendlib/markdown-it-media.ts +163 -0
  7. package/backendlib/markdown-it-xss.ts +200 -0
  8. package/backendlib/markdown.js +64 -0
  9. package/backendlib/misc.ts +54 -0
  10. package/backendlib/template.ts +279 -0
  11. package/breakpoints.json +5 -0
  12. package/components/DOMAttachedObject.ts +128 -0
  13. package/components/autocomplete/AssignSelectAutoComplete.tsx +22 -0
  14. package/components/autocomplete/CustomSelectAutoComplete.tsx +23 -0
  15. package/components/autocomplete/DomainSelectAutoComplete.tsx +18 -0
  16. package/components/autocomplete/FileSelectAutoComplete.tsx +26 -0
  17. package/components/autocomplete/LanguageSelectAutoComplete.tsx +24 -0
  18. package/components/autocomplete/ProblemSelectAutoComplete.tsx +18 -0
  19. package/components/autocomplete/UserSelectAutoComplete.tsx +23 -0
  20. package/components/autocomplete/components/AssignSelectAutoComplete.tsx +118 -0
  21. package/components/autocomplete/components/DomainSelectAutoComplete.tsx +53 -0
  22. package/components/autocomplete/components/FileSelectAutoComplete.tsx +50 -0
  23. package/components/autocomplete/components/LanguageSelectAutoComplete.tsx +48 -0
  24. package/components/autocomplete/components/ProblemSelectAutoComplete.tsx +54 -0
  25. package/components/autocomplete/components/UserSelectAutoComplete.tsx +54 -0
  26. package/components/autocomplete/domainselectautocomplete.page.styl +6 -0
  27. package/components/autocomplete/index.tsx +110 -0
  28. package/components/autocomplete/problemselectautocomplete.page.styl +6 -0
  29. package/components/autocomplete/userselectautocomplete.page.styl +6 -0
  30. package/components/browser-update.page.ts +27 -0
  31. package/components/calendar/calendar.page.styl +129 -0
  32. package/components/calendar/index.js +367 -0
  33. package/components/clipboard.page.ts +23 -0
  34. package/components/contest/contest.page.styl +119 -0
  35. package/components/contest/contest.page.ts +23 -0
  36. package/components/contest/contest_sidebar.page.styl +21 -0
  37. package/components/contest/problem-contest-bg.png +0 -0
  38. package/components/contest/problem-contest-bg@2x.png +0 -0
  39. package/components/customFont.page.tsx +90 -0
  40. package/components/datepicker/datepicker.page.tsx +94 -0
  41. package/components/dialog/DomDialog.ts +145 -0
  42. package/components/dialog/dialog.page.styl +40 -0
  43. package/components/dialog/index.tsx +285 -0
  44. package/components/discussion/CommentBox.js +103 -0
  45. package/components/discussion/collapsible.page.styl +40 -0
  46. package/components/discussion/collapsible.page.tsx +62 -0
  47. package/components/discussion/comments.page.styl +142 -0
  48. package/components/discussion/comments.page.tsx +192 -0
  49. package/components/discussion/discussion.page.styl +17 -0
  50. package/components/discussion/history.page.tsx +81 -0
  51. package/components/discussion/reaction.page.styl +30 -0
  52. package/components/discussion/reaction.page.tsx +103 -0
  53. package/components/drop/drop.page.styl +40 -0
  54. package/components/dropdown/Dropdown.js +50 -0
  55. package/components/dropdown/dropdown.page.styl +33 -0
  56. package/components/dropdown/dropdown.page.ts +8 -0
  57. package/components/editor/cmeditor.page.ts +23 -0
  58. package/components/editor/cmeditor.styl +10 -0
  59. package/components/editor/index.tsx +293 -0
  60. package/components/editor/mdeditor.ts +60 -0
  61. package/components/editor/textareaHandler.ts +29 -0
  62. package/components/footer/footer.page.styl +94 -0
  63. package/components/footer/footer.page.ts +26 -0
  64. package/components/form/button.page.default.styl +59 -0
  65. package/components/form/button.page.styl +36 -0
  66. package/components/form/checkbox.page.styl +89 -0
  67. package/components/form/form.page.styl +200 -0
  68. package/components/form/form.page.ts +20 -0
  69. package/components/form/multiSelectCheckbox.page.js +46 -0
  70. package/components/form/radiobox.page.styl +62 -0
  71. package/components/form/select.page.styl +29 -0
  72. package/components/form/textbox.page.styl +79 -0
  73. package/components/form/textbox.page.ts +21 -0
  74. package/components/form/var.inc.styl +14 -0
  75. package/components/header/header.page.styl +79 -0
  76. package/components/highlighter/code-example.js +111 -0
  77. package/components/highlighter/highlighter.page.styl +99 -0
  78. package/components/highlighter/highlighter.page.ts +72 -0
  79. package/components/highlighter/meta.js +15 -0
  80. package/components/highlighter/prismjs.js +122 -0
  81. package/components/hint.page.styl +9 -0
  82. package/components/hint.ts +19 -0
  83. package/components/hitokoto/index.page.js +21 -0
  84. package/components/hotkey/hotkey.page.js +83 -0
  85. package/components/katex/katex.page.js +26 -0
  86. package/components/katex/katex.page.styl +2 -0
  87. package/components/languageselect.tsx +94 -0
  88. package/components/loader/loader.page.styl +40 -0
  89. package/components/mantine.page.tsx +39 -0
  90. package/components/marker/Marker.js +192 -0
  91. package/components/marker/MarkerReactive.js +55 -0
  92. package/components/marker/marker.page.js +8 -0
  93. package/components/marker/marker.page.styl +57 -0
  94. package/components/media/media.page.js +46 -0
  95. package/components/menu/menu-heading.page.js +28 -0
  96. package/components/menu/menu.page.js +18 -0
  97. package/components/menu/menu.page.styl +68 -0
  98. package/components/message/index.page.ts +166 -0
  99. package/components/message/worker.ts +110 -0
  100. package/components/messagepad/DialogueListItem.page.styl +28 -0
  101. package/components/messagepad/DialogueListItemComponent.jsx +39 -0
  102. package/components/messagepad/Message.page.styl +64 -0
  103. package/components/messagepad/MessageComponent.jsx +33 -0
  104. package/components/messagepad/MessagePad.page.styl +99 -0
  105. package/components/messagepad/MessagePadDialogueContentContainer.jsx +104 -0
  106. package/components/messagepad/MessagePadDialogueListContainer.jsx +49 -0
  107. package/components/messagepad/MessagePadInputContainer.jsx +100 -0
  108. package/components/messagepad/index.jsx +49 -0
  109. package/components/messagepad/reducers/activeId.ts +36 -0
  110. package/components/messagepad/reducers/dialogues.js +53 -0
  111. package/components/messagepad/reducers/index.ts +14 -0
  112. package/components/messagepad/reducers/inputs.js +43 -0
  113. package/components/messagepad/reducers/isPosting.ts +49 -0
  114. package/components/monaco/index.ts +178 -0
  115. package/components/monaco/languages/markdown.ts +97 -0
  116. package/components/monaco/languages/typescript.ts +45 -0
  117. package/components/monaco/languages/yaml.ts +22 -0
  118. package/components/monaco/loader.ts +96 -0
  119. package/components/monaco/monaco.styl +30 -0
  120. package/components/monaco/nls.js +31 -0
  121. package/components/monaco/schema/problemconfig.ts +123 -0
  122. package/components/navigation/hamburgers.page.styl +87 -0
  123. package/components/navigation/nav-logo-small_dark.png +0 -0
  124. package/components/navigation/navigation.page.js +203 -0
  125. package/components/navigation/navigation.page.styl +211 -0
  126. package/components/notification/index.ts +105 -0
  127. package/components/notification/notification.page.js +14 -0
  128. package/components/notification/notification.page.styl +84 -0
  129. package/components/nprogress.page.styl +50 -0
  130. package/components/omnisearch/index.page.tsx +124 -0
  131. package/components/omnisearch/omnibar.page.styl +138 -0
  132. package/components/pager/pager.page.styl +57 -0
  133. package/components/preview/preview.page.ts +187 -0
  134. package/components/problem/create.page.js +12 -0
  135. package/components/problem/list.page.js +9 -0
  136. package/components/problem/rp.page.styl +4 -0
  137. package/components/problem/tag.page.styl +84 -0
  138. package/components/problemconfig/BasicForm.tsx +92 -0
  139. package/components/problemconfig/ProblemConfigEditor.tsx +170 -0
  140. package/components/problemconfig/ProblemConfigForm.tsx +140 -0
  141. package/components/problemconfig/ProblemConfigTree.tsx +163 -0
  142. package/components/problemconfig/ProblemType.tsx +165 -0
  143. package/components/problemconfig/index.tsx +91 -0
  144. package/components/problemconfig/reducer/config.ts +173 -0
  145. package/components/problemconfig/reducer/index.ts +11 -0
  146. package/components/problemconfig/reducer/testdata.ts +16 -0
  147. package/components/problemconfig/tree/AddTestcase.tsx +137 -0
  148. package/components/problemconfig/tree/SelectionManager.tsx +140 -0
  149. package/components/problemconfig/tree/SubtaskSettings.tsx +180 -0
  150. package/components/problemconfig/tree/Testcase.tsx +98 -0
  151. package/components/profile/backgrounds/1.jpg +0 -0
  152. package/components/profile/backgrounds/10.jpg +0 -0
  153. package/components/profile/backgrounds/11.jpg +0 -0
  154. package/components/profile/backgrounds/12.jpg +0 -0
  155. package/components/profile/backgrounds/13.jpg +0 -0
  156. package/components/profile/backgrounds/14.jpg +0 -0
  157. package/components/profile/backgrounds/15.jpg +0 -0
  158. package/components/profile/backgrounds/16.jpg +0 -0
  159. package/components/profile/backgrounds/17.jpg +0 -0
  160. package/components/profile/backgrounds/18.jpg +0 -0
  161. package/components/profile/backgrounds/19.jpg +0 -0
  162. package/components/profile/backgrounds/2.jpg +0 -0
  163. package/components/profile/backgrounds/20.jpg +0 -0
  164. package/components/profile/backgrounds/21.jpg +0 -0
  165. package/components/profile/backgrounds/3.jpg +0 -0
  166. package/components/profile/backgrounds/4.jpg +0 -0
  167. package/components/profile/backgrounds/5.jpg +0 -0
  168. package/components/profile/backgrounds/6.jpg +0 -0
  169. package/components/profile/backgrounds/7.jpg +0 -0
  170. package/components/profile/backgrounds/8.jpg +0 -0
  171. package/components/profile/backgrounds/9.jpg +0 -0
  172. package/components/profile/backgrounds/gen_thumbnails.sh +7 -0
  173. package/components/profile/backgrounds/thumbnail/1.jpg +0 -0
  174. package/components/profile/backgrounds/thumbnail/10.jpg +0 -0
  175. package/components/profile/backgrounds/thumbnail/11.jpg +0 -0
  176. package/components/profile/backgrounds/thumbnail/12.jpg +0 -0
  177. package/components/profile/backgrounds/thumbnail/13.jpg +0 -0
  178. package/components/profile/backgrounds/thumbnail/14.jpg +0 -0
  179. package/components/profile/backgrounds/thumbnail/15.jpg +0 -0
  180. package/components/profile/backgrounds/thumbnail/16.jpg +0 -0
  181. package/components/profile/backgrounds/thumbnail/17.jpg +0 -0
  182. package/components/profile/backgrounds/thumbnail/18.jpg +0 -0
  183. package/components/profile/backgrounds/thumbnail/19.jpg +0 -0
  184. package/components/profile/backgrounds/thumbnail/2.jpg +0 -0
  185. package/components/profile/backgrounds/thumbnail/20.jpg +0 -0
  186. package/components/profile/backgrounds/thumbnail/21.jpg +0 -0
  187. package/components/profile/backgrounds/thumbnail/3.jpg +0 -0
  188. package/components/profile/backgrounds/thumbnail/4.jpg +0 -0
  189. package/components/profile/backgrounds/thumbnail/5.jpg +0 -0
  190. package/components/profile/backgrounds/thumbnail/6.jpg +0 -0
  191. package/components/profile/backgrounds/thumbnail/7.jpg +0 -0
  192. package/components/profile/backgrounds/thumbnail/8.jpg +0 -0
  193. package/components/profile/backgrounds/thumbnail/9.jpg +0 -0
  194. package/components/profile/profile.page.styl +23 -0
  195. package/components/react/DomComponent.tsx +14 -0
  196. package/components/react/IconComponent.tsx +20 -0
  197. package/components/record/record.page.styl +26 -0
  198. package/components/rotator/index.js +75 -0
  199. package/components/rotator/rotator.page.styl +20 -0
  200. package/components/scratchpad/DataInput.page.styl +17 -0
  201. package/components/scratchpad/DataInputComponent.jsx +45 -0
  202. package/components/scratchpad/Editor.page.styl +13 -0
  203. package/components/scratchpad/Panel.page.styl +18 -0
  204. package/components/scratchpad/PanelButton.page.styl +15 -0
  205. package/components/scratchpad/PanelButtonComponent.jsx +19 -0
  206. package/components/scratchpad/PanelComponent.jsx +25 -0
  207. package/components/scratchpad/ScratchpadEditorContainer.tsx +137 -0
  208. package/components/scratchpad/ScratchpadPretestContainer.jsx +57 -0
  209. package/components/scratchpad/ScratchpadRecordsContainer.jsx +45 -0
  210. package/components/scratchpad/ScratchpadRecordsRowContainer.jsx +83 -0
  211. package/components/scratchpad/ScratchpadSettings.tsx +48 -0
  212. package/components/scratchpad/ScratchpadToolbarContainer.jsx +190 -0
  213. package/components/scratchpad/Tab.page.styl +24 -0
  214. package/components/scratchpad/Toolbar.page.styl +53 -0
  215. package/components/scratchpad/ToolbarComponent.jsx +85 -0
  216. package/components/scratchpad/index.tsx +132 -0
  217. package/components/scratchpad/reducers/editor.ts +24 -0
  218. package/components/scratchpad/reducers/index.ts +17 -0
  219. package/components/scratchpad/reducers/pretest.ts +34 -0
  220. package/components/scratchpad/reducers/records.ts +40 -0
  221. package/components/scratchpad/reducers/state.ts +10 -0
  222. package/components/scratchpad/reducers/ui.ts +152 -0
  223. package/components/scratchpad/scratchpad.page.styl +55 -0
  224. package/components/scratchpad/var.inc.styl +2 -0
  225. package/components/selectUser.tsx +16 -0
  226. package/components/signin/signInDialog.page.js +84 -0
  227. package/components/signin/signin_dialog.page.styl +57 -0
  228. package/components/smoothscroll/smoothscroll.page.js +44 -0
  229. package/components/socket/index.ts +68 -0
  230. package/components/star/star.page.styl +20 -0
  231. package/components/star/star.page.ts +58 -0
  232. package/components/sticky/sticky.page.js +66 -0
  233. package/components/tab/Tab.js +168 -0
  234. package/components/tab/tab.page.js +9 -0
  235. package/components/tab/tab.page.styl +105 -0
  236. package/components/tab/var.inc.styl +3 -0
  237. package/components/table/StyledTable.js +51 -0
  238. package/components/table/styledTable.page.js +8 -0
  239. package/components/table/table.page.styl +73 -0
  240. package/components/time/time.page.js +47 -0
  241. package/components/tooltip/Tooltip.js +49 -0
  242. package/components/tooltip/tooltip.page.js +29 -0
  243. package/components/tooltip/tooltip.page.styl +69 -0
  244. package/components/training/training.page.styl +25 -0
  245. package/components/upload.tsx +103 -0
  246. package/components/vote/vote.page.js +43 -0
  247. package/components/zipDownloader/index.ts +157 -0
  248. package/constant/domain.js +21 -0
  249. package/constant/message.js +5 -0
  250. package/constant/record.js +52 -0
  251. package/context.ts +11 -0
  252. package/entry.js +72 -0
  253. package/hydro.ts +112 -0
  254. package/index.ts +226 -0
  255. package/lazyload.ts +69 -0
  256. package/locales/en.yaml +71 -0
  257. package/locales/ko.yaml +823 -0
  258. package/locales/zh.yaml +1137 -0
  259. package/locales/zh_TW.yaml +1133 -0
  260. package/misc/Page.ts +49 -0
  261. package/misc/PageLoader.js +31 -0
  262. package/misc/float.styl +14 -0
  263. package/misc/grid.styl +1048 -0
  264. package/misc/immersive-background.jpg +0 -0
  265. package/misc/immersive-background@2x.jpg +0 -0
  266. package/misc/immersive.styl +23 -0
  267. package/misc/nothing.styl +13 -0
  268. package/misc/puzzled_twd2.svg +1 -0
  269. package/misc/section.styl +105 -0
  270. package/misc/slideout.styl +46 -0
  271. package/misc/structure.styl +158 -0
  272. package/misc/textalign.styl +11 -0
  273. package/misc/typography.styl +485 -0
  274. package/package.json +148 -0
  275. package/polyfill.ts +90 -0
  276. package/postcss.config.js +15 -0
  277. package/sentry.ts +26 -0
  278. package/service-worker.ts +265 -0
  279. package/setting.yaml +98 -0
  280. package/templates/about.html +14 -0
  281. package/templates/bsod.html +35 -0
  282. package/templates/components/comments_discussion.html +165 -0
  283. package/templates/components/comments_solution.html +171 -0
  284. package/templates/components/contest.html +12 -0
  285. package/templates/components/form.html +214 -0
  286. package/templates/components/home.html +20 -0
  287. package/templates/components/homework.html +8 -0
  288. package/templates/components/md_hint.html +39 -0
  289. package/templates/components/noscript_note.html +15 -0
  290. package/templates/components/nothing.html +6 -0
  291. package/templates/components/paginator.html +25 -0
  292. package/templates/components/problem.html +33 -0
  293. package/templates/components/record.html +21 -0
  294. package/templates/components/sidemenu.html +11 -0
  295. package/templates/components/user.html +49 -0
  296. package/templates/contest_balloon.html +48 -0
  297. package/templates/contest_clarification.html +103 -0
  298. package/templates/contest_detail.html +56 -0
  299. package/templates/contest_edit.html +259 -0
  300. package/templates/contest_main.html +146 -0
  301. package/templates/contest_manage.html +80 -0
  302. package/templates/contest_print.html +27 -0
  303. package/templates/contest_problemlist.html +231 -0
  304. package/templates/contest_scoreboard.html +46 -0
  305. package/templates/contest_scoreboard_download_html.html +71 -0
  306. package/templates/contest_user.html +47 -0
  307. package/templates/discussion_create.html +28 -0
  308. package/templates/discussion_detail.html +149 -0
  309. package/templates/discussion_edit.html +30 -0
  310. package/templates/discussion_main_or_node.html +47 -0
  311. package/templates/domain_base.html +26 -0
  312. package/templates/domain_create.html +55 -0
  313. package/templates/domain_dashboard.html +45 -0
  314. package/templates/domain_edit.html +6 -0
  315. package/templates/domain_group.html +51 -0
  316. package/templates/domain_join.html +47 -0
  317. package/templates/domain_join_applications.html +67 -0
  318. package/templates/domain_permission.html +66 -0
  319. package/templates/domain_role.html +71 -0
  320. package/templates/domain_user.html +86 -0
  321. package/templates/domain_user_raw.html +5 -0
  322. package/templates/error.html +25 -0
  323. package/templates/home_domain.html +64 -0
  324. package/templates/home_files.html +16 -0
  325. package/templates/home_messages.html +9 -0
  326. package/templates/home_security.html +224 -0
  327. package/templates/home_settings.html +21 -0
  328. package/templates/homework_detail.html +82 -0
  329. package/templates/homework_edit.html +138 -0
  330. package/templates/homework_files.html +24 -0
  331. package/templates/homework_main.html +76 -0
  332. package/templates/layout/basic.html +27 -0
  333. package/templates/layout/home_base.html +13 -0
  334. package/templates/layout/html5.html +74 -0
  335. package/templates/layout/immersive.html +22 -0
  336. package/templates/layout/mail.html +31 -0
  337. package/templates/layout/simple.html +4 -0
  338. package/templates/layout/wiki_base.html +16 -0
  339. package/templates/main.html +22 -0
  340. package/templates/manage_base.html +24 -0
  341. package/templates/manage_config.html +6 -0
  342. package/templates/manage_dashboard.html +27 -0
  343. package/templates/manage_script.html +56 -0
  344. package/templates/manage_setting.html +6 -0
  345. package/templates/manage_user_import.html +23 -0
  346. package/templates/manage_user_priv.html +76 -0
  347. package/templates/partials/category.html +19 -0
  348. package/templates/partials/contest.html +3 -0
  349. package/templates/partials/contest_balloon.html +37 -0
  350. package/templates/partials/contest_sidebar.html +150 -0
  351. package/templates/partials/contest_sidebar_management.html +56 -0
  352. package/templates/partials/contest_user.html +19 -0
  353. package/templates/partials/discussion_edit_form.html +45 -0
  354. package/templates/partials/discussion_list.html +50 -0
  355. package/templates/partials/discussion_nodes_widget.html +17 -0
  356. package/templates/partials/files.html +49 -0
  357. package/templates/partials/footer.html +108 -0
  358. package/templates/partials/hamburger.html +7 -0
  359. package/templates/partials/header_mobile.html +12 -0
  360. package/templates/partials/homepage/bulletin.html +7 -0
  361. package/templates/partials/homepage/contest.html +48 -0
  362. package/templates/partials/homepage/discussion.html +13 -0
  363. package/templates/partials/homepage/discussion_nodes.html +4 -0
  364. package/templates/partials/homepage/error.html +5 -0
  365. package/templates/partials/homepage/hitokoto.html +6 -0
  366. package/templates/partials/homepage/homework.html +45 -0
  367. package/templates/partials/homepage/problem_search.html +13 -0
  368. package/templates/partials/homepage/ranking.html +39 -0
  369. package/templates/partials/homepage/recent_problems.html +17 -0
  370. package/templates/partials/homepage/starred_problems.html +15 -0
  371. package/templates/partials/homepage/suggestion.html +34 -0
  372. package/templates/partials/homepage/training.html +50 -0
  373. package/templates/partials/homework.html +3 -0
  374. package/templates/partials/homework_default_penalty_rules.yaml +6 -0
  375. package/templates/partials/homework_sidebar.html +93 -0
  376. package/templates/partials/login_dialog.html +56 -0
  377. package/templates/partials/manage_user_priv.html +78 -0
  378. package/templates/partials/nav.html +138 -0
  379. package/templates/partials/problem-sidebar-information.html +25 -0
  380. package/templates/partials/problem.html +2 -0
  381. package/templates/partials/problem_category_dialog.html +43 -0
  382. package/templates/partials/problem_default.md +26 -0
  383. package/templates/partials/problem_description.html +33 -0
  384. package/templates/partials/problem_files.html +63 -0
  385. package/templates/partials/problem_list.html +68 -0
  386. package/templates/partials/problem_lucky.html +10 -0
  387. package/templates/partials/problem_sidebar.html +14 -0
  388. package/templates/partials/problem_sidebar_contest.html +43 -0
  389. package/templates/partials/problem_sidebar_homework.html +42 -0
  390. package/templates/partials/problem_sidebar_normal.html +152 -0
  391. package/templates/partials/problem_stat.html +3 -0
  392. package/templates/partials/scoreboard.html +79 -0
  393. package/templates/partials/setting.html +92 -0
  394. package/templates/partials/training_default.json +14 -0
  395. package/templates/partials/training_detail.html +153 -0
  396. package/templates/partials/user.html +2 -0
  397. package/templates/partials/user_detail/activity.html +18 -0
  398. package/templates/partials/user_detail/solution.html +29 -0
  399. package/templates/problem_config.html +39 -0
  400. package/templates/problem_detail.html +150 -0
  401. package/templates/problem_edit.html +111 -0
  402. package/templates/problem_files.html +91 -0
  403. package/templates/problem_hack.html +41 -0
  404. package/templates/problem_import.html +58 -0
  405. package/templates/problem_main.html +100 -0
  406. package/templates/problem_solution.html +55 -0
  407. package/templates/problem_statistics.html +96 -0
  408. package/templates/problem_submit.html +40 -0
  409. package/templates/ranking.html +81 -0
  410. package/templates/record_detail.html +134 -0
  411. package/templates/record_detail_status.html +93 -0
  412. package/templates/record_detail_summary.html +19 -0
  413. package/templates/record_main.html +142 -0
  414. package/templates/record_main_tr.html +35 -0
  415. package/templates/status.html +75 -0
  416. package/templates/training_detail.html +120 -0
  417. package/templates/training_edit.html +68 -0
  418. package/templates/training_files.html +64 -0
  419. package/templates/training_main.html +107 -0
  420. package/templates/user_changemail_mail.html +6 -0
  421. package/templates/user_changemail_mail_sent.html +9 -0
  422. package/templates/user_delete_pending.html +10 -0
  423. package/templates/user_detail.html +181 -0
  424. package/templates/user_login.html +46 -0
  425. package/templates/user_logout.html +13 -0
  426. package/templates/user_lostpass.html +27 -0
  427. package/templates/user_lostpass_mail.html +6 -0
  428. package/templates/user_lostpass_mail_sent.html +9 -0
  429. package/templates/user_lostpass_with_code.html +29 -0
  430. package/templates/user_register.html +22 -0
  431. package/templates/user_register_mail.html +6 -0
  432. package/templates/user_register_mail_sent.html +9 -0
  433. package/templates/user_register_with_code.html +35 -0
  434. package/templates/user_sudo.html +54 -0
  435. package/templates/user_sudo_redirect.html +18 -0
  436. package/templates/wiki_help.html +189 -0
  437. package/theme/bp6-compat.css +48 -0
  438. package/theme/dark.styl +397 -0
  439. package/theme/default.js +33 -0
  440. package/typed.d.ts +20 -0
  441. package/utils/base.ts +209 -0
  442. package/utils/base64.js +104 -0
  443. package/utils/db.ts +32 -0
  444. package/utils/index.ts +73 -0
  445. package/utils/loadReactRedux.ts +32 -0
  446. package/utils/mediaQuery.ts +13 -0
  447. package/utils/pjax.js +148 -0
  448. package/utils/slide.ts +57 -0
@@ -0,0 +1,1133 @@
1
+ __langname: 正體中文
2
+ '"{data}" copied to clipboard!': “{data}”已複製到剪貼簿!
3
+ '[Richtext message]': '[富文字訊息]'
4
+ '{0} comments': '{0} 條評論'
5
+ '{0} discussions': '{0} 條討論'
6
+ '{0} is a moderator of this domain.': '{0}是這個域的管理者之一。'
7
+ '{0} is a superuser.': '{0}是超級管理員。'
8
+ '{0} limit exceeded (limit: {2} operations in {1} seconds).': '{0} 超過頻率限制。限制:{1} 秒內最多 {2} 次操作。'
9
+ '{0} problem(s) selected': '{0} 道題目已選中'
10
+ '{0} problems': '{0} 道題'
11
+ '{0} sections': '{0} 小節'
12
+ '{0} solutions': '{0} 條題解'
13
+ '{0} views': '{0} 次檢視'
14
+ '{0}: Groups': '{0}: 小組'
15
+ '{0}: Permissions': '{0}: 許可權'
16
+ '{0}: Roles': '{0}: 身分組'
17
+ '{0}: Users': '{0}: 使用者'
18
+ '# My Submissions': 我的遞交數
19
+ '# Submissions': 遞交數
20
+ '↓ # Comments': ↓ 評論數
21
+ '↓ # Enrollees': ↓ 參與人數
22
+ '↓ # Likes': ↓ 贊數
23
+ '↓ # Stars': ↓ 收藏數
24
+ '↓ Create Time': '↓ 建立時間'
25
+ '↓ Update Time': '↓ 更新時間'
26
+ 'A domain ID cannot be changed after creation. It is supposed to be:': 建立後將無法更改 ID。ID 必須滿足以下條件:
27
+ Copy "{data}" failed :(: 複製“{data}”失敗 :(
28
+ Copy failed :(: 複製失敗 :(
29
+ 'Current dataset: {0}': '當前測試資料: {0}'
30
+ 'Discussion: Terms Of Service': 討論區服務條款
31
+ 'Drag and drop testcases here:': 拖拽測試點到此處:
32
+ 'Enter a new name for the file: ': 請輸入新的檔名:
33
+ 'Failed to get credential: {0}': '獲取認證資料失敗: {0}'
34
+ 'File IO: {0}': 檔案IO:{0}
35
+ 'File upload failed: {0}': 檔案上傳失敗:{0}
36
+ 'Format: category 1, category 2, ..., category n': 格式:分類1, 分類2, ..., 分類n
37
+ 'Hello, {0}! You can click following link to active your new email of your {1} account:': '您好,{0}!您可以點選以下連結來啟用您 {1} 賬戶的新電子郵件地址:'
38
+ 'Hello, {0}! You can click following link to reset the password of your {1} account:': '您好,{0}!您可以點選以下連結來重置您 {1} 賬戶的密碼:'
39
+ 'Hello! You can click following link to sign up your {0} account:': '您好!您可以點選以下連結來註冊您的 {0} 賬戶:'
40
+ Join {0}: 加入 {0}
41
+ 'No': 否
42
+ 'Note: Problem title may not be hidden.': 注意:題目標題可能不會被隱藏。
43
+ 'Or use the following link:': 或使用以下連結:
44
+ 'Packages have new version: {0}': 以下元件有新版本: {0}
45
+ 'Please use your two factor authentication app to scan the qrcode below:': '請使用你的兩步驗證APP掃描此二維碼:'
46
+ Role {1} already exists in domain {0}.: 域 {0} 中已存在身分組 {1}。
47
+ 'Solved {0} problems, RP: {1} (No. {2})': '解決了 {0} 道題目,RP: {1} (No. {2})'
48
+ 'The domain owner:': 域所有者:
49
+ The value `{1}` of {0} already exists.: '{0} 的值 `{1}` 已經存在。'
50
+ 'Tip: You are entering sudo mode.': 提示:您正在進行<a href="https://docs.github.com/articles/sudo-mode">身份驗證</a>。
51
+ 'Yes': 是
52
+ "After you've performed a sudo-protected action, you'll only be asked to re-authenticate again after a few hours of inactivity.": 在您執行受保護的操作後,只有賬戶連續數小時不活動時,系統才會再次要求您重新驗證身份。
53
+ Effects only when Difficulty is not 'Use algorithm calculated'.: 僅當難度不為“使用演算法計算”時才起效。
54
+ Split by ', '.: 由“, ”或“,”分隔。
55
+ View other's records: 檢視他人的記錄
56
+ What's file?: 什麼是檔案?
57
+ (All Problems): (所有題目)
58
+ (leave blank if none): (若不需要則留空)
59
+ (None): (無)
60
+ (Not changed): 未更改
61
+ 6-Digit Code: 6位程式碼
62
+ A data generator is a program that generates testdata. It should output result to stdout.: 資料生成器是一個生成測試資料的程式。它應該將結果輸出到標準輸出。
63
+ A standard program is a program that solves the problem. It should output answer to stdout.: 標準程式是一個解決問題的程式。它應該將答案輸出到標準輸出。
64
+ Aborted: 已放棄
65
+ About {0}: 關於 {0}
66
+ About Markdown: 關於 Markdown
67
+ About test data: 關於測試資料
68
+ about: 關於
69
+ About: 關於
70
+ AC Message: 通過訊息
71
+ Accept: 通過
72
+ Accepted Problems: 通過的題目
73
+ Accepted Ratio: 通過率
74
+ Accepted: 已通過
75
+ Access Control: 訪問控制
76
+ According to the contest rules, you cannot view your submission details at current.: 根據比賽規則,你現在不能檢視你的評測記錄詳情。
77
+ Account Settings: 賬戶設定
78
+ Action: 動作
79
+ Active Sessions: 活動會話
80
+ Add Authenticator: 新增認證器
81
+ Add File: 新增檔案
82
+ Add module: 新增模組
83
+ Add new data: 新增新資料
84
+ Add new subtask: 新增新子任務
85
+ Add prefix: 新增字首
86
+ Add prefix/suffix: 新增字首/字尾
87
+ Add suffix: 新增字尾
88
+ Add testcase: 新增測試點
89
+ Add User: 新增使用者
90
+ Add: 新增
91
+ Additional Files: 附加檔案
92
+ additional_file: 附加檔案
93
+ All {0} Contests: 所有 {0} 比賽
94
+ All changes will be lost. Are you sure to clear all answers?: 所有更改將會丟失。您確定要清除所有答案嗎?
95
+ All Contests: 所有比賽
96
+ All Homeworks: 所有功課
97
+ All Languages: 所有語言
98
+ All Submissions: 所有遞交
99
+ All Training Plans: 所有訓練計劃
100
+ All Users: 所有使用者
101
+ All: 全部
102
+ Allow to maintain this {0}: 允許管理此{0}
103
+ Allow user view others code after contest: 允許使用者賽後檢視其他人的程式碼
104
+ Always granted all privileges: 總是擁有所有域許可權
105
+ An error has occurred.: 發生了一個錯誤。
106
+ An example of dataset: 測試資料集的一個例子
107
+ Any user is allowed to join this domain with an invitation code: 任意使用者都可以透過邀請碼加入此域
108
+ Any user is allowed to join this domain: 任意使用者都可以加入此域
109
+ API: API
110
+ Are you sure to rename the following file?: 確認對重新命名以下檔案?
111
+ Are you sure you want to delete this subtask?: 確認刪除此子任務?
112
+ Argument {0} is invalid.: 非法的引數 {0} 。
113
+ Arguments: 引數
114
+ Assign User or Group: 分配給使用者或小組
115
+ Assign: 分配給
116
+ Assignment: 作業
117
+ At least 4 characters: 至少 4 個字元
118
+ Attend Contest: 參加比賽
119
+ Attend contests: 參加比賽
120
+ Attended: 已參加
121
+ Attendee Manage: 參賽者管理
122
+ Authenticator: 認證器
123
+ Authenticators: 認證器
124
+ author: 作者
125
+ Auto configure: 自動配置
126
+ Auto detect: 自動檢測
127
+ Auto hide problems during the contest: 在比賽過程中自動隱藏題目
128
+ Auto Read Tasks: 自動識別任務
129
+ Awards: 獎項
130
+ Balloon Status: 氣球狀態
131
+ Basic Info: 基礎資訊
132
+ Basic: 基礎
133
+ Batch replacement: 批次替換
134
+ Be Copied: 被複制
135
+ Begin at: 開始於
136
+ Begin Date: 開始日期
137
+ Begin Time: 開始時間
138
+ Belongs to: 屬於
139
+ Bio Visibility: 個人簡介可見性
140
+ Bio: 個人簡介
141
+ Bold: 加粗
142
+ Boom!: 炸了!
143
+ Browser: 瀏覽器
144
+ Built-in: 內建
145
+ Bulletin: 公告
146
+ By clicking the button, you will become a member of the domain {0}.: 點選按鈕,您將成為域 {0} 的成員。
147
+ By Contest: 由比賽
148
+ By Language: 由語言
149
+ By Problem: 由題目
150
+ By signing up a {0} universal account, you can submit code and join discussions in all online judging services provided by us.: 註冊一個 {0} 通用賬戶,您就可以在我們提供的所有線上評測服務上提交程式碼、參與討論。
151
+ By Status: 由狀態
152
+ By Username / UID: 由使用者名稱或 UID
153
+ Calendar View: 日曆檢視
154
+ Calendar: 日曆
155
+ Can be Extended For: 可延期
156
+ Cancel Score: 取消成績
157
+ Cancel: 取消
158
+ Categories: 分類
159
+ Category: 分類
160
+ Change Email: 修改電子郵件
161
+ Change Password: 修改密碼
162
+ Change Theme: 切換主題
163
+ Check In: 簽到
164
+ Checker: 比較器
165
+ CheckerType: 比較器型別
166
+ Chinese: 中文
167
+ Choose Authenticator Type: 選擇認證器型別
168
+ Choose the background image in your profile page.: 選擇您資料頁面的背景圖片。
169
+ Claim homework: 認領功課
170
+ Claim Homework: 認領功課
171
+ Claimed: 已認領
172
+ Clear answers: 清除答案
173
+ Clear Marks: 清除標記
174
+ Click here to chat with me: 點選這裡與我聊天
175
+ click to add: 點選新增
176
+ Clone: 複製
177
+ CLOSE: 關閉
178
+ Code blocks: 程式碼區塊
179
+ Code language: 程式碼語言
180
+ Code Length: 程式碼長度
181
+ Code: 程式碼
182
+ codeFontFamily: 程式碼字型
183
+ collapse: 收縮
184
+ Color: 顏色
185
+ Comment: 評論
186
+ Comments: 評論
187
+ CommonMark Syntax: CommonMark 語法
188
+ Compile Error: 編譯錯誤
189
+ Compilers' Version and Parameters: 編譯器版本及引數
190
+ Complete: 完成
191
+ Completed: 已完成
192
+ Config: 配置
193
+ Confirm Access: 確認授權
194
+ Confirm deleting the selected roles?: 您確定刪除所選身分組嗎?
195
+ Confirm deleting this comment? Its replies will be deleted as well.: 確認刪除這個評論嗎?回覆會被同時刪除。
196
+ Confirm deleting this domain? This action cannot be undone.: 確認刪除此域?此操作無法撤銷。
197
+ Confirm deleting this reply?: 確認刪除這個回覆嗎?
198
+ Confirm rejudge this problem?: 確定要重測這道題嗎?
199
+ Confirm removing the selected users?: 您確定將所選使用者移除嗎?
200
+ Confirm to delete the file?: 確認刪除此檔案嗎?
201
+ Confirm to delete the selected files?: 確認刪除所選檔案嗎?
202
+ Confirm to delete the selected problems?: 確認要刪除所選題目嗎?
203
+ Confirm: 確認
204
+ Confirmation mail has been sent to your new email.: 確認郵件已經傳送到您的新電子郵箱。
205
+ Congratulations! Your submission is accepted.: 恭喜!您的遞交已評測通過。
206
+ Contact Us: 聯絡我們
207
+ Contact: 聯絡
208
+ Content copied to clipboard!: 內容已複製到剪貼簿!
209
+ content: 內容
210
+ Content: 內容
211
+ Contest Maintainer: 比賽管理員
212
+ Contest scoreboard is not visible.: 當前比賽成績表隱藏,暫不可顯示。
213
+ Contest Scoreboard: 比賽成績表
214
+ Contest Settings: 比賽設定
215
+ contest_create: 建立比賽
216
+ contest_detail_problem_submit: 遞交比賽程式碼
217
+ contest_edit: 編輯比賽
218
+ contest_main: 比賽
219
+ contest_scoreboard: 比賽成績表
220
+ Contest: 比賽
221
+ Continue: 繼續
222
+ Contributed Problems: 貢獻的題目
223
+ Contributions: 貢獻
224
+ Copy Email: 複製電子郵件
225
+ Copy from: 複製自
226
+ Copy Link: 複製連結
227
+ Copy Problem: 複製題目
228
+ Copy Problems: 複製題目
229
+ Copy QQ Number: 複製QQ號
230
+ Copy Selected: 複製選中
231
+ Copy WeChat Account: 複製微訊號
232
+ Copy: 複製
233
+ Copyright Complaint: 版權申訴
234
+ Correction: 補題
235
+ CPU Info: CPU資訊
236
+ Create a contest: 建立一個比賽
237
+ Create a Discussion: 建立一個討論
238
+ Create a Post: 建立一個博文
239
+ Create a problem: 建立一個題目
240
+ Create Contest: 建立比賽
241
+ Create contests: 建立比賽
242
+ Create Discussion in {0}: 在 {0} 下建立討論
243
+ Create Discussion: 建立討論
244
+ Create discussions: 建立討論
245
+ Create Domain: 建立域
246
+ Create File: 建立檔案
247
+ Create Group: 建立小組
248
+ Create homework: 建立功課
249
+ Create Homework: 建立功課
250
+ Create Link: 建立連結
251
+ Create problem solutions: 建立題解
252
+ Create Problem: 建立題目
253
+ Create problems: 建立題目
254
+ Create Role: 建立身分組
255
+ Create Training Plan: 建立訓練計劃
256
+ Create training plans: 建立訓練計劃
257
+ Create: 建立
258
+ Created By: 建立人
259
+ Current dataset comes from: 當前資料集來自
260
+ current domain: 當前域
261
+ Current Email: 當前電子郵件
262
+ Current Location: 當前位置
263
+ Current password doesn't match.: 當前密碼輸入錯誤。
264
+ Current Password: 當前密碼
265
+ Current Status: 當前狀態
266
+ currently offline: 目前離線
267
+ Daily update check: 每日自動檢查更新
268
+ Dark: 暗色
269
+ Data Generator: 資料生成器
270
+ Data of Problem {0} not found.: 題目 {0} 的資料缺失。
271
+ Data of problem {1} not found.: 題目 {1} 的資料未找到。
272
+ Data of record {0} not found.: 記錄 {0} 的資料未找到。
273
+ Dataset Format: 測試資料集格式
274
+ Dataset: 測試資料
275
+ Day: 日
276
+ Deadline: 截止時間
277
+ Default Code Language: 預設程式碼語言
278
+ Default Code Template: 預設程式碼模板
279
+ Delete discussion replies of own discussion: 刪除自己討論中的回覆
280
+ Delete discussion replies: 刪除討論回覆
281
+ Delete discussions: 刪除討論
282
+ Delete Domain: 刪除域
283
+ Delete own discussion replies: 刪除討論中自己的回覆
284
+ Delete own discussions: 刪除自己的討論
285
+ Delete own problem solution replies: 刪除題解中自己的回覆
286
+ Delete own problem solutions: 刪除自己的題解
287
+ Delete problem solution replies: 刪除題解的回覆
288
+ Delete problem solutions: 刪除題解
289
+ Delete Selected Roles: 刪除所選身分組
290
+ delete: 刪除
291
+ Delete: 刪除
292
+ Dependencies: 依賴
293
+ Description: 說明
294
+ Destination Domain: 目標域
295
+ Development: 開發
296
+ Difficulty Algorithm: 難度演算法
297
+ Difficulty by admin: 管理員設定的難度
298
+ Difficulty by algorithm: 演算法計算的難度
299
+ Difficulty displayed: 顯示的難度
300
+ Difficulty: 難度
301
+ Disabled: 關閉
302
+ Disconnected from the server. trying to reconnect...: 到伺服器的連線斷開。正在重新連線...
303
+ Discussion {1} not found.: 討論 {1} 不存在。
304
+ Discussion category {1} already exists.: 討論分類 {1} 已經存在。
305
+ Discussion category {1} not found.: 討論分類 {1} 不存在。
306
+ Discussion node {1} already exists.: 討論節點 {1} 已經存在。
307
+ Discussion node {1} not found.: 討論節點 {1} 不存在。
308
+ Discussion Nodes: 討論節點
309
+ discussion_create: 建立討論
310
+ discussion_edit: 編輯討論
311
+ discussion_main: 討論
312
+ discussion_node: 討論
313
+ Discussion: 討論
314
+ Discussions: 討論
315
+ Dismiss: 忽略
316
+ Display name {1} you want to set is used by others.: 您想要設定的顯示名 {1} 已經被其他人使用了。
317
+ Display Name: 顯示名
318
+ display_name: 顯示名
319
+ Do not discuss solutions otherwise you will be regarded as cheating and then lose qualifications.: 請勿討論解法,否則以作弊論處並且將失去參賽資格。
320
+ Document {2} not found.: 檔案 {2} 不存在。
321
+ Domain {0} already exists.: 域 {0} 已經存在。
322
+ Domain {0} is bulit-in and cannot be modified.: 域 {0} 為內建,不可修改。
323
+ Domain {0} not found.: 域 {0} 不存在。
324
+ Domain ID cannot be changed once the domain is created.: 在建立後不能更改 ID。
325
+ Domain ID: 域 ID
326
+ Domain Settings: 域設定
327
+ domain_dashboard: 管理域
328
+ domain_discussion: 討論節點
329
+ domain_edit: 編輯域資料
330
+ domain_join: 加入域
331
+ domain_main: 首頁
332
+ domain_permission: 管理許可權
333
+ domain_role: 管理身分組
334
+ domain_user: 管理使用者
335
+ domain: 域
336
+ Domain: 域
337
+ Don't have an account?: 還沒有賬戶?
338
+ Don't show again: 不再顯示
339
+ Done: 已結束
340
+ Download All: 下載全部
341
+ Download Dataset: 下載資料集
342
+ Download Selected: 下載選中
343
+ Download: 下載
344
+ Downloading...: 下載中...
345
+ Downvote: 差評
346
+ Duration (hours): 持續時間 (小時)
347
+ Duration: 持續時間
348
+ Edit any contests: 修改任意的比賽
349
+ Edit any homework: 修改任意功課
350
+ Edit Contest: 編輯比賽
351
+ Edit description of this domain: 修改此域描述
352
+ Edit discussion replies of own discussion: 修改自己討論中的回覆
353
+ Edit discussion replies: 修改討論的回覆
354
+ Edit discussions: 修改討論
355
+ Edit Domain: 編輯域
356
+ Edit Homework: 編輯功課
357
+ Edit own contests: 修改自己的比賽
358
+ Edit own discussion replies: 修改討論中自己的回覆
359
+ Edit own discussions: 修改自己的討論
360
+ Edit own homework: 修改自己的功課
361
+ Edit own problem solution replies: 修改題解中自己的回覆
362
+ Edit own problem solutions: 修改自己的題解
363
+ Edit own problems: 修改自己的題目
364
+ Edit own training plans: 修改自己的訓練計劃
365
+ Edit permissions of a role: 修改身分組許可權
366
+ Edit problem solution replies: 修改題解的回覆
367
+ Edit problem solutions: 修改題解
368
+ Edit Problem: 編輯題目
369
+ Edit problems: 修改題目
370
+ Edit Profile: 編輯個人資訊
371
+ Edit training plans: 修改訓練計劃
372
+ Edit: 編輯
373
+ Edited at: 修改於
374
+ Edited: 已修改
375
+ Email Visibility: Email 可見性
376
+ Email: 電子郵件
377
+ Enabled: 開啟
378
+ End at: 結束於
379
+ End Date: 結束日期
380
+ End Time: 結束時間
381
+ Enroll Training: 參加訓練
382
+ Enrolled: 已參加
383
+ Enrollees: 參加人數
384
+ error: 錯誤
385
+ Errors detected in the config. Confirm save?: 配置中存在錯誤。確認儲存?
386
+ Evaluated difficulty: 估計的難度
387
+ Exit: 退出
388
+ expand: 展開
389
+ Expire: 過期
390
+ Export All Code: 匯出所有原始碼
391
+ Export as {0}: 匯出為 {0}
392
+ Extension (days): 最長延期(日)
393
+ Extension Score Penalty: 延期遞交扣分規則
394
+ Extra Files Config: 額外檔案設定
395
+ Failed to fetch registration data.: 獲取註冊資料失敗。
396
+ Failed to join the domain. You are already a member.: 加入域失敗,您已是該域的成員。
397
+ Failed to parse subtask.: 無法解析子任務資訊。
398
+ Failed to parse testcase.: 無法解析測試點資訊。
399
+ Feedback: 反饋
400
+ Field {0} or {1} validation failed.: 欄位 {0} 或 {1} 驗證失敗。
401
+ Field {0} validation failed.: 欄位 {0} 驗證失敗。
402
+ File has been deleted.: 檔案已被刪除。
403
+ File has been renamed.: 檔案已被重新命名。
404
+ File saved.: 檔案已成功儲存。
405
+ file too large: 檔案過大
406
+ File uploaded successfully.: 上傳檔案成功
407
+ File: 檔案
408
+ Filename: 檔名
409
+ Files: 檔案
410
+ Filter: 過濾
411
+ First of Contest: 全場一血
412
+ First of Problem: 題目一血
413
+ fontFamily: 字型
414
+ Footer: 頁尾
415
+ Footnote: 腳註
416
+ For better problem version management and validation, we suggest using Polyhedron to prepare problems.: 為了更好的題目版本管理和檢查,我們推薦使用 Polyhedron 來準備演算法競賽題目。
417
+ Forgot Password and/or Username: 忘記密碼和/或使用者名稱
418
+ Forgot password or username?: 忘記密碼或者使用者名?
419
+ Formula blocks: 公式區塊
420
+ Freeze scoreboard with N minutes remaining: 在賽事剩餘N分鐘時封榜
421
+ Keep scoreboard hidden even after contest ends: 即使比賽結束後也保持成績表隱藏
422
+ fs_upload: 上傳檔案
423
+ Gender Visibility: 性別可見性
424
+ Gender: 性別
425
+ Generate testdata is not supported for this problem type.: 此題目型別不支援生成測試資料。
426
+ Generate Testdata: 生成測試資料
427
+ Generate: 生成
428
+ Gravatar URL Prefix: Gravatar地址字首
429
+ Group / UID: 小組或 UID
430
+ Group Assignment (Optional): 小組分配 (選填)
431
+ Group Name: 名稱
432
+ Hard Deadline: 最終截止時間
433
+ Hash: 雜湊
434
+ Have ALL PERMISSIONS in this domain: 在此域中擁有全部許可權
435
+ He: 他
436
+ Help: 幫助
437
+ Hidden: 隱藏
438
+ Hide all tags: 隱藏所有標籤
439
+ Hide categorical tags: 隱藏分類標籤
440
+ Hide tags: 隱藏標籤
441
+ Highlight discussions: 高亮討論
442
+ Highlight: 高亮討論
443
+ Hint: 提示
444
+ Hint::icon::difficulty: Hydro 中題目的難度,根據遞交數、通過率以及每個遞交的遞交時間和評測結果,綜合計算得出,可能不準確。
445
+ Hint::icon::switch_account: 作為超級管理員,您可以直接切換到其他人的賬戶。
446
+ Hint::icon::testdata: <a href="https://hydro.js.org/docs/Hydro/user/testdata" target="_blank">請參照文件說明</a>
447
+ Hint::page::main: 歡迎來到 Hydro! 您可在右上角註冊或登入。此類提示僅會顯示一次。
448
+ Hint::page::problem_detail: 這是題目詳情頁面。您可點選右側“進入線上程式設計模式"開始編寫您的程式碼。
449
+ Hint::page::problem_files: 您可以將檔案或壓縮包拖拽至對應區域來上傳檔案。點選檔名線上編輯或按住 Ctrl 後點選檔名下載單個檔案。
450
+ Hint::page::problem_main: 這是題目列表頁面。您可在頁面右側進行篩選或搜尋。
451
+ Hitokoto: 一言
452
+ home_account: 賬戶設定
453
+ home_domain_account: 當前域的設定
454
+ home_domain_create: 建立域
455
+ home_domain: 我的域
456
+ home_messages: 站內訊息
457
+ home_preference: 偏好設定
458
+ home_security: 安全設定
459
+ homepage: 首頁
460
+ Homework Introduction: 功課介紹
461
+ Homework Maintainer: 作業管理員
462
+ Homework scoreboard is not visible.: 目前無法檢視功課成績表。
463
+ homework_create: 建立功課
464
+ homework_detail_problem_submit: 遞交作業題目
465
+ homework_edit: 編輯功課
466
+ homework_main: 功課
467
+ homework_scoreboard: 成績表
468
+ homework_status: 作業成績表
469
+ Homework: 功課
470
+ Host: 主持人
471
+ hour(s): 小時
472
+ If enabled, source code will be emailed to you after the submission is accepted.: 如果啟用,在您通過題目後,原始碼會以 Email 的形式傳送給您。
473
+ If left blank, the built-in template of the corresponding language will be used.: 若留空,則將使用對應語言的內建程式碼模板。
474
+ Ignore trailing space and enter.: 忽略行末空格與檔案尾回車。
475
+ Images With Size: 指定大小的圖片
476
+ Images: 圖片
477
+ Import from: 匯入自
478
+ Import Problem: 匯入題目
479
+ Import: 匯入
480
+ In 1 day: 一天後
481
+ In 1 month: 一個月後
482
+ In 1 week: 一週後
483
+ In 3 days: 三天後
484
+ In 3 hours: 三個小時後
485
+ In following contests: 在下列比賽中
486
+ In following homework: 在以下功課中
487
+ In following training plans: 在下列訓練計劃中
488
+ In Progress: 進行中
489
+ Information: 資訊
490
+ Initialize: 初始化
491
+ Inline codes: 行內程式碼
492
+ Inline formulas: 行內公式
493
+ Input: 輸入
494
+ Insert Code: 插入程式碼
495
+ Insert Image: 插入影象
496
+ Installed Modules: 已安裝的模組
497
+ Instead of copying the test data directly, the test data of the copied problems will be linked to the test data of the source problems (called the source test data). Thus, the copied problems can observe the changes in the source test data. The permissions of the test data of the copied problems follow the source test data, e.g., you still might not download them but the judges can. By uploading some new test data, the link will be broken and the new test data will be used.: 雖然測試資料不會被複制,但是系統會將題目的測試資料連結到原題。因此在原題的資料被改動的時候,複製後的題目的資料也會同時改動。連結後的測試資料的許可權以原題為準,比如您可能依舊無法下載資料,但是評測機可以。在題目設定頁面中可以通過上傳新的測試資料的方式,這個資料連結會被刪除,以後將使用您的新測試資料。
498
+ Introduce must not exceed 500 characters and it will be shown in the list view.: 簡介不能超過 500 個字元,將顯示在列表頁面中。
499
+ Introduce: 簡介
500
+ Invalid password for user {0}.: 使用者 {0} 的密碼錯誤。
501
+ Invalid RegExp: 無效的正規表示式。
502
+ Invalid: 無效
503
+ Invitation Code: 邀請碼
504
+ IO: 輸入輸出
505
+ IOI(Strict): IOI(嚴格)
506
+ Is rated: 計入排名
507
+ It works!: 動起來了!
508
+ Italic: 斜體
509
+ Join Domain to Create a Discussion: 加入域後建立討論
510
+ Join Domain to Submit: 加入域後遞交
511
+ Join Domain: 加入域
512
+ Join: 加入
513
+ Judge Config: 評測設定
514
+ Judge Status: 評測狀態
515
+ judge_extra_files: 評測額外檔案
516
+ judge_playground: 評測遊樂場
517
+ Judged At: 評測時間
518
+ Judged By: 評測機
519
+ Judging Queue: 評測佇列
520
+ just now: 剛剛
521
+ Keep current expiration: 保持當前過期設定
522
+ Langs Config: 語言設定
523
+ langs: 語言
524
+ Language: 語言
525
+ last active at: 最後活動於
526
+ last login at: 最後登入於
527
+ Last Submit At: 最後遞交於
528
+ Last Update At: 最後活動時間
529
+ LaTeX Expressions: LaTeX 表示式
530
+ Learn More: 瞭解更多
531
+ Leave blank to use numeric pid.: 留空來使用數字題號。
532
+ Leave empty for default: 留空以使用預設
533
+ Leave: 離開
534
+ Ledo: 樂多
535
+ Legacy mode: 相容模式
536
+ Light: 亮色
537
+ Limit user to finish contest within N hours: 限制使用者在N小時內完成比賽
538
+ Limitations: 限制
539
+ Linked Accounts: 關聯賬戶
540
+ Links: 連結
541
+ List View: 列表檢視
542
+ Live: 正在進行
543
+ Live...: 正在進行…
544
+ Loading editor...: 正在載入編輯器...
545
+ Loading file...: 正在載入檔案內容...
546
+ Location: 位置
547
+ Login to Attend Contest: 登入後參加比賽
548
+ Login to Claim Homework: 登入以認領功課
549
+ Login to Create a Discussion: 登入後建立討論
550
+ Login to Submit: 登入後遞交
551
+ Login with Github: 使用 Github 登入
552
+ Login with Google: 使用 Google 登入
553
+ Login: 登入
554
+ Logout All Sessions: 登出所有會話
555
+ Logout This Session: 登出該會話
556
+ Logout: 登出
557
+ Lost Password: 忘記密碼
558
+ Lucky: 試試手氣
559
+ manage_config: 配置管理
560
+ manage_dashboard: 概況
561
+ manage_join_applications: 加域申請
562
+ manage_module: 管理模組
563
+ manage_script: 指令碼管理
564
+ manage_setting: 系統設定
565
+ manage_user_priv: 使用者許可權
566
+ manage: 管理
567
+ Manage: 管理
568
+ Manager: 管理
569
+ Mark Green: 標綠
570
+ Mark Red: 標紅
571
+ Mark user as joined using admin privilege: 使用管理員許可權將使用者標記為已加入
572
+ Mark Yellow: 標黃
573
+ Memory Cost: 記憶體佔用
574
+ Memory Info: 記憶體資訊
575
+ Memory: 記憶體
576
+ Message {0} not found.: 訊息 {0} 不存在。
577
+ Messages: 訊息
578
+ Method: 方法
579
+ Microsoft Yahei: 微軟雅黑
580
+ Moderator: 管理員
581
+ Month: 月
582
+ Monthly Popular: 月度最受歡迎
583
+ More: 更多
584
+ Most Upvoted Solutions: 最熱題解
585
+ Move to subtask: 移動到子任務
586
+ Multi Platform Authenticator: 跨平臺認證器
587
+ My Domains: 我的域
588
+ My Files: 我的檔案
589
+ My Profile: 我的資料
590
+ My Recent Submissions: 我最近的遞交記錄
591
+ My Role: 我的身分組
592
+ My Submissions: 我的遞交
593
+ name: 名稱
594
+ Name: 名稱
595
+ Nav Logo Dark: 左上角小圖示(暗)
596
+ Nav Logo Dark@2x: 左上角圖示(暗)(大)
597
+ Nav Logo Light: 左上角圖示(亮)
598
+ Nav Logo Light@2x: 左上角圖示(亮)(大)
599
+ Network error: 網路錯誤
600
+ Never expire: 從不過期
601
+ New Email: 新電子郵件
602
+ New Filename: 新檔名
603
+ New filename(s): 新檔名
604
+ New Password: 新密碼
605
+ New Training Plan: 新訓練計劃
606
+ New: 建立
607
+ No {0} at current.: 當前沒有{0}。
608
+ No changes to make.: 沒有任何修改。
609
+ No comments so far...: 目前還沒有評論...
610
+ No discussion yet...: 目前沒有討論…
611
+ No group available: 沒有可用小組
612
+ No Permission to Attend Contest: 您沒有許可權參加比賽
613
+ No Permission to Claim Homework: 您沒有許可權認領功課
614
+ No Permission to Create a Discussion: 您沒有許可權建立討論
615
+ No Permission to Submit: 您沒有許可權遞交
616
+ No problem.: 沒有題目。
617
+ No solutions so far...: 目前還沒有題解...
618
+ No submission language available for this problem.: 本題沒有可用的提交語言。
619
+ No Submissions: 沒有遞交
620
+ No target available: 無可用目標
621
+ No testcase here: 此處沒有測試點
622
+ No user is allowed to join this domain: 沒有使用者可以自助加入此域
623
+ no_translation_warn: <blockquote class="warn">這部分內容正在翻譯。</blockquote>
624
+ None: 無
625
+ Not Attended: 未參加
626
+ Not available: 不可用
627
+ Not Claimed: 未認領
628
+ Not Enrolled: 未參加
629
+ Not joined yet: 暫未加入
630
+ Not started with a number: 不以數字開頭
631
+ Not wrapped with space: 兩側不含空格
632
+ Numeric PID: 數字題號
633
+ objective: 客觀題
634
+ Oh, the user doesn't have any contributions!: 啊哦,這個使用者還沒貢獻過題目~
635
+ Oh, the user hasn't created any discussions yet!: 這個使用者還沒有釋出過討論
636
+ Oh, the user hasn't submitted yet!: 啊哦,此使用者尚未遞交......
637
+ Oh, there are no tasks that match the filter!: 喔,目前沒有符合過濾條件的任務。
638
+ Oh, there is no submission!: 喔,還沒有評測記錄呢!
639
+ Oh, there is no task in the queue!: 喔,佇列中目前沒有任務。
640
+ Ok: 確定
641
+ Only A-Z, a-z, 0-9 and _ are accepted: 只接受 A-Z, a-z, 0-9 和 _
642
+ Oops, there are no results.: 呀,沒有結果。
643
+ Oops!: Oops!
644
+ Open in Problem Set: 在題庫中開啟
645
+ Open Polyhedron: 開啟 Polyhedron
646
+ Open Scratchpad: 進入線上程式設計模式
647
+ Open Since: 開始時間
648
+ Open Source: 開源
649
+ Open: 開放
650
+ Operating System: 作業系統
651
+ Ops: 運維
652
+ Or, with automatically filled invitation code: 或者,這是可以自動填寫邀請碼的
653
+ Ordered List: 有序列表
654
+ Original content: 原始內容
655
+ Original filename(s): 原始檔名
656
+ Original Score: 原始得分
657
+ OS Info: 系統資訊
658
+ Output: 輸出
659
+ Over {0} problems: 超過 {0} 道題目
660
+ Owner: 所有者
661
+ page.problem_detail.sidebar.show_category: 點選顯示
662
+ page.training_detail.invalid_when_not_enrolled: 未參加訓練計劃時您不能檢視題目詳情。
663
+ pager_first: « 第一頁
664
+ pager_last: 末頁 »
665
+ pager_next: 下一頁 ›
666
+ pager_previous: ‹ 前一頁
667
+ Params: 引數
668
+ Partic.: 參賽人數
669
+ Password reset mail has been sent to your email.: 密碼重置郵件已傳送到您的電子郵箱。
670
+ Password: 密碼
671
+ Passwords don't match.: 驗證密碼不匹配。
672
+ Path {0} not found.: 路徑 {0} 不存在。
673
+ Peak Memory: 峰值記憶體
674
+ Peak Time: 峰值時間
675
+ perm_contest: 比賽
676
+ perm_discussion: 討論
677
+ perm_general: 一般
678
+ perm_homework: 作業
679
+ perm_problem_solution: 題解
680
+ perm_problem: 題庫
681
+ perm_record: 記錄
682
+ perm_training: 訓練
683
+ Permission Control: 許可權控制
684
+ Permission: 許可權
685
+ Permissions: 許可權
686
+ Pick a problem randomly based on the current filter.: 根據當前過濾條件隨機選擇一道題
687
+ Pin: 置頂
688
+ PingFang SC: 蘋方簡體
689
+ Plan: 計劃
690
+ Please attend contest to see the problems.: 請參加比賽來檢視題目。
691
+ Please claim the assignment to see the problems.: 認領功課後方可檢視題目。
692
+ Please follow the instructions on your device to complete the verification.: 請按照您裝置上的指示完成驗證。
693
+ Please select at least one file to perform this operation.: 請選擇至少一個檔案來執行此操作。
694
+ Please select at least one problem to perform this operation.: 請選擇至少一道題目來執行此操作。
695
+ Please select at least one role to perform this operation.: 請選擇至少一個身分組來進行操作。
696
+ Please select at least one user to perform this operation.: 請選擇至少一個使用者來進行操作。
697
+ Please set the balloon color for each problem first.: 請先為每道題設定氣球顏色。
698
+ Please wait until contest host unfreeze the scoreboard.: 請等待比賽主辦方解除封榜。
699
+ Polyhedron supports managing problem version history, testing solutions, checking time limits, composing contest statements, cooperation and much more.: Polyhedron 支援題目版本管理,程式碼測試,時限檢驗,製作比賽題面,多人協作等等功能。
700
+ Preference Settings: 偏好設定
701
+ preferredPrefix_hint: 此選項用於重排題號。例如,若題目包中所給的題號分別是 P1001, P1002, P1003,而此選項填寫了 T,則匯入後三道題的題號分別為 T1001, T1002 和 T1003。
702
+ Preparing Upload...: 準備上傳...
703
+ Pretest Data: 自測資料
704
+ Pretest Your Code: 使用自定義資料測試
705
+ Pretest: 自測
706
+ Pretest?: 自測?
707
+ Print New File: 列印新檔案
708
+ Privacy: 隱私
709
+ Privilege: 許可權
710
+ Problem {1} not found.: 題目 {1} 不存在。
711
+ Problem Category: 標籤
712
+ Problem Data: 題目資料
713
+ Problem ID cannot be a pure number. Leave blank if you want to use numberic id.: 題目ID不能為純數字。
714
+ 若要自動分配數字ID請將此處留空。
715
+ Problem ID List: 題目 ID 列表
716
+ Problem List: 供題列表
717
+ Problem Set: 題庫
718
+ Problem Settings: 題目設定
719
+ Problem Solution List: 題解列表
720
+ Problem Solution: 題解列表
721
+ Problem Tags Visibility: 題目標籤可見性
722
+ Problem Tags: 題目標籤
723
+ Problem Type: 題目型別
724
+ problem_config: 評測設定
725
+ problem_create: 建立題目
726
+ problem_edit: 編輯題目
727
+ problem_import: 匯入題目
728
+ problem_main: 題庫
729
+ problem_solution: 題解
730
+ problem_submit: 遞交程式碼
731
+ problem_type.communication: 通訊題
732
+ problem_type.default: 傳統題
733
+ problem_type.interactive: 互動題
734
+ problem_type.objective: 客觀題
735
+ problem_type.remote_judge: 遠端評測題
736
+ problem_type.submit_answer: 提交答案題
737
+ problem-category-delim: '|'
738
+ problem-subcategory-delim: 、
739
+ Problem: 題目
740
+ problem.import.additional_file: '## 附加檔案'
741
+ problem.import.hint: '## 提示'
742
+ problem.import.input_format: '## 輸入格式'
743
+ problem.import.limit_and_hint: '## 限制'
744
+ problem.import.output_format: '## 輸出格式'
745
+ problem.import.problem_description: '## 題目描述'
746
+ problem.stats.sort.date: 提交時間
747
+ problem.stats.sort.length: 程式碼長度
748
+ problem.stats.sort.memory: 記憶體佔用
749
+ problem.stats.sort.time: 執行時間
750
+ Problems created in polyhedron can be directly imported into any Hydro based online judge system.: Polyhedron 中的題目可以直接匯入任何基於 Hydro 的線上測評系統。
751
+ Problems Sets: 題庫
752
+ Problems: 題目
753
+ Processing...: 處理中...
754
+ Profile Background Image: 背景圖片
755
+ Progress: 進度
756
+ Properties: 屬性
757
+ Public: 公開
758
+ Published at: 發表於
759
+ QQ Group: QQ 群
760
+ QQ Visibility: QQ 可見性
761
+ Quit Scratchpad: 退出線上程式設計模式
762
+ Quote: 引用
763
+ Rank: 排名
764
+ Ranked Users: 排名使用者
765
+ ranking: 排名
766
+ Read all record codes: 讀取所有記錄的程式碼
767
+ Read data of own problems: 讀取自己題目的資料
768
+ Read data of problem: 讀取題目資料
769
+ Ready (☆▽☆): 馬上開始 (☆▽☆)
770
+ Ready: 即將開始
771
+ Recent {0} Records: 最近 {0} 條記錄
772
+ Recent Activities: 最近活動
773
+ Recent Problems: 最新題目
774
+ Recent Solutions: 最近題解
775
+ Recent Submissions: 最近遞交
776
+ Recently Created Discussions: 最近建立的討論
777
+ Recommended: 推薦
778
+ Record {0} not found.: 記錄 {0} 不存在。
779
+ record_detail: 記錄詳情
780
+ record_main: 評測佇列
781
+ Records: 評測記錄
782
+ Reference link copied to clipboard!: 引用連結已複製到剪貼簿。
783
+ Refresh Records: 重新整理評測記錄
784
+ Refresh: 重新整理
785
+ RegExp supported, quote with "/": 支援正規表示式,使用 "/" 包裹。
786
+ Registered at: 註冊於
787
+ Rejudge all submissions: 重測整題
788
+ Rejudge problems: 重測題目
789
+ Rejudge records: 重測記錄
790
+ Rejudge: 重測
791
+ Related Discussions: 相關討論
792
+ Related: 相關
793
+ Remember me: 記住我
794
+ Remove Selected Group: 移除所選小組
795
+ Remove Selected User: 將所選使用者移出
796
+ Remove Selected: 移除選中
797
+ Remove this data: 移除這組資料
798
+ Remove: 移除
799
+ Rename Selected: 重新命名選中
800
+ Repeat Password: 重複密碼
801
+ Replace with: 替換為
802
+ Reply discussions: 回覆討論
803
+ Reply problem solutions: 回覆題解
804
+ reply: 回覆
805
+ Reply: 回覆
806
+ Report: 舉報
807
+ Require Invitation Code: 需要邀請碼
808
+ required: 必填
809
+ Reset Password or Find Username: 重置密碼或找回使用者名稱
810
+ Reset Password: 重置密碼
811
+ Reset: 重置
812
+ Restart: 重新啟動
813
+ Role Assignment: 身分組分配
814
+ Role has been updated to {0} for selected users.: 所選使用者身分組已更新為 {0}。
815
+ Role has been updated to {0}.: 身分組已更新為 {0}。
816
+ Role name can only contains numbers, letters and underscores.: 身分組名稱只能包含數字、字母和下劃線。
817
+ Role: 身分組
818
+ Roles: 身分組
819
+ RP Algorithm: RP 演算法
820
+ rpDetailText_contest: 比賽
821
+ rpDetailText_problem: 題目
822
+ Rule: 規則
823
+ Run Pretest: 執行自測
824
+ Run: 執行
825
+ Sample Input: 輸入資料
826
+ Sample Output: 輸出資料
827
+ Save All Changes: 儲存所有修改
828
+ Saved session: 已儲存的會話
829
+ Saving file...: 正在儲存檔案...
830
+ score canceled: 成績取消
831
+ Score: 分數
832
+ Scoreboard (Hidden): 成績表 (隱藏)
833
+ Scoreboard: 成績表
834
+ Scoring method: 評分方式
835
+ Scripts: 指令碼
836
+ Search contests...: 搜尋比賽...
837
+ Search homeworks...: 搜尋作業...
838
+ Search: 搜尋
839
+ Secret (visible to admins): 保密(對管理員可見)
840
+ Secret: 保密
841
+ Section: 章節
842
+ Security: 安全
843
+ Select a node to create discussion.: 選擇一個節點來發表討論。
844
+ Select a role: 選擇一個身分組
845
+ Select All: 全選
846
+ Select Category: 選擇標籤
847
+ Select None: 全不選
848
+ Select Problems: 選擇題目
849
+ Select User: 選擇使用者
850
+ Selected categories: 已選標籤
851
+ Selected files have been deleted.: 所選檔案已被刪除。
852
+ Selected files have been renamed.: 所選檔案已被重新命名。
853
+ Selected problems have been deleted.: 所選題目已被刪除。
854
+ Selected problems have been hided.: 所選題目已被隱藏。
855
+ Selected problems have been unhided.: 所選題目已取消隱藏。
856
+ Selected roles have been deleted.: 所選身分組已刪除。
857
+ Selected users have been removed from the domain.: 所選使用者已從此域中移除。
858
+ Send By: 遞送者
859
+ Send Code after acceptance: 通過題目後傳送原始碼
860
+ Send Message: 傳送站內資訊
861
+ Send Password Reset Email: 傳送密碼重置郵件
862
+ Send Verification Email: 傳送驗證郵件
863
+ Send: 傳送
864
+ Seperated with ',': 用 ',' 分隔
865
+ Service Status: 服務狀態
866
+ Set Color: 設定顏色
867
+ Set Privilege: 設定許可權
868
+ Set Role: 設定身分組
869
+ Set Roles for Selected User: 設定所選使用者的身分組
870
+ Set Roles for selected users: 為所選使用者設定身分組
871
+ Set Score for Contest: 設定賽時分數
872
+ Set time and memory limits: 設定時空限制
873
+ setting_customize: 自訂
874
+ setting_display: 顯示偏好
875
+ setting_domain: 域設定
876
+ setting_info_domain: 個人資訊
877
+ setting_info: 個人資訊
878
+ setting_privacy: 隱私
879
+ setting_usage: 使用偏好
880
+ Settings: 設定
881
+ Share: 分享
882
+ She: 她
883
+ Show all tags: 顯示所有標籤
884
+ Show MOD badge: 展示 MOD 徽章
885
+ Show tags: 顯示標籤
886
+ Show: 顯示
887
+ Sign In: 登入
888
+ SIGN IN: 登入
889
+ Sign up mail has been sent to your email.: 註冊郵件已經傳送到您的電子郵箱。
890
+ Sign Up Now: 現在註冊
891
+ Sign Up: 註冊
892
+ Size: 大小
893
+ Solutions Liked: 題解被贊
894
+ Solutions: 題解
895
+ Solve: 解決
896
+ Solved: 解決
897
+ Some problems in the training are missing or you do not have permission to view them.: 訓練中某些題目缺失或您沒有許可權檢視。
898
+ Sorry, there are no problems in the problem set.: 題庫中沒有題目
899
+ Sorry, there are no training plans.: 目前沒有訓練計劃。
900
+ Sorry, there are no users in this domain.: 對不起,此域中沒有使用者。
901
+ Sorry: 對不起
902
+ Sort by: 排序
903
+ sort::default: 預設排序
904
+ sort::recent: 最新題目
905
+ Source type: 來源型別
906
+ Source: 來源
907
+ Standard mode: 標準模式
908
+ Standard Program: 標準程式
909
+ Star Topic: 收藏討論
910
+ Star: 收藏
911
+ Starred Users: 關注使用者
912
+ Start at: 開始於
913
+ Statistics: 統計
914
+ Status is hidden: 狀態已隱藏
915
+ Status: 狀態
916
+ Submission language limit: 提交語言限制
917
+ Submission Statistics: 遞交統計
918
+ Submission: 遞交
919
+ Submissions: 遞交
920
+ Submit At: 遞交時間
921
+ Submit By: 遞交者
922
+ Submit problem: 遞交題目
923
+ Submit Solution: 遞交評測
924
+ Submit Time: 遞交時間
925
+ Submit to Judge: 遞交以評測
926
+ Submit Your Code: 遞交程式碼進行正式評測
927
+ Submit: 遞交
928
+ Submitted: 已遞交
929
+ Subtask {0}: 子任務 {0}
930
+ Subtasks: 子任務
931
+ SuperUser: 超級管理員
932
+ SuperUser's Password: 超級管理員的密碼
933
+ Support: 支援
934
+ Switch account: 切換賬戶
935
+ Tags: 標籤
936
+ Task Settings: 任務設定
937
+ tasks_list: 任務列表
938
+ Technical Information: 技術資訊
939
+ Temporary session: 臨時會話
940
+ Terms of Service: 服務條款
941
+ Test data comes from: 測試資料來自
942
+ Testdata Config: 測試資料配置
943
+ testdata: 測試資料
944
+ Testdata: 測試資料
945
+ Text: 文字
946
+ The 'default' role applies to ALL REGISTERED USER.: default 身分組作用於<b>所有已註冊使用者</b>
947
+ The contest is a flexible time contest. You need to complete the contest within a specified time after you attended.: 本場比賽採用靈活時間模式,你需要在參加後的指定時間內完成比賽。
948
+ The contest is ended. New submissions will be treated as correction submissions and will not be counted in the contest.: 比賽已經結束。新提交將被視為補題提交,不計入比賽成績。
949
+ The group to join when user joining the domain.: 加入域時自動加入的小組。
950
+ The homework's deadline is due but in extension. You can still submit for this problem but your score will be penalized.: 功課已經截止,但處於延期時間內。您此時遞交的題目無法獲得全部分數。
951
+ The invitation code to enter to successfully join the domain. You can only use letters and numbers in the code and it should not be longer than 64 characters.: 加入此域的邀請碼。您只能使用字母和數字,並且不能長於 64 個字元。
952
+ The invitation code you provided is invalid.: 您提供的邀請碼無效。
953
+ The link will be expired at {0}: 連結將於 {0} 過期
954
+ The role to assign when user joining the domain.: 使用者加入此域時分配的身分組。
955
+ The scoreboard was frozen with {0} minutes remaining at {1} - submissions in the last {0} minutes of the contest are still shown as pending.: 比賽已於 {1} 在剩餘 {0} 分鐘時封榜 - 比賽最後 {0} 分鐘的提交將顯示為待定。
956
+ The uploaded file is too long.: 上傳的檔案太長。
957
+ The user is already a member of the domain.: 該使用者已是域的成員。
958
+ The user is too lazy to leave something here...: 該使用者太懶,這裡啥也沒寫 (´・ω・`)
959
+ Their account will not be deleted and they will be with the guest role until they re-join the domain.: 他們的賬號不會被刪除,並且之後將以 guest 身分組訪問,直到他們重新加入域。
960
+ Theme: 主題
961
+ There are no contests...: 沒有比賽…
962
+ There are no files currently.: 目前還沒有檔案。
963
+ There is no homework so far ╰(*°▽°*)╯: 目前沒有功課 ╰(*°▽°*)╯
964
+ This contest is not live.: 比賽沒有開始。
965
+ This email was sent by {0} automatically, and please do not reply directly.: 這封郵件由 {0} 自動傳送,請勿直接回復。
966
+ This homework is not open and you cannot view problems.: 功課尚未開放,不能檢視題目。
967
+ This homework is not open.: 功課尚未開放遞交。
968
+ This is the current session: 這是當前的會話
969
+ This message will be presented to those whose submissions are accepted.: 這條訊息將會被展示給通過此題的使用者。
970
+ This page is only for pasting code from other sources.: 此頁面僅用於貼上程式碼。
971
+ This page needs JavaScript to work.: 這個頁面需要 Javascript。
972
+ This section cannot be challenged at present, so please complete the following sections first: 該章節目前不可挑戰,請先完成以下章節
973
+ This type of files are not allowed to be uploaded.: 不允許上傳這種檔案。
974
+ This user was banned.: 此使用者已被封禁。
975
+ Time (Seconds): 耗時 (秒)
976
+ Time Cost: 耗時
977
+ Time Extension: 延期
978
+ Time: 時間
979
+ timeago_locale: zh_TW
980
+ Timezone: 時區
981
+ title: 標題
982
+ Title: 標題
983
+ To get a better editing experience, with code highlighting and test runs, please go back to the problem detail page and use 'Open Scratchpad' button.: 為了獲得更好的編輯體驗,包括程式碼高亮和測試執行功能,請返回題目詳情頁面並點選“進入線上程式設計模式”按鈕。
984
+ To join the domain, users can click the "Join Domain" button on "My Domain" page.: 要加入域,使用者可以點選“我的域”頁面中的“加入域”按鈕。
985
+ Toggle Pretest Panel: 切換自測面板
986
+ Toggle Preview: 切換預覽
987
+ Toggle Records Panel: 切換評測記錄面板
988
+ Tools: 工具
989
+ Total Score: 總分
990
+ Total Time (Seconds): 總耗時 (秒)
991
+ Total Time: 總耗時
992
+ Total: 總計
993
+ Training requirement is not satisfied.: 不滿足訓練條件。
994
+ training_create: 建立訓練
995
+ training_edit: 編輯訓練
996
+ training_main: 訓練
997
+ Training: 訓練
998
+ Transports: 支援型別
999
+ Tried: 嘗試
1000
+ Two Factor Authentication Code: 兩步驗證碼
1001
+ Two Factor Authentication: 兩步驗證
1002
+ Type: 型別
1003
+ UI Language: 使用者介面語言
1004
+ Uncompleted: 未完成
1005
+ Unique: 唯一
1006
+ Unknown field {0}.: 未知欄位 {0}。
1007
+ Unknown: 未知
1008
+ Unlimited: 無限制
1009
+ Unordered List: 無序列表
1010
+ Unrank: 打星
1011
+ Unstar Topic: 取消收藏
1012
+ Unstar: 取消收藏
1013
+ Unsupported configure this type of problem. Please refer to the documentation.: 暫不支援快捷配置此類題目。請參照文件操作。
1014
+ Update Permission: 更新許可權
1015
+ Update Settings: 更新設定
1016
+ Update: 更新
1017
+ Upload Failed: 上傳失敗
1018
+ Upload File: 上傳檔案
1019
+ Upload Problem: 上傳題目
1020
+ Upload: 上傳
1021
+ Uploaded By: 上傳者
1022
+ Uploading files...: 正在上傳檔案...
1023
+ Uploading... ({0}%): 正在上傳... ({0}%)
1024
+ Uploading...: 正在上傳...
1025
+ Upvote: 好評
1026
+ Usage exceeded.: 用量超限。
1027
+ Use admin specificed: 由管理員指定
1028
+ Use algorithm calculated: 使用演算法計算
1029
+ Use Authenticator: 使用認證器
1030
+ Use average of above: 使用上面的平均值
1031
+ Use Password: 使用密碼
1032
+ Use Subtasks Mode: 使用子任務模式
1033
+ Use TFA Code: 使用兩步驗證碼
1034
+ User {0} already exists.: 使用者 {0} 已存在。
1035
+ User {0} not found.: 使用者 {0} 不存在。
1036
+ User can join this domain by visiting the following URL: 使用者可以訪問此連結來加入此域
1037
+ User ID: 使用者 ID
1038
+ User Privilege: 使用者許可權
1039
+ User will no longer be allowed to join the domain after expiration.: 過期後,使用者將不能加入此域。
1040
+ user_detail: 使用者
1041
+ user_extra_files: 使用者額外檔案
1042
+ user_login: 登入
1043
+ user_logout: 登出
1044
+ user_lostpass_mail_sent: 密碼重置郵件已傳送
1045
+ user_lostpass_with_code: 重置密碼
1046
+ user_lostpass: 忘記密碼
1047
+ user_register_with_code: 註冊
1048
+ user_register: 註冊
1049
+ User-defined role: 使用者定義的身分組
1050
+ User: 使用者
1051
+ Username / UID: 使用者名或 UID
1052
+ Username: 使用者名
1053
+ Users will have to manually join the domain first before selected roles can be applied.: 使用者需要先手動加入域才能應用此身分組分配。
1054
+ Users with those roles will be removed from the domain.: 擁有這些身分組的使用者將從此域中移除。
1055
+ Users: 使用者
1056
+ Using your {0} universal account: 使用您的 {0} 通用賬戶
1057
+ Valid for registered users who are not members of the domain: 對域外註冊使用者有效
1058
+ Valid for visitors: 對未登入的遊客有效
1059
+ Version: 版本
1060
+ Videos: 影片
1061
+ View contest scoreboard: 檢視比賽成績表
1062
+ View Contest: 檢視比賽
1063
+ View contests: 檢視比賽
1064
+ View Details: 檢視詳情
1065
+ View discussions: 檢視討論
1066
+ View hidden contest submission status and scoreboard: 檢視隱藏的比賽遞交狀態和成績表
1067
+ View hidden homework submission status and scoreboard: 翻閲隱藏的功課遞交狀態和成績表
1068
+ View hidden problems: 檢視隱藏的題目
1069
+ View homework scoreboard: 翻閲功課成績表
1070
+ View homework: 翻閲功課
1071
+ View Homework: 翻閲功課
1072
+ View or create discussion: 檢視與發表討論
1073
+ View or submit solution: 檢視與發表題解
1074
+ View Owned Problems: 檢視自己的題目
1075
+ View Owned Training Plans: 檢視自己的訓練計劃
1076
+ View problem solutions: 檢視題解
1077
+ View Problem: 檢視題目
1078
+ View problems: 檢視題目
1079
+ View this domain: 檢視此域
1080
+ View training plans: 檢視訓練計劃
1081
+ View Training: 檢視訓練計劃
1082
+ View: 檢視
1083
+ Visible to registered users: 對註冊使用者可見
1084
+ Visit: 檢視
1085
+ Vote problem solutions: 為題解投票
1086
+ Vote: 投票
1087
+ warn::admin:unsupportedbrowser: '身為超級管理員,您仍在使用過於老舊的瀏覽器。這些瀏覽器可能不支援 Hydro 管理面板的部分功能,我們強烈建議您升級到最新的 Chrome 瀏覽器。'
1088
+ We will check code similarity after this contest.: 我們會在賽後檢查程式碼相似度。
1089
+ WeChat Visibility: 微信可見性
1090
+ WeChat: 微信
1091
+ Week: 周
1092
+ WenQuanYi Micro Hei: 文泉驛
1093
+ What is domain?: 什麼是域?
1094
+ What is this?: 這是什麼?
1095
+ What's domain?: 什麼是域?
1096
+ What's script?: 什麼是指令碼?
1097
+ What's this?: 這是什麼?
1098
+ Whether to show tags in the problem list.: 是否在題目列表中顯示題目的標籤。
1099
+ wiki_help: 幫助
1100
+ Will be used as the domain icon.: 將被用作圖示。
1101
+ With this feature, you can copy problems that you can view from a domain to some other domain. Their title, content, tags and categories will be copied. However, their test data are not copied directly.: 您可以透過這個功能將某域下您能檢視的題目複製到其它域中,題目的標題、描述、標籤與分類將被複制過來。但是測試資料不會被直接複製。
1102
+ Write Your Comment: 發表您的評論
1103
+ Write Your Solution: 發表您的題解
1104
+ Year: 年
1105
+ You are currently in legacy mode. Some additional features will be unavailable. We strongly recommend switching to standard mode on a modern browser.: 您當前處於相容模式。某些功能在此模式下不可用。我們強烈建議在現代瀏覽器上切換為標準模式以獲得更好的體驗。
1106
+ You are invited to join {0}: 您被邀請加入 {0}
1107
+ You are not allowed to join the domain. The link is either invalid or expired.: 您無法加入該域,連結無效或已過期。
1108
+ You can also upload your avatar to Gravatar and it will be automatically updated here.: 你也可以將頭像上傳到 <a href="https://gravatar.com/">Gravatar</a>,本站的頭像將自動更新。
1109
+ You can create your own training plans and share them with others.: 您可以建立您自己的訓練計劃並且與他人分享。
1110
+ You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.: 該比賽已結束,您無法在比賽模式下遞交該題目。您可以點選“在題庫中開啟”以普通模式檢視和遞交本題。
1111
+ You cannot submit for this problem because the homework's deadline is due.: 功課已到達截止時間,您無法遞交了。
1112
+ You cannot visit this domain.: 您不能訪問此域。
1113
+ You don't have permission to upload file.: 您沒有許可權上傳檔案。
1114
+ You don't have the required permission ({0}) in this domain.: 您在該域中無相應許可權 ({0})。
1115
+ You don't have the required privilege.: 您沒有相應的特權。
1116
+ You don't own any domain and don't have privilege to create domain.: 您不擁有任何域也沒有建立域的特權。
1117
+ You have not submitted any solutions for this problem: 您在該題下沒有遞交過任何解答
1118
+ You have permission to create problems for this domain.: 您有許可權為此域建立題目。
1119
+ You have uncompleted domain creation operation. You can click "Continue" to finish the creation.: 您有未完成的建立域操作。您可以點選“繼續”來完成建立。
1120
+ You haven't attended this contest yet.: 您還沒有參加本次比賽。
1121
+ You haven't claimed this homework yet.: 您還未認領該功課。
1122
+ You may want to create a new role in 'Manage Role' page.: 您可能希望在右側管理身分組面板中新增一個新身分組。
1123
+ You need to enter the invitation code to join the domain.: 您需要輸入邀請碼來加入此域。
1124
+ You received a system message, click here to view.: 您收到一條系統通知,點選檢視。
1125
+ You're not logged in.: 您沒有登入。
1126
+ You've already attended this contest.: 您已經參加本次比賽。
1127
+ You've already claimed this homework.: 您已認領該功課。
1128
+ You've already voted.: 您已經投過票。
1129
+ Your account has two factor authentication enabled. Please choose an authenticator to verify.: 您的賬戶已啟用雙因素認證。請選擇一個驗證器來驗證。
1130
+ Your browser does not support WebAuthn or you are not in secure context.: 您的瀏覽器不支援WebAuthn或是您不在安全環境中。
1131
+ Your Device: 你的裝置
1132
+ Your permission: 您的許可權
1133
+ Your role: 您的身分組