@nocobase/client 2.0.0-alpha.6 → 2.0.0-alpha.61

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 (210) hide show
  1. package/.dumirc.ts +4 -4
  2. package/es/application/Application.d.ts +2 -1
  3. package/es/block-configs/BlockConfigsProvider.d.ts +1 -1
  4. package/es/block-provider/hooks/index.d.ts +2 -1
  5. package/es/block-provider/index.d.ts +4 -3
  6. package/es/collection-manager/Configuration/SetPrimaryKeyAction.d.ts +10 -0
  7. package/es/collection-manager/Configuration/components/CollectionCategory.d.ts +1 -1
  8. package/es/collection-manager/Configuration/components/CollectionFieldInterfaceTag.d.ts +1 -1
  9. package/es/collection-manager/Configuration/components/CollectionTemplateTag.d.ts +1 -1
  10. package/es/collection-manager/Configuration/components/Summary.d.ts +1 -1
  11. package/es/collection-manager/Configuration/interfaces.d.ts +1 -0
  12. package/es/collection-manager/action-hooks.d.ts +1 -1
  13. package/es/collection-manager/interfaces/color.d.ts +0 -1
  14. package/es/collection-manager/interfaces/index.d.ts +1 -0
  15. package/es/collection-manager/interfaces/input.d.ts +1 -0
  16. package/es/collection-manager/interfaces/integer.d.ts +1 -0
  17. package/es/collection-manager/interfaces/nanoid.d.ts +1 -0
  18. package/es/collection-manager/interfaces/number.d.ts +44 -0
  19. package/es/collection-manager/interfaces/snowflake-id.d.ts +117 -0
  20. package/es/collection-manager/interfaces/uuid.d.ts +1 -0
  21. package/es/collection-manager/templates/properties/index.d.ts +1 -0
  22. package/es/data-source/collection-field-interface/CollectionFieldInterface.d.ts +1 -0
  23. package/es/data-source/data-source/DataSourceManager.d.ts +1 -0
  24. package/es/flow/FlowModelRepository.d.ts +4 -0
  25. package/es/flow/FlowPage.d.ts +2 -1
  26. package/es/flow/actions/columnFixed.d.ts +9 -0
  27. package/es/flow/actions/customVariable.d.ts +9 -0
  28. package/es/flow/actions/displayFieldComponent.d.ts +1 -1
  29. package/es/flow/actions/index.d.ts +8 -1
  30. package/es/flow/actions/linkageRules.d.ts +4 -0
  31. package/es/flow/actions/navigateToURL.d.ts +9 -0
  32. package/es/flow/actions/openView.d.ts +2 -13
  33. package/es/flow/actions/refreshTargetBlocks.d.ts +9 -0
  34. package/es/flow/actions/setTargetDataScope.d.ts +10 -0
  35. package/es/flow/actions/showMessage.d.ts +9 -0
  36. package/es/flow/actions/showNotification.d.ts +9 -0
  37. package/es/flow/actions/titleField.d.ts +0 -1
  38. package/es/flow/common/Liquid.d.ts +33 -0
  39. package/es/flow/common/Markdown/Display.d.ts +9 -0
  40. package/es/flow/common/Markdown/Edit.d.ts +23 -0
  41. package/es/flow/common/Markdown/Markdown.d.ts +24 -0
  42. package/es/flow/{components/code-editor/completions/index.d.ts → common/Markdown/style.d.ts} +1 -2
  43. package/es/flow/common/Markdown/useCDN.d.ts +9 -0
  44. package/es/flow/components/BlockItemCard.d.ts +2 -0
  45. package/es/flow/components/FieldAssignValueInput.d.ts +1 -0
  46. package/es/flow/components/code-editor/extension/CodeEditorExtension.d.ts +14 -0
  47. package/es/flow/components/code-editor/extension/index.d.ts +9 -0
  48. package/es/flow/components/code-editor/hooks/useRunJSDocCompletions.d.ts +1 -1
  49. package/es/flow/components/code-editor/index.d.ts +6 -4
  50. package/es/flow/components/code-editor/jsxCompletion.d.ts +10 -0
  51. package/es/flow/components/code-editor/linter.d.ts +2 -0
  52. package/es/flow/components/code-editor/panels/RightExtra.d.ts +3 -1
  53. package/es/flow/components/code-editor/runjsCompletions.d.ts +3 -1
  54. package/es/flow/components/code-editor/types.d.ts +16 -0
  55. package/es/flow/components/filter/FilterContainer.d.ts +4 -4
  56. package/es/flow/components/filter/FilterGroup.d.ts +2 -1
  57. package/es/flow/components/filter/LinkageFilterItem.d.ts +1 -0
  58. package/es/flow/components/filter/VariableFilterItem.d.ts +4 -1
  59. package/es/flow/components/index.d.ts +1 -1
  60. package/es/flow/components/placeholders/BlockPlaceholder.d.ts +1 -0
  61. package/es/flow/flows/editMarkdownFlow.d.ts +10 -0
  62. package/es/flow/getViewDiffAndUpdateHidden.d.ts +1 -0
  63. package/es/flow/index.d.ts +5 -0
  64. package/es/flow/internal/utils/associationValueCoercion.d.ts +15 -0
  65. package/es/flow/internal/utils/enumOptionsUtils.d.ts +7 -7
  66. package/es/flow/internal/utils/operatorSchemaHelper.d.ts +15 -0
  67. package/es/flow/internal/utils/rebuildFieldSubModel.d.ts +33 -0
  68. package/es/flow/models/actions/AddChildActionModel.d.ts +15 -0
  69. package/es/flow/models/actions/AddNewActionModel.d.ts +1 -0
  70. package/es/flow/models/actions/EditActionModel.d.ts +1 -0
  71. package/es/flow/models/actions/{UpdateActionModel.d.ts → ExpandCollapseActionModel.d.ts} +8 -10
  72. package/es/flow/models/actions/FilterActionModel.d.ts +5 -59
  73. package/es/flow/models/actions/JSActionModel.d.ts +13 -0
  74. package/es/flow/models/actions/LinkActionModel.d.ts +18 -0
  75. package/es/flow/models/actions/UpdateRecordActionModel.d.ts +27 -0
  76. package/es/flow/models/actions/index.d.ts +5 -1
  77. package/es/flow/models/base/ActionModel.d.ts +15 -5
  78. package/es/flow/models/base/BlockModel.d.ts +4 -1
  79. package/es/flow/models/base/CollectionBlockModel.d.ts +12 -25
  80. package/es/flow/models/base/FieldModel.d.ts +6 -0
  81. package/es/flow/models/base/GridModel.d.ts +27 -4
  82. package/es/flow/models/base/PageModel/ChildPageModel.d.ts +1 -0
  83. package/es/flow/models/base/PageModel/PageModel.d.ts +3 -0
  84. package/es/flow/models/base/PageModel/PageTabModel.d.ts +2 -0
  85. package/es/flow/models/base/PageModel/RootPageModel.d.ts +2 -0
  86. package/es/flow/models/blocks/assign-form/AssignFormModel.d.ts +2 -0
  87. package/es/flow/models/blocks/details/DetailsBlockModel.d.ts +1 -0
  88. package/es/flow/models/blocks/details/DetailsCustomItemModel.d.ts +2 -2
  89. package/es/flow/models/blocks/details/DetailsGridModel.d.ts +1 -0
  90. package/es/flow/models/blocks/details/DetailsItemModel.d.ts +2 -2
  91. package/es/flow/models/blocks/details/DetailsJSFieldItemModel.d.ts +2 -2
  92. package/es/flow/models/blocks/filter-form/FieldModelSelect.d.ts +10 -0
  93. package/es/flow/models/blocks/filter-form/FilterFormBlockModel.d.ts +4 -0
  94. package/es/flow/models/blocks/filter-form/FilterFormCustomItemModel.d.ts +13 -0
  95. package/es/flow/models/blocks/filter-form/FilterFormGridModel.d.ts +1 -0
  96. package/es/flow/models/blocks/filter-form/FilterFormItemModel.d.ts +5 -4
  97. package/es/flow/models/blocks/filter-form/FilterFormSubmitActionModel.d.ts +1 -1
  98. package/es/flow/models/blocks/filter-form/SourceCascader.d.ts +10 -0
  99. package/es/flow/models/blocks/filter-form/fields/FieldComponentProps.d.ts +13 -0
  100. package/es/flow/models/blocks/filter-form/fields/FilterFormCustomFieldModel.d.ts +36 -0
  101. package/es/flow/models/blocks/filter-form/fields/date-time/DateTimeFilterFieldModel.d.ts +8 -0
  102. package/es/flow/models/blocks/filter-form/fields/date-time/index.d.ts +1 -0
  103. package/es/flow/models/blocks/filter-form/fields/index.d.ts +1 -0
  104. package/es/flow/models/blocks/filter-form/index.d.ts +1 -0
  105. package/es/flow/models/blocks/filter-manager/flow-actions/customizeFilterRender.d.ts +10 -0
  106. package/es/flow/models/blocks/filter-manager/flow-actions/index.d.ts +2 -0
  107. package/es/flow/models/blocks/filter-manager/flow-actions/operatorComponentProps.d.ts +10 -0
  108. package/es/flow/models/blocks/form/CreateFormModel.d.ts +2 -1
  109. package/es/flow/models/blocks/form/EditFormModel.d.ts +1 -0
  110. package/es/flow/models/blocks/form/FormBlockModel.d.ts +13 -2
  111. package/es/flow/models/blocks/form/FormGridModel.d.ts +1 -0
  112. package/es/flow/models/blocks/form/FormItemModel.d.ts +1 -1
  113. package/es/flow/models/blocks/form/FormJSFieldItemModel.d.ts +1 -1
  114. package/es/flow/models/blocks/form/submitHandler.d.ts +9 -0
  115. package/es/flow/models/blocks/js-block/JSBlock.d.ts +1 -0
  116. package/es/flow/models/blocks/table/JSColumnModel.d.ts +0 -1
  117. package/es/flow/models/blocks/table/TableActionsColumnModel.d.ts +0 -1
  118. package/es/flow/models/blocks/table/TableBlockModel.d.ts +15 -2
  119. package/es/flow/models/blocks/table/TableColumnModel.d.ts +9 -2
  120. package/es/flow/models/blocks/table/TableJSFieldItemModel.d.ts +2 -2
  121. package/es/flow/models/blocks/table/utils.d.ts +9 -0
  122. package/es/flow/models/blocks/utils/transformChildrenToJS.d.ts +42 -0
  123. package/es/flow/models/fields/AssociationFieldModel/AssociationFieldModel.d.ts +1 -0
  124. package/es/flow/models/fields/AssociationFieldModel/CascadeSelectFieldModel.d.ts +29 -0
  125. package/es/flow/models/fields/AssociationFieldModel/RecordPickerFieldModel.d.ts +2 -0
  126. package/es/flow/models/fields/AssociationFieldModel/RecordSelectFieldModel.d.ts +8 -2
  127. package/es/flow/models/fields/AssociationFieldModel/SubFormFieldModel.d.ts +7 -0
  128. package/es/flow/models/fields/AssociationFieldModel/SubTableFieldModel/SubTableColumnModel.d.ts +3 -3
  129. package/es/flow/models/fields/AssociationFieldModel/SubTableFieldModel/index.d.ts +2 -0
  130. package/es/flow/models/fields/AssociationFieldModel/index.d.ts +1 -0
  131. package/es/flow/models/fields/AssociationFieldModel/recordSelectShared.d.ts +49 -0
  132. package/es/flow/models/fields/ClickableFieldModel.d.ts +3 -2
  133. package/es/flow/models/fields/DisplayAssociationField/DisplaySubItemFieldModel.d.ts +1 -0
  134. package/es/flow/models/fields/DisplayAssociationField/DisplaySubListFieldModel.d.ts +1 -0
  135. package/es/flow/models/fields/DisplayAssociationField/DisplaySubTableFieldModel.d.ts +3 -1
  136. package/es/flow/models/fields/DisplayEnumFieldModel.d.ts +1 -0
  137. package/es/flow/models/fields/DisplayJSONFieldModel.d.ts +3 -3
  138. package/es/flow/models/fields/DisplayNumberFieldModel.d.ts +4 -2
  139. package/es/flow/models/fields/DisplayTextFieldModel.d.ts +1 -1
  140. package/es/flow/models/fields/JSEditableFieldModel.d.ts +8 -0
  141. package/es/flow/models/fields/JSFieldModel.d.ts +1 -1
  142. package/es/flow/models/fields/JSItemModel.d.ts +1 -2
  143. package/es/flow/models/fields/JsonFieldModel.d.ts +1 -0
  144. package/es/flow/models/fields/MarkdownItemModel.d.ts +1 -0
  145. package/es/flow/models/fields/TimeFieldModel.d.ts +0 -1
  146. package/es/flow/models/fields/mobile-components/MobileDatePicker.d.ts +10 -0
  147. package/es/flow/models/fields/mobile-components/MobileLazySelect.d.ts +11 -0
  148. package/es/flow/{components/JsonInput.d.ts → models/fields/mobile-components/MobileSelect.d.ts} +1 -1
  149. package/es/flow/models/fields/mobile-components/MobileTimePicker.d.ts +10 -0
  150. package/es/flow/resolveViewParamsToViewList.d.ts +4 -2
  151. package/es/flow/{components/decorator → utils}/index.d.ts +1 -1
  152. package/es/global-theme/type.d.ts +1 -0
  153. package/es/hooks/useFullscreenOverlay.d.ts +20 -0
  154. package/es/index.d.ts +1 -0
  155. package/es/index.mjs +25990 -18545
  156. package/es/modules/menu/FlowPageMenuItem.d.ts +1 -3
  157. package/es/modules/menu/index.d.ts +9 -0
  158. package/es/nocobase-buildin-plugin/plugins/LocalePlugin.d.ts +0 -1
  159. package/es/schema-component/antd/association-select/ReadPretty.d.ts +1 -1
  160. package/es/schema-component/antd/filter/FilterItem.d.ts +1 -1
  161. package/es/schema-component/antd/input/EllipsisWithTooltip.d.ts +1 -0
  162. package/es/schema-component/antd/linkageFilter/LinkageFilterItem.d.ts +1 -1
  163. package/es/schema-component/antd/remote-select/RemoteSelect.d.ts +1 -3
  164. package/es/schema-component/antd/table/Table.Column.ActionBar.d.ts +1 -1
  165. package/es/schema-component/antd/table/Table.Void.d.ts +1 -0
  166. package/es/schema-component/antd/table-v2/Table.Column.ActionBar.d.ts +1 -1
  167. package/es/schema-component/antd/upload/shared.d.ts +1 -1
  168. package/es/schema-settings/LinkageRules/LinkageRuleAction.d.ts +2 -2
  169. package/es/schema-settings/LinkageRules/components/BlockLinkageRuleAction.d.ts +1 -1
  170. package/es/schema-settings/LinkageRules/components/FieldStyleLinkageRuleAction.d.ts +1 -1
  171. package/lib/index-C3fHjsMw-MGQtxS4n.js +2237 -0
  172. package/lib/index.js +449 -293
  173. package/lib/locale/cron/zh-CN.json +33 -0
  174. package/lib/locale/cron/zh-TW.json +33 -0
  175. package/lib/locale/de-DE.json +1545 -0
  176. package/lib/locale/en-US.json +1553 -0
  177. package/lib/locale/es-ES.json +1573 -0
  178. package/lib/locale/fr-FR.json +1549 -0
  179. package/lib/locale/hu-HU.json +1545 -0
  180. package/lib/locale/id-ID.json +1546 -0
  181. package/lib/locale/{it-IT.js → it-IT.json} +1496 -1054
  182. package/lib/locale/ja-JP.json +1564 -0
  183. package/lib/locale/ko-KR.json +1558 -0
  184. package/lib/locale/{nl-NL.js → nl-NL.json} +1493 -1018
  185. package/lib/locale/pt-BR.json +1617 -0
  186. package/lib/locale/ru-RU.json +1551 -0
  187. package/lib/locale/tr-TR.json +1553 -0
  188. package/lib/locale/uk-UA.json +1570 -0
  189. package/lib/locale/vi-VN.json +1545 -0
  190. package/lib/locale/zh-CN.json +1571 -0
  191. package/lib/locale/zh-TW.json +1549 -0
  192. package/package.json +10 -7
  193. package/es/flow/components/code-editor/snippets/loader.d.ts +0 -19
  194. package/es/flow/components/decorator/injectable.d.ts +0 -19
  195. package/lib/index-C3fHjsMw-BwUYFnGr.js +0 -2081
  196. package/lib/locale/cron/zh-CN.js +0 -33
  197. package/lib/locale/cron/zh-TW.js +0 -33
  198. package/lib/locale/de-DE.js +0 -904
  199. package/lib/locale/en-US.js +0 -996
  200. package/lib/locale/es-ES.js +0 -824
  201. package/lib/locale/fr-FR.js +0 -844
  202. package/lib/locale/ja-JP.js +0 -1062
  203. package/lib/locale/ko-KR.js +0 -935
  204. package/lib/locale/pt-BR.js +0 -804
  205. package/lib/locale/ru-RU.js +0 -633
  206. package/lib/locale/tr-TR.js +0 -631
  207. package/lib/locale/uk-UA.js +0 -847
  208. package/lib/locale/zh-CN.js +0 -1396
  209. package/lib/locale/zh-TW.js +0 -938
  210. /package/es/flow/{internal/utils → utils}/blockUtils.d.ts +0 -0
@@ -0,0 +1,1549 @@
1
+ {
2
+ "\"Content-Type\" only support \"application/json\", and no need to specify": "\"Content-Type\" only support \"application/json\", and no need to specify",
3
+ "(Fields only)": "(僅欄位)",
4
+ "(currently not effective in sub-forms/sub-tables)": "(currently not effective in sub-forms/sub-tables)",
5
+ "12 hour": "12 小時制",
6
+ "24 hour": "24 小時制",
7
+ "<": "<",
8
+ "=": "=",
9
+ ">": ">",
10
+ "ACL": "訪問控制",
11
+ "ASC": "升冪",
12
+ "Access": "訪問",
13
+ "Access control": "Access control",
14
+ "Accessible": "允許訪問",
15
+ "Accuracy": "Accuracy",
16
+ "Action": "Action",
17
+ "Action after successful submission": "Action after successful submission",
18
+ "Action column": "動作行",
19
+ "Action display name": "執行名稱",
20
+ "Action logs": "動作日誌",
21
+ "Action name": "動作名稱",
22
+ "Action on existing records": "對已有資料執行",
23
+ "Action on new records": "對新增資料執行",
24
+ "Action permission": "執行權限",
25
+ "Action permissions": "資料表動作權限",
26
+ "Action scope": "可運算元據範圍",
27
+ "Action type": "動作型別",
28
+ "Actions": "動作",
29
+ "Actions column": "Actions column",
30
+ "Add": "建立",
31
+ "Add & Update": "Add & Update",
32
+ "Add Markdown": "Add Markdown",
33
+ "Add action": "Add action",
34
+ "Add attach": "增加關聯",
35
+ "Add block": "建立區塊",
36
+ "Add card": "新增卡片",
37
+ "Add category": "新增分類",
38
+ "Add child": "新增子記錄",
39
+ "Add child route": "添加子路由",
40
+ "Add condition": "新增條件",
41
+ "Add condition group": "新增條件群組",
42
+ "Add event flow": "Add event flow",
43
+ "Add exportable field": "新增可匯出欄位",
44
+ "Add field": "新增欄位",
45
+ "Add filter": "新增篩選條件",
46
+ "Add filter group": "新增篩選群組",
47
+ "Add group": "新增群組",
48
+ "Add link": "新增連結",
49
+ "Add linkage rule": "新增聯動規則",
50
+ "Add menu item": "新增選單項目",
51
+ "Add new": "新增",
52
+ "Add new mode": "新增方式",
53
+ "Add option": "新增選項",
54
+ "Add page": "新增頁面",
55
+ "Add parameter": "Add parameter",
56
+ "Add plugin": "新增插件",
57
+ "Add property": "新增屬性",
58
+ "Add record": "新增資料",
59
+ "Add request header": "Add request header",
60
+ "Add role": "新增角色",
61
+ "Add rule": "Add rule",
62
+ "Add sort field": "新增排序欄位",
63
+ "Add step": "Add step",
64
+ "Add tab": "新增標籤頁",
65
+ "Add target block": "Add target block",
66
+ "Add template": "新增模板",
67
+ "Add text": "新增文字",
68
+ "Add type": "新增方式",
69
+ "Add validation rule": "新增驗證規則",
70
+ "Add variable": "Add variable",
71
+ "Add {{type}} after \"{{title}}\"": "在 \"{{title}}\" 前插入{{type}}",
72
+ "Add {{type}} before \"{{title}}\"": "在 \"{{title}}\" 前插入{{type}}",
73
+ "Add {{type}} in \"{{title}}\"": "在 \"{{title}}\" 裡插入{{type}}",
74
+ "Advanced type": "高階型別",
75
+ "After": "之後",
76
+ "After change": "變更後",
77
+ "After clicking the custom button, the following field values will be assigned according to the following form.": "點選當前自定義按鈕時,以下欄位值將按照以下表單賦值。",
78
+ "After clicking the custom button, the following fields of the current record will be saved according to the following form.": "點選當前自定義按鈕時,當前資料以下欄位將按照以下表單儲存。",
79
+ "After hiding, this menu will no longer appear in the menu bar. To show it again, you need to go to the route management page to configure it.": "隱藏後,這個菜單將不再出現在菜單欄中。要再次顯示它,你需要到路由管理頁面進行設置。",
80
+ "After hiding, this tab will no longer appear in the tab bar. To show it again, you need to go to the route management page to set it.": "隱藏後,這個標籤將不再出現在標籤欄中。要再次顯示它,你需要到路由管理頁面進行設置。",
81
+ "After successful bulk update": "批次成功更新後",
82
+ "After successful request": "請求成功之後",
83
+ "After successful save": "儲存成功後",
84
+ "After successful submission": "提交成功後",
85
+ "After successful submission, the selected data blocks will be automatically refreshed.": "提交成功後,選中的數據區塊將自動刷新。",
86
+ "After successful update": "更新成功後",
87
+ "Agenda": "列表",
88
+ "All": "所有",
89
+ "All collections": "全部資料表",
90
+ "All collections use general action permissions by default; permission configured individually will override the default one.": "所有資料表都預設使用通用資料動作權限;同時,可以針對每個資料表單獨設定權限。",
91
+ "All events": "所有事件",
92
+ "All plugin settings": "所有插件設定",
93
+ "All records": "所有資料",
94
+ "Allow": "允許",
95
+ "Allow access": "允許訪問",
96
+ "Allow action": "允許動作",
97
+ "Allow add new": "允許新增",
98
+ "Allow add new data": "允許新增資料",
99
+ "Allow add new, update and delete actions": "允許增刪改動作",
100
+ "Allow adding records to the current collection": "允許向當前資料表裡新增記錄",
101
+ "Allow disassociation": "Allow disassociation",
102
+ "Allow dissociate": "允許移除已關聯記錄",
103
+ "Allow linking to multiple records": "允許關聯多條記錄",
104
+ "Allow list": "Allow list",
105
+ "Allow multiple": "允許新增/關聯多條",
106
+ "Allow multiple selection": "允許多選",
107
+ "Allow relative URIs": "Allow relative URIs",
108
+ "Allow selection of existing file": "Allow selection of existing file",
109
+ "Allow selection of existing records": "允許選擇已有資料",
110
+ "Allow sign up": "允許註冊",
111
+ "Allow to configure plugins": "允許管理設定中心",
112
+ "Allow to desgin pages": "允許介面設定",
113
+ "Allow to manage plugins": "允許管理插件",
114
+ "Allow uploading multiple files": "Allow uploading multiple files",
115
+ "Allows configuration of the whole system, including UI, collections, permissions, etc.": "允許設定系統,包括介面設定、資料表設定、權限設定、系統設定等全部設定項",
116
+ "Allows to clear cache, reboot application": "允許清除快取,重啟 App",
117
+ "Allows to configure interface": "允許設定介面",
118
+ "Allows to configure plugins": "允許設定插件",
119
+ "Allows to install, activate, disable plugins": "允許安裝、啟用、停用插件",
120
+ "Allows unencoded square brackets inside the query string": "Allows unencoded square brackets inside the query string",
121
+ "Alphabet": "Alphabet",
122
+ "Any": "Any",
123
+ "App error": "App 錯誤",
124
+ "Application reloading": "App 重新載入中",
125
+ "Are you sure to delete this plugin?": "確定要刪除此插件嗎?",
126
+ "Are you sure to disable this plugin?": "Are you sure to disable this plugin?",
127
+ "Are you sure you don't want to save?": "你確定不儲存嗎?",
128
+ "Are you sure you want to clear cache ?": "Are you sure you want to clear cache ?",
129
+ "Are you sure you want to delete it?": "你確定要刪除嗎?",
130
+ "Are you sure you want to delete this variable?": "Are you sure you want to delete this variable?",
131
+ "Are you sure you want to disassociate it?": "你確定要解除關聯嗎?",
132
+ "Are you sure you want to hide these routes in menu?": "你確定要在菜單中隱藏這些路由嗎?",
133
+ "Are you sure you want to hide this menu?": "你確定要隱藏這個菜單嗎?",
134
+ "Are you sure you want to hide this tab?": "你確定要隱藏這個標籤嗎?",
135
+ "Are you sure you want to load {{count}} collection(s)?": "Are you sure you want to load {{count}} collection(s)?",
136
+ "Are you sure you want to perform the Custom request action": "Are you sure you want to perform the Custom request action",
137
+ "Are you sure you want to perform the Refresh action?": "Are you sure you want to perform the Refresh action?",
138
+ "Are you sure you want to perform the Submit action?": "Are you sure you want to perform the Submit action?",
139
+ "Are you sure you want to perform the Trigger workflow action?": "Are you sure you want to perform the Trigger workflow action?",
140
+ "Are you sure you want to perform the Update record action?": "Are you sure you want to perform the Update record action?",
141
+ "Are you sure you want to perform the {{title}} action?": "你確定執行{{title}}動作嗎?",
142
+ "Are you sure you want to save it?": "Are you sure you want to save it?",
143
+ "Are you sure you want to show these routes in menu?": "你確定要在菜單中顯示這些路由嗎?",
144
+ "Area": "區/縣",
145
+ "Area chart": "面積圖",
146
+ "Assign data scope for the template": "為模板指定資料範圍",
147
+ "Assign field values": "欄位賦值",
148
+ "Assign value": "Assign value",
149
+ "Assignment mode": "Assignment mode",
150
+ "Associate": "Associate",
151
+ "Associated records": "關聯記錄",
152
+ "Association field settings": "Association field settings",
153
+ "Association fields": "關聯欄位",
154
+ "Association fields filter": "關聯篩選",
155
+ "Association select settings": "Association select settings",
156
+ "Association table settings": "Association table settings",
157
+ "Association tag settings": "Association tag settings",
158
+ "AssociationField component": "AssociationField component",
159
+ "Attempts to encode the URI using encodeURI before validating it again": "Attempts to encode the URI using encodeURI before validating it again",
160
+ "Audit logs": "執行記錄",
161
+ "Authentication": "Authentication",
162
+ "Author": "作者",
163
+ "Auto": "自動",
164
+ "Auto focus": "Auto focus",
165
+ "Auto increment": "Auto increment",
166
+ "AutoGenId": "Auto-generated ID field",
167
+ "Automatic close": "自動關閉",
168
+ "Automatically drop objects that depend on the collection (such as views), and in turn all objects that depend on those objects": "自動刪除依賴於該表的物件,以及依賴這些物件的物件",
169
+ "Automatically generate default values": "Automatically generate default values",
170
+ "Automatically remove heading and tailing spaces": "Automatically remove heading and tailing spaces",
171
+ "Automatically update timestamp on update": "Automatically update timestamp on update",
172
+ "Automatically update timestamp to the current server time on update": "Automatically update timestamp to the current server time on update",
173
+ "Available \"target blocks\" are all data blocks on the current page": "Available \"target blocks\" are all data blocks on the current page",
174
+ "Available Collections": "Available Collections",
175
+ "Background Color": "Background Color",
176
+ "Bar chart": "條形圖",
177
+ "Base": "Base",
178
+ "Basic": "基本型別",
179
+ "Basic configuration": "Basic configuration",
180
+ "Before": "之前",
181
+ "Before change": "變更前",
182
+ "Before render": "Before render",
183
+ "Blank block": "空區塊",
184
+ "Block": "區塊",
185
+ "Block Linkage rules": "Block Linkage rules",
186
+ "Block linkage rules": "Block linkage rules",
187
+ "Block list": "Block list",
188
+ "Block template": "區塊模板",
189
+ "Block templates": "區塊模板",
190
+ "Block title": "區塊標題",
191
+ "Block type": "區塊型別",
192
+ "Blocks": "Blocks",
193
+ "Blue": "拂曉藍",
194
+ "Bookmark": "書籤",
195
+ "Boolean": "布林值",
196
+ "Bottom left": "Bottom left",
197
+ "Bottom right": "Bottom right",
198
+ "Built-in": "內建",
199
+ "Bulk edit": "批次編輯",
200
+ "Bulk enable": "Bulk enable",
201
+ "Bulk update": "批次更新",
202
+ "Button background color": "按鈕顏色",
203
+ "Button icon": "按鈕圖示",
204
+ "Button settings": "Button settings",
205
+ "Button title": "按鈕標題",
206
+ "Button type": "Button type",
207
+ "Calculation engine": "計算引擎",
208
+ "Calendar": "日曆",
209
+ "Calendar Month": "Calendar Month",
210
+ "Calendar Year": "Calendar Year",
211
+ "Calendar collection": "日曆資料表",
212
+ "Calendar week": "Calendar week",
213
+ "Cancel": "取消",
214
+ "Cannot find the model instance with UID": "Cannot find the model instance with UID",
215
+ "Card settings": "Card settings",
216
+ "Cascade Select": "級聯選擇",
217
+ "Cascade select": "Cascade select",
218
+ "Cascade select settings": "Cascade select settings",
219
+ "Categories": "資料表類別",
220
+ "Category name": "分類名稱",
221
+ "Center": "Center",
222
+ "Change password": "編輯密碼",
223
+ "Changed to": "編輯為",
224
+ "Changelog": "更新日誌",
225
+ "Chart blocks": "圖表區塊",
226
+ "Chart config": "圖表設定",
227
+ "Chart title": "圖表標題",
228
+ "Chart type": "圖表型別",
229
+ "Check strength": "Check strength",
230
+ "Checkbox": "勾選",
231
+ "Checkbox group": "選取方塊",
232
+ "Children": "子記錄",
233
+ "China region": "中國行政區",
234
+ "Choices": "選擇型別",
235
+ "Choices fields": "選項欄位",
236
+ "City": "市",
237
+ "Classic page (v1)": "Classic page (v1)",
238
+ "Clear": "清空",
239
+ "Clear cache": "清除快取",
240
+ "Clear default value": "清除預設值",
241
+ "Click": "Click",
242
+ "Click event": "Click event",
243
+ "Click or drag file to this area to upload": "點選或拖拽檔案到此區域上傳",
244
+ "Click the \"UI Editor\" icon in the upper right corner to enter the UI Editor mode": "點擊右上角的 \"介面設定\" 圖示進入介面設定模式",
245
+ "Clicked row record": "Clicked row record",
246
+ "Close": "關閉",
247
+ "Collapse": "摺疊",
248
+ "Collapse all": "全部收起",
249
+ "Collapse button": "Collapse",
250
+ "Collapse settings": "Collapse settings",
251
+ "Collapsed rows": "Collapsed rows",
252
+ "Collection": "資料表",
253
+ "Collection category": "資料表類別",
254
+ "Collection display name": "資料表名稱",
255
+ "Collection fields": "Collection fields",
256
+ "Collection manager": "資料表管理",
257
+ "Collection name": "資料表標識",
258
+ "Collection selector": "資料表選擇器",
259
+ "Collection template": "資料表模板",
260
+ "Collections": "Collections",
261
+ "Collections & Fields": "資料表設定",
262
+ "Colon": "Colon",
263
+ "Color": "顏色",
264
+ "Column": "列",
265
+ "Column Settings": "列設定",
266
+ "Column chart": "柱狀圖",
267
+ "Column title": "行標題",
268
+ "Column width": "列寬",
269
+ "Coming soon...": "敬請期待...",
270
+ "Compact theme": "緊湊主題",
271
+ "Comparision": "值比較",
272
+ "Comparison": "Comparison",
273
+ "Component properties": "Component properties",
274
+ "Compressed file url": "壓縮包地址",
275
+ "Computer": "Computer",
276
+ "Condition": "條件",
277
+ "Conditional assignment": "Conditional assignment",
278
+ "Configuration saved": "Configuration saved",
279
+ "Configuration:": "Configuration:",
280
+ "Configure": "設定",
281
+ "Configure actions": "設定動作",
282
+ "Configure calendar": "設定日曆",
283
+ "Configure columns": "設定欄位",
284
+ "Configure field": "設定欄位",
285
+ "Configure fields": "設定欄位",
286
+ "Configure fields of {{title}}": "「{{title}}」的欄位設定",
287
+ "Configure page": "Configure page",
288
+ "Configure permission": "設定權限",
289
+ "Configure permissions": "設定權限",
290
+ "Configure rows": "Configure rows",
291
+ "Configure the rows and columns of the grid.": "Configure the rows and columns of the grid.",
292
+ "Configure the sizes of each row. The value is an array of numbers representing the width of each column in the row.": "Configure the sizes of each row. The value is an array of numbers representing the width of each column in the row.",
293
+ "Confirm": "確定",
294
+ "Confirm Load Collections": "Confirm Load Collections",
295
+ "Confirm password": "確認密碼",
296
+ "Confirmation": "Confirmation",
297
+ "Connect data blocks": "連線資料區塊",
298
+ "Connect fields": "Connect fields",
299
+ "Connect to database view": "連線資料庫檢視",
300
+ "Console": "Console",
301
+ "Constant": "常量",
302
+ "Constant value": "靜態值",
303
+ "Contain": "包含",
304
+ "Content": "Content",
305
+ "Content overflow display mode": "Content overflow display mode",
306
+ "Content settings": "Content settings",
307
+ "Controls whether the current document is allowed to autoplay media requested through the HTMLMediaElement interface. When this policy is disabled and there were no user gestures, the Promise returned by HTMLMediaElement.play() will reject with a NotAllowedError DOMException. The autoplay attribute on <audio> and <video> elements will be ignored.": "Controls whether the current document is allowed to autoplay media requested through the HTMLMediaElement interface. When this policy is disabled and there were no user gestures, the Promise returned by HTMLMediaElement.play() will reject with a NotAllowedError DOMException. The autoplay attribute on <audio> and <video> elements will be ignored.",
308
+ "Controls whether the current document is allowed to set document.domain. When this policy is disabled, attempting to set document.domain will fail and cause a SecurityError DOMException to be thrown.": "Controls whether the current document is allowed to set document.domain. When this policy is disabled, attempting to set document.domain will fail and cause a SecurityError DOMException to be thrown.",
309
+ "Controls whether the current document is allowed to use Element.requestFullscreen(). When this policy is disabled, the returned Promise rejects with a TypeError.": "Controls whether the current document is allowed to use Element.requestFullscreen(). When this policy is disabled, the returned Promise rejects with a TypeError.",
310
+ "Controls whether the current document is allowed to use audio input devices. When this policy is disabled, the Promise returned by MediaDevices.getUserMedia() will reject with a NotAllowedError DOMException.": "Controls whether the current document is allowed to use audio input devices. When this policy is disabled, the Promise returned by MediaDevices.getUserMedia() will reject with a NotAllowedError DOMException.",
311
+ "Controls whether the current document is allowed to use the Encrypted Media Extensions API (EME). When this policy is disabled, the Promise returned by Navigator.requestMediaKeySystemAccess() will reject with a SecurityError DOMException.": "Controls whether the current document is allowed to use the Encrypted Media Extensions API (EME). When this policy is disabled, the Promise returned by Navigator.requestMediaKeySystemAccess() will reject with a SecurityError DOMException.",
312
+ "Controls whether the current document is allowed to use the Geolocation Interface. When this policy is disabled, calls to getCurrentPosition() and watchPosition() will cause those functions callbacks to be invoked with a GeolocationPositionError code of PERMISSION_DENIED.": "Controls whether the current document is allowed to use the Geolocation Interface. When this policy is disabled, calls to getCurrentPosition() and watchPosition() will cause those functions callbacks to be invoked with a GeolocationPositionError code of PERMISSION_DENIED.",
313
+ "Controls whether the current document is allowed to use the Payment Request API. When this policy is enabled, the PaymentRequest() constructor will throw a SecurityError DOMException.": "Controls whether the current document is allowed to use the Payment Request API. When this policy is enabled, the PaymentRequest() constructor will throw a SecurityError DOMException.",
314
+ "Controls whether the current document is allowed to use the Web MIDI API. When this policy is disabled, the Promise returned by Navigator.requestMIDIAccess() will reject with a SecurityError DOMException.": "Controls whether the current document is allowed to use the Web MIDI API. When this policy is disabled, the Promise returned by Navigator.requestMIDIAccess() will reject with a SecurityError DOMException.",
315
+ "Controls whether the current document is allowed to use video input devices. When this policy is disabled, the Promise returned by getUserMedia() will reject with a NotAllowedError DOMException.": "Controls whether the current document is allowed to use video input devices. When this policy is disabled, the Promise returned by getUserMedia() will reject with a NotAllowedError DOMException.",
316
+ "Convert reference to duplicate": "模板引用轉為複製",
317
+ "Convert template to duplicate": "Convert template to duplicate",
318
+ "Copy": "Copy",
319
+ "Copy into the form and continue to fill in": "複製到表單並繼續填寫",
320
+ "Cover": "覆蓋",
321
+ "Create": "新增",
322
+ "Create an account": "註冊帳號",
323
+ "Create calendar block": "建立日曆區塊",
324
+ "Create collection": "建立資料表",
325
+ "Create form": "建立表單",
326
+ "Create gantt block": "建立甘特圖區塊",
327
+ "Create inverse field in the target collection": "在目標資料表裡建立反向關聯欄位",
328
+ "Create kanban block": "建立看板區塊",
329
+ "Create template": "建立模板",
330
+ "Created at": "建立日期",
331
+ "Created by": "建立者",
332
+ "CreatedAt": "CreatedAt",
333
+ "CreatedBy": "CreatedBy",
334
+ "Current action": "Current action",
335
+ "Current block": "Current block",
336
+ "Current collection": "當前資料表",
337
+ "Current device type": "Current device type",
338
+ "Current form": "當前表單",
339
+ "Current object": "當前物件",
340
+ "Current popup": "Current popup",
341
+ "Current popup parent record": "Current popup parent record",
342
+ "Current popup record": "當前彈窗記錄",
343
+ "Current record": "當前記錄",
344
+ "Current record blocks": "當前資料區塊",
345
+ "Current role": "當前角色",
346
+ "Current time": "當前時間",
347
+ "Current user": "當前使用者",
348
+ "Custom": "自定義",
349
+ "Custom Title": "自定義標題",
350
+ "Custom column name": "自定義行名稱",
351
+ "Custom column title": "自定義行標題",
352
+ "Custom field": "Custom field",
353
+ "Custom field display name": "自定義欄位名稱",
354
+ "Custom name": "自定義名稱",
355
+ "Custom request": "自定義請求",
356
+ "Custom title": "自定義標題",
357
+ "Custom variable": "Custom variable",
358
+ "Customize": "自定義",
359
+ "Cyan": "明青",
360
+ "DESC": "降冪",
361
+ "Daily": "每天",
362
+ "Danger action": "Danger action",
363
+ "Danger red": "紅色",
364
+ "Dashed": "Dashed",
365
+ "Data Model": "Data Model",
366
+ "Data blocks": "資料區塊",
367
+ "Data changes": "資料變更",
368
+ "Data fields": "資料欄位",
369
+ "Data loading mode": "資料加載方式",
370
+ "Data model": "Data model",
371
+ "Data model tools": "Data model tools",
372
+ "Data refreshed successfully": "Data refreshed successfully",
373
+ "Data scope": "資料範圍",
374
+ "Data source": "數據源",
375
+ "Data source key": "Data source key",
376
+ "Data source permissions": "Data source permissions",
377
+ "Data sources": "Data sources",
378
+ "Data template": "資料模板",
379
+ "Data will be updated": "更新的資料",
380
+ "DataSource": "數據源",
381
+ "Date": "日期",
382
+ "Date & Time": "日期 & 時間",
383
+ "Date display format": "日期顯示格式",
384
+ "Date format": "日期格式",
385
+ "Date range limit": "Date range limit",
386
+ "Date scope": "Date scope",
387
+ "Date variables": "日期變數",
388
+ "Date variables(Deprecated)": "Date variables(Deprecated)",
389
+ "DateOnly": "DateOnly",
390
+ "Datetime": "日期",
391
+ "Datetime (with time zone)": "Datetime (with time zone)",
392
+ "Datetime (without time zone)": "Datetime (without time zone)",
393
+ "Datetime settings": "Datetime settings",
394
+ "Day": "天",
395
+ "Day before yesterday": "Day before yesterday",
396
+ "Day/Month/Year": "日/月/年",
397
+ "Default": "預設",
398
+ "Default collapse": "預設展開",
399
+ "Default collapsed": "Default collapsed",
400
+ "Default expand all": "Default expand all",
401
+ "Default filter conditions": "Default filter conditions",
402
+ "Default is the ID field": "預設為 ID 欄位",
403
+ "Default operator": "Default operator",
404
+ "Default role": "預設角色",
405
+ "Default sorting": "Default sorting",
406
+ "Default theme": "預設主題",
407
+ "Default title for each record": "用作資料的預設標題",
408
+ "Default value": "預設值",
409
+ "Default value to current server time": "Default value to current server time",
410
+ "Default value to current time": "Default value to current time",
411
+ "Delete": "刪除",
412
+ "Delete Event": "刪除事件",
413
+ "Delete action": "刪除動作",
414
+ "Delete block": "刪除區塊",
415
+ "Delete category": "刪除分類",
416
+ "Delete collection": "Delete collection",
417
+ "Delete events": "刪除事件",
418
+ "Delete field": "刪除欄位",
419
+ "Delete menu item": "刪除選單項",
420
+ "Delete record": "刪除資料",
421
+ "Delete role": "刪除角色",
422
+ "Delete route": "刪除路由",
423
+ "Delete routes": "刪除路由",
424
+ "Delete settings": "Delete settings",
425
+ "Delete step": "Delete step",
426
+ "Delete table column": "刪除行",
427
+ "Delete this event?": "是否刪除這個事件?",
428
+ "Delete this target block": "Delete this target block",
429
+ "Delete variable": "Delete variable",
430
+ "Deny list": "Deny list",
431
+ "Department name": "Department name",
432
+ "Departments": "Departments",
433
+ "Dependencies check": "依賴檢查",
434
+ "Dependencies check failed, can't enable.": "依賴檢查失敗,無法啟用。",
435
+ "Dependencies compatibility check": "依賴相容性檢查",
436
+ "Deprecated": "已棄用",
437
+ "Description": "描述",
438
+ "Desktop device": "電腦裝置",
439
+ "Desktop routes": "桌面端路由",
440
+ "Detail item settings": "Detail item settings",
441
+ "Details": "詳情",
442
+ "Details settings": "Details settings",
443
+ "Determine whether a record exists by the following fields": "透過以下欄位判斷記錄是否存在",
444
+ "Dialog": "對話方塊",
445
+ "Direct assignment": "Direct assignment",
446
+ "Direct duplicate": "直接複製",
447
+ "Disable": "停用",
448
+ "Disable manual input": "Disable manual input",
449
+ "Disable tabs": "停用標籤頁",
450
+ "Disable validation": "Disable validation",
451
+ "Disabled": "停用",
452
+ "Disassociate": "解除關聯",
453
+ "Disassociate record": "解除關聯記錄",
454
+ "Display <1><0>10</0><1>20</1><2>50</2><3>100</3></1> items per page": "每頁顯示 <1><0>10</0><1>20</1><2>50</2><3>100</3></1> 項",
455
+ "Display <icon></icon> when unchecked": "未勾選時顯示 <icon></icon>",
456
+ "Display Field settings": "Display Field settings",
457
+ "Display association fields": "顯示關聯表的欄位",
458
+ "Display data template selector": "顯示資料模板選擇框",
459
+ "Display field title": "顯示欄位標題",
460
+ "Display fields": "顯示欄位",
461
+ "Display label": "Display label",
462
+ "Display mode": "Display mode",
463
+ "Display name": "顯示名稱",
464
+ "Display only": "Display only",
465
+ "Display order number": "顯示序號",
466
+ "Display page title": "顯示頁面標題",
467
+ "Display style": "Display style",
468
+ "Display title": "顯示標題",
469
+ "DisplayName": "顯示名稱",
470
+ "Divide by": "Divide by",
471
+ "Divider line color": "Divider line color",
472
+ "Do not concatenate search params in the URL": "Do not concatenate search params in the URL",
473
+ "Do not load data when filter is empty": "當篩選條件為空時不加載資料",
474
+ "Docs": "文件",
475
+ "Domains ending with a . character are permitted": "Domains ending with a . character are permitted",
476
+ "Done": "完成",
477
+ "Double click": "Double click",
478
+ "Double click to choose entire object": "雙擊選擇整個物件",
479
+ "Download": "Download",
480
+ "Download logs": "Download logs",
481
+ "Drag and drop sorting field": "Drag and drop sorting field",
482
+ "Drag and drop the file here or click to upload, file size should not exceed 30M": "將檔案拖放到此處或單擊上傳,檔案大小不應超過 30M",
483
+ "Dragging": "拖拽中",
484
+ "Drawer": "側欄",
485
+ "Dropdown": "下拉選單",
486
+ "Dropdown select": "Dropdown select",
487
+ "Duplicate": "複製",
488
+ "Duplicate and continue": "複製並繼續",
489
+ "Duplicate mode": "複製方式",
490
+ "Duplicate template": "複製模板",
491
+ "Duplicating": "複製中",
492
+ "Duration (seconds, 0 = no auto close)": "Duration (seconds, 0 = no auto close)",
493
+ "Dynamic value": "動態值",
494
+ "Easy reading": "唯讀(閱讀模式)",
495
+ "Easy-reading": "唯讀 (閱讀模式)",
496
+ "Edit": "編輯",
497
+ "Edit Title": "Edit Title",
498
+ "Edit block title": "編輯區塊標題",
499
+ "Edit block title & description": "Edit block title & description",
500
+ "Edit button": "編輯按鈕",
501
+ "Edit category": "編輯分類",
502
+ "Edit chart": "編輯圖表",
503
+ "Edit collection": "編輯資料表",
504
+ "Edit description": "編輯描述",
505
+ "Edit event flows": "Edit event flows",
506
+ "Edit field": "編輯欄位",
507
+ "Edit field title": "編輯欄位標題",
508
+ "Edit form": "編輯表單",
509
+ "Edit group title": "Edit group title",
510
+ "Edit link": "Edit link",
511
+ "Edit markdown": "編輯 Markdown",
512
+ "Edit menu item": "編輯選單項目",
513
+ "Edit page size": "Edit page size",
514
+ "Edit page title": "編輯頁面標題",
515
+ "Edit popup": "Edit popup",
516
+ "Edit profile": "個人資料",
517
+ "Edit record": "編輯資料",
518
+ "Edit role": "編輯角色",
519
+ "Edit tab": "編輯標籤頁",
520
+ "Edit tooltip": "編輯提示資訊",
521
+ "Edit variable": "Edit variable",
522
+ "Editable": "可編輯",
523
+ "Ellipsis": "Ellipsis",
524
+ "Ellipsis overflow content": "省略超出長度的內容",
525
+ "Email": "電子郵箱",
526
+ "Embedded": "Embedded",
527
+ "Empty": "賦空值",
528
+ "Enable": "啟用",
529
+ "Enable SMS authentication": "啟用簡訊登入和註冊",
530
+ "Enable Scan": "Enable Scan",
531
+ "Enable actions": "啟用動作",
532
+ "Enable child collections": "啟用子表",
533
+ "Enable click-to-open": "啟用點擊打開",
534
+ "Enable drag and drop sorting": "啟用拖拽排序",
535
+ "Enable form data template": "Enable form data template",
536
+ "Enable index column": "Enable index column",
537
+ "Enable link": "啟用連結",
538
+ "Enable page header": "啟用頁首",
539
+ "Enable page tabs": "啟用頁面選項卡",
540
+ "Enable quick edit": "Enable quick edit",
541
+ "Enable refresh": "Enable refresh",
542
+ "Enable secondary confirmation": "Enable secondary confirmation",
543
+ "Enable tabs": "Enable tabs",
544
+ "Enable tree table": "Enable tree table",
545
+ "Enable virtual scrolling": "Enable virtual scrolling",
546
+ "Enabled": "啟用",
547
+ "Enabled languages": "啟用的語言",
548
+ "End": "End",
549
+ "End accessor": "End accessor",
550
+ "End date field": "結束日期欄位",
551
+ "Enter collection name": "Enter collection name",
552
+ "Enter end accessor": "Enter end accessor",
553
+ "Enter field title": "Enter field title",
554
+ "Enter number of rows to display": "Enter number of rows to display",
555
+ "Enter page title": "Enter page title",
556
+ "Enter placeholder text": "Enter placeholder text",
557
+ "Enter start accessor": "Enter start accessor",
558
+ "Enter title accessor": "Enter title accessor",
559
+ "Enter value": "Enter value",
560
+ "Error message": "錯誤訊息",
561
+ "Event": "事件",
562
+ "Event flow": "Event flow",
563
+ "Event selected": "Event selected",
564
+ "Event settings": "Event settings",
565
+ "Exact day": "Exact day",
566
+ "Execute": "執行",
567
+ "Execute JavaScript": "Execute JavaScript",
568
+ "Exists": "存在",
569
+ "Expand All": "展開全部",
570
+ "Expand all": "全部展開",
571
+ "Expand all rows by default": "Expand all rows by default",
572
+ "Expand button": "Expand",
573
+ "Expand/Collapse": "展開/摺疊",
574
+ "Export": "匯出",
575
+ "Exportable fields": "可匯出欄位",
576
+ "Expression": "表達式",
577
+ "Expression collection": "表達式表",
578
+ "FORMULAJS_DOC_URL": "https://v2.docs.nocobase.com/cn/calculation-engine/formula",
579
+ "Failed to load plugin": "插件載入失敗",
580
+ "False": "False",
581
+ "Feedback": "反饋問題",
582
+ "Field": "欄位",
583
+ "Field Linkage rules": "Field Linkage rules",
584
+ "Field assignment": "Field assignment",
585
+ "Field component": "欄位元件",
586
+ "Field display name": "欄位名稱",
587
+ "Field interface": "欄位型別",
588
+ "Field linkage rules": "Field linkage rules",
589
+ "Field mode": "欄位元件",
590
+ "Field model": "Field model",
591
+ "Field name": "欄位標識",
592
+ "Field permission": "欄位權限",
593
+ "Field settings": "Field settings",
594
+ "Field source": "來源欄位",
595
+ "Field title": "欄位標題",
596
+ "Field type": "欄位型別",
597
+ "Field value changes": "變更記錄",
598
+ "Field value do not meet the requirements": "Field value do not meet the requirements",
599
+ "Field value size is": "Field value size is",
600
+ "Field values must be unique.": "Field values must be unique.",
601
+ "Fields": "欄位",
602
+ "Fields can only be used correctly if they are defined with an interface.": "Fields can only be used correctly if they are defined with an interface.",
603
+ "Fields values": "欄位數值",
604
+ "File manager": "檔案管理器",
605
+ "File size exceeds the limit": "File size exceeds the limit",
606
+ "File size should not exceed {{size}}.": "File size should not exceed {{size}}.",
607
+ "File type is not allowed": "File type is not allowed",
608
+ "File type is not supported for previewing, please download it to preview.": "File type is not supported for previewing, please download it to preview.",
609
+ "Fill": "填充",
610
+ "Filled": "Filled",
611
+ "Filter": "篩選",
612
+ "Filter blocks": "篩選區塊",
613
+ "Filter configuration": "Filter configuration",
614
+ "Filter data based on the specific field, with the requirement that the field value must be unique.": "Filter data based on the specific field, with the requirement that the field value must be unique.",
615
+ "Filter out a single piece or a group of records as a template": "Filter out a single piece or a group of records as a template",
616
+ "Filter target key": "Filter target key",
617
+ "Filterable fields": "可篩選欄位",
618
+ "Find by the following fields": "透過以下欄位查詢",
619
+ "First or create": "不存在時則新增,存在時不處理",
620
+ "Fix block": "固定區塊",
621
+ "Fixed": "Fixed",
622
+ "Fixed to the left": "固定到左側",
623
+ "Fixed to the right": "固定到右側",
624
+ "Flexible popup": "Flexible popup",
625
+ "Flow Page": "Modern page (v2)",
626
+ "Font Size(px)": "Font Size(px)",
627
+ "Font Style": "Font Style",
628
+ "Font Weight": "Font Weight",
629
+ "Foreign key": "外來鍵",
630
+ "Foreign key 1": "外來鍵1",
631
+ "Foreign key 2": "外來鍵2",
632
+ "Form": "表單",
633
+ "Form (Add new)": "表單(添加)",
634
+ "Form (Edit)": "表單(編輯)",
635
+ "Form UID": "Form UID",
636
+ "Form data templates": "表單資料模板",
637
+ "Form duplicate": "Form duplicate",
638
+ "Form field assignment": "Form field assignment",
639
+ "Form item settings": "Form item settings",
640
+ "Form settings": "Form settings",
641
+ "Form values": "表單數值",
642
+ "Form values change": "Form values change",
643
+ "Form variable": "Form variable",
644
+ "Format": "格式",
645
+ "Formula": "公式",
646
+ "Formula description": "基於同一條記錄中的其他欄位計算出一個值。",
647
+ "Formula error.": "Formula error.",
648
+ "Formula mode": "Formula mode",
649
+ "Formula.js supports most Microsoft Excel formula functions.": "Formula.js 支援大部分 Mircrosoft Excel 公式。",
650
+ "Full height": "Full height",
651
+ "Full permissions": "完全權限",
652
+ "Function": "Function",
653
+ "Gantt": "甘特圖",
654
+ "Geek blue": "極客藍",
655
+ "General": "通用設定",
656
+ "General action permissions": "通用動作權限",
657
+ "General collection": "普通資料表",
658
+ "General configuration": "General configuration",
659
+ "General fields": "普通欄位",
660
+ "General permissions": "通用設定",
661
+ "Generated automatically if left blank": "留空時,自動生成中介表",
662
+ "Generic properties": "Generic properties",
663
+ "Global action permissions": "全域性動作權限",
664
+ "Global permissions": "全域性設定",
665
+ "Gold": "金盞花",
666
+ "Greater than": "Greater than",
667
+ "Green": "極光綠",
668
+ "Grid Card": "網格卡片",
669
+ "Group": "群組",
670
+ "Grouped sorting": "Grouped sorting",
671
+ "Grouping field": "群組欄位",
672
+ "HTML content": "HTML content",
673
+ "Half of day": "半天",
674
+ "Handbook": "使用手冊",
675
+ "Hidden": "隱藏",
676
+ "Hidden (reserved value)": "隱藏(保留數值)",
677
+ "Hidden text": "Hidden text",
678
+ "Hidden(reserved value)": "隱藏(保留數值)",
679
+ "Hide": "隱藏",
680
+ "Hide column": "隱藏列",
681
+ "Hide in menu": "在菜單中隱藏",
682
+ "Highlight": "高亮",
683
+ "Home page": "主頁",
684
+ "Homepage": "主頁",
685
+ "Horizontal": "Horizontal",
686
+ "Hour": "小時",
687
+ "Html settings": "Html settings",
688
+ "IANA registry": "IANA registry",
689
+ "ID": "ID",
690
+ "Icon": "圖示",
691
+ "Icon only": "Icon only",
692
+ "Identifier for program usage. Support letters, numbers and underscores, must start with an letter.": "用於程式使用的識別符號,支援字母、數字和下劃線,必須以字母開頭。",
693
+ "If a collection lacks a primary key, you must configure a unique record key to locate row records within a block, failure to configure this will prevent the creation of data blocks for the collection.": "If a collection lacks a primary key, you must configure a unique record key to locate row records within a block, failure to configure this will prevent the creation of data blocks for the collection.",
694
+ "If collection inherits, choose inherited collections as templates": "當前表有繼承關聯時,可選擇繼承鏈路上的表作為模板來源",
695
+ "If selected, the page will display Tab pages.": "如果選中,該頁面將顯示標籤頁。",
696
+ "If selected, the route will be displayed in the menu.": "如果選中,該路由將顯示在菜單中。",
697
+ "Ignore invalid email length errors": "Ignore invalid email length errors",
698
+ "Imperative Drawer": "Imperative Drawer",
699
+ "Import": "匯入",
700
+ "Importable fields": "可匯入欄位",
701
+ "In configuration": "設定中",
702
+ "In configuration mode, the entire column becomes transparent. In non-configuration mode, the entire column will be hidden. Even if the entire column is hidden, its configured default values and other settings will still take effect.": "在配置模式下,整個列會變為透明色。在非配置模式下,整個列將被隱藏。即使整個列被隱藏了,其配置的默認值和其他設置仍然有效。",
703
+ "Incomplete uploading files need to be resolved": "Incomplete uploading files need to be resolved",
704
+ "Index": "Index",
705
+ "Individual": "單獨設定",
706
+ "Inherited fields": "繼承欄位",
707
+ "Inherited template": "繼承模板",
708
+ "Inherits": "繼承",
709
+ "Inner": "裡面",
710
+ "Input": "Input",
711
+ "Input +, -, *, /, ( ) to calculate, input @ to open field variables.": "Input +, -, *, /, ( ) to calculate, input @ to open field variables.",
712
+ "Input request data": "Input request data",
713
+ "Insert": "插入",
714
+ "Insert above": "從上方插入",
715
+ "Insert after": "從後面插入",
716
+ "Insert before": "從前面插入",
717
+ "Insert below": "從下方插入",
718
+ "Insert if not exists": "不存在時插入",
719
+ "Insert if not exists, or update": "不存在時插入,否則更新",
720
+ "Insert inner": "從裡面插入",
721
+ "Insert left": "從左邊插入",
722
+ "Insert right": "從右邊插入",
723
+ "Installing": "安裝中",
724
+ "Integer": "整數",
725
+ "Invalid JSON format": "非法 JSON 格式",
726
+ "Inverse field display name": "反向關聯欄位名稱",
727
+ "Inverse field name": "反向關聯欄位標識",
728
+ "Inverse relationship type": "反向關聯型別",
729
+ "Italic": "Italic",
730
+ "Junction collection": "中介表",
731
+ "Kanban": "看板",
732
+ "Label": "Label",
733
+ "Label align": "Label align",
734
+ "Label field": "標籤欄位",
735
+ "Label width": "Label width",
736
+ "Language": "語言設定",
737
+ "Large": "較寬",
738
+ "Large screen device": "大螢幕裝置",
739
+ "Last 30 days": "最近 30 天",
740
+ "Last 7 days": "最近 7 天",
741
+ "Last 90 days": "最近 90 天",
742
+ "Last Month": "Last Month",
743
+ "Last Quarter": "Last Quarter",
744
+ "Last Week": "Last Week",
745
+ "Last Year": "Last Year",
746
+ "Last month": "上月",
747
+ "Last quarter": "上季度",
748
+ "Last updated": "最後更新",
749
+ "Last updated at": "最後編輯日期",
750
+ "Last updated by": "最後編輯者",
751
+ "Last week": "上週",
752
+ "Last year": "去年",
753
+ "Layout": "Layout",
754
+ "Leave it blank, unless you need a custom intermediate table": "預設留空,除非你需要一個自定義的中介表",
755
+ "Left": "Left",
756
+ "Left fixed": "Left fixed",
757
+ "Length": "長度",
758
+ "Less than": "Less than",
759
+ "License": "許可證",
760
+ "Lime": "青檸",
761
+ "Limit": "Limit",
762
+ "Line break": "Line break",
763
+ "Line chart": "折線圖",
764
+ "Link": "超連結",
765
+ "Link action settings": "Link action settings",
766
+ "Link to": "關聯",
767
+ "Link to description": "用於快速建立表關聯,可相容大多數普通場景。適合非開發人員使用。作為欄位存在時,它是一個下拉選擇用於選擇目標資料表的資料。建立後,將同時在目標資料表中生成當前資料表的關聯欄位。",
768
+ "Linkage rule": "聯動規則",
769
+ "Linkage rules": "聯動規則",
770
+ "Linkage with form fields": "從表單欄位聯動",
771
+ "List": "列表",
772
+ "Load all data when filter is empty": "當篩選條件為空時加載所有資料",
773
+ "Load collections": "Load collections",
774
+ "Local": "本地",
775
+ "Log in with an existing account": "使用已有帳號登入",
776
+ "Logging and monitoring": "Logging and monitoring",
777
+ "Logo": "Logo",
778
+ "Long text": "多行文字",
779
+ "MATHJS_DOC_URL": "https://v2.docs.nocobase.com/cn/calculation-engine/math",
780
+ "Magenta": "法式洋紅",
781
+ "Main": "Main",
782
+ "Main department": "Main department",
783
+ "Manage all settings": "管理所有設定",
784
+ "Manually close": "手動關閉",
785
+ "Many to many": "多對多",
786
+ "Many to many description": "用於建立多對多關聯,比如一個學生會有多個老師,一個老師也會有多個學生。作為欄位存在時,它是一個下拉選擇用於選擇目標資料表的資料。",
787
+ "Many to one": "多對一",
788
+ "Many to one description": "用於建立多對一關聯,比如一個城市只能屬於一個國家,一個國家可以有多個城市。作為欄位存在時,它是一個下拉選擇用於選擇目標資料表的資料。建立後,會在目標資料表裡自動生成一個多對一欄位。",
789
+ "Markdown": "Markdown",
790
+ "Marketplace": "插件市場",
791
+ "Math.js comes with a large set of built-in functions and constants, and offers an integrated solution to work with different data types": "Math.js 包含大量內建函式和常量,並提供了整合的解決方案來處理不同的資料型別。",
792
+ "Math.js comes with a large set of built-in functions and constants, and offers an integrated solution to work with different data types.": "Math.js comes with a large set of built-in functions and constants, and offers an integrated solution to work with different data types.",
793
+ "Max Domain Segments": "Max Domain Segments",
794
+ "Max length": "最大長度",
795
+ "Max length must greater than min length": "最大長度必須大於最小長度",
796
+ "Max value": "Max value",
797
+ "MaxDate": "MaxDate",
798
+ "Maximum": "最大值",
799
+ "Maximum must greater than minimum": "最大值必須大於最小值",
800
+ "Media": "多媒體",
801
+ "Medium": "Medium",
802
+ "Meet": "Meet",
803
+ "Meet <1><0>All</0><1>Any</1></1> conditions in the group": "滿足群組內 <1><0>全部</0><1>任意</1></1> 條件",
804
+ "Menu": "Menu",
805
+ "Menu item icon": "選單項目圖示",
806
+ "Menu item name": "選單名稱",
807
+ "Menu item title": "選單項目名稱",
808
+ "Menu permissions": "選單訪問權限",
809
+ "Message content": "Message content",
810
+ "Message popup close method": "Message popup close method",
811
+ "Message type": "Message type",
812
+ "Middle": "中等",
813
+ "Millisecond": "Millisecond",
814
+ "Min Domain Segments": "Min Domain Segments",
815
+ "Min length": "最小長度",
816
+ "Min length must less than max length": "最小長度必須小於最大長度",
817
+ "Min value": "Min value",
818
+ "MinDate": "MinDate",
819
+ "Minimum": "最小值",
820
+ "Minimum must less than maximum": "最小值必須小於最大值",
821
+ "Mobile": "Mobile",
822
+ "Mobile routes": "移動端路由",
823
+ "Modal": "Modal",
824
+ "Modal add": "彈窗新增",
825
+ "Mode": "Mode",
826
+ "Modern page (v2)": "Modern page (v2)",
827
+ "Month": "月",
828
+ "Monthly": "每月",
829
+ "More details": "更多詳情",
830
+ "More options": "更多選項",
831
+ "Move down": "Move down",
832
+ "Move to": "移動到",
833
+ "Move up": "Move up",
834
+ "Move {{title}} to": "將 {{title}} 移動到",
835
+ "Multiple": "Multiple",
836
+ "Multiple select": "下拉選單(多選)",
837
+ "Multiply by": "Multiply by",
838
+ "Must be 1-50 characters in length (excluding @.<>\"'/)": "長度為1到50個字元(不能包含@.<>\"'/)",
839
+ "Must select to the last level": "必須選到最後一階",
840
+ "Must use `-` and `:`": "Must use `-` and `:`",
841
+ "N/A": "N/A",
842
+ "Name": "名稱",
843
+ "Navigate": "分頁",
844
+ "Navigate to URL": "Navigate to URL",
845
+ "New menu items are allowed to be accessed by default.": "新增選單項預設允許訪問",
846
+ "New password": "新密碼",
847
+ "New routes are allowed to be accessed by default": "新路由默認允許訪問",
848
+ "Next": "Next",
849
+ "Next 30 days": "未來 30 天",
850
+ "Next 7 days": "未來 7 天",
851
+ "Next 90 days": "未來 90 天",
852
+ "Next Month": "Next Month",
853
+ "Next Quarter": "Next Quarter",
854
+ "Next Week": "Next Week",
855
+ "Next Year": "Next Year",
856
+ "Next month": "下月",
857
+ "Next quarter": "下季度",
858
+ "Next week": "下週",
859
+ "Next year": "明年",
860
+ "Nickname": "暱稱",
861
+ "No": "否",
862
+ "No CHANGELOG.md file": "沒有 CHANGELOG.md 日誌",
863
+ "No README.md file": "沒有 README.md 檔案",
864
+ "No allow `-` and `:`": "No allow `-` and `:`",
865
+ "No assigned fields configured": "No assigned fields configured",
866
+ "No blocks to connect": "沒有可連線的區塊",
867
+ "No configuration available.": "無可設定項。",
868
+ "No data": "No data",
869
+ "No event flows": "No event flows",
870
+ "No form available for reset.": "No form available for reset.",
871
+ "No form available for submission.": "No form available for submission.",
872
+ "No linkage rules": "No linkage rules",
873
+ "No pages yet, please configure first": "尚未配置頁面,請先配置",
874
+ "No parent popup": "No parent popup",
875
+ "No records selected for bulk edit": "No records selected for bulk edit",
876
+ "No records selected for deletion": "No records selected for deletion",
877
+ "No resource or record selected for deletion": "No resource or record selected for deletion",
878
+ "No resource selected for bulk edit": "No resource selected for bulk edit",
879
+ "No resource selected for deletion": "No resource selected for deletion",
880
+ "No resource selected for refresh": "No resource selected for refresh",
881
+ "None": "無",
882
+ "Normal": "Normal",
883
+ "Not Fixed": "不固定",
884
+ "Not enabled": "未啟用",
885
+ "Not fixed": "Not fixed",
886
+ "Not required": "選填",
887
+ "Notification": "Notification",
888
+ "Notification description": "Notification description",
889
+ "Notification title": "Notification title",
890
+ "Notification type": "Notification type",
891
+ "Now": "現在",
892
+ "Npm package": "Npm 包",
893
+ "Npm package name": "Npm 包名",
894
+ "Null": "空值",
895
+ "Number": "數字",
896
+ "Number settings": "Number settings",
897
+ "Object Fit": "適應",
898
+ "Off": "停用",
899
+ "Official plugin": "官方插件",
900
+ "Old password": "舊密碼",
901
+ "On": "啟用",
902
+ "One to many": "一對多",
903
+ "One to many description": "用於建立一對多關聯,比如一個國家會有多個城市。作為欄位存在時,它是一個子表格用於顯示目標資料表的資料。建立後,會在目標資料表裡自動生成一個多對一欄位。",
904
+ "One to one": "一對一",
905
+ "One to one (belongs to)": "一對一(belongs to)",
906
+ "One to one (has one)": "一對一(has one)",
907
+ "One to one description": "用於建立一對一關聯,比如一個使用者會有一套個人資料。",
908
+ "Only support standard JSON data": "Only support standard JSON data",
909
+ "Only the selected fields will be used as the initialization data for the form": "僅選擇的欄位才會作為表單的初始化資料",
910
+ "Only use `-`": "Only use `-`",
911
+ "Only use `.`": "Only use `.`",
912
+ "Only use `_`": "Only use `_`",
913
+ "Open in new window": "新窗口打開",
914
+ "Open in<1><0>Modal</0><1>Drawer</1><2>Window</2></1>": "在 <1><0>對話方塊</0><1>側欄</1><2>彈出視窗</2></1> 內開啟",
915
+ "Open mode": "開啟方式",
916
+ "Open mode configuration": "Open mode configuration",
917
+ "Operate on existing data": "對已有資料動作",
918
+ "Operate on new data": "對新增資料動作",
919
+ "Operation failed": "執行失敗",
920
+ "Operation succeeded": "執行成功",
921
+ "Operator": "運算子",
922
+ "Option label": "選項標籤",
923
+ "Option value": "選項值",
924
+ "Options": "選項",
925
+ "Orange": "日暮",
926
+ "Original field title: ": "原始欄位標題:",
927
+ "Original name": "原名稱",
928
+ "Original title: ": "原始標題: ",
929
+ "Other": "Other",
930
+ "Other action": "Other action",
931
+ "Other block": "Other block",
932
+ "Other blocks": "其他區塊",
933
+ "Other chart": "其他圖表",
934
+ "Other collections": "其他資料表",
935
+ "Other column": "Other column",
936
+ "Other form": "Other form",
937
+ "Other records": "其他記錄",
938
+ "Others": "其他",
939
+ "Outlined": "Outlined",
940
+ "Override": "重寫",
941
+ "Override field": "重寫欄位",
942
+ "Oversized": "超大",
943
+ "Own records": "自己的資料",
944
+ "Owners": "Owners",
945
+ "PK & FK fields": "主外來鍵欄位",
946
+ "Package name": "Package name",
947
+ "PackageName": "包名",
948
+ "Page": "頁面",
949
+ "Page (v2)": "Page (v2)",
950
+ "Page Title": "Page Title",
951
+ "Page number": "頁碼",
952
+ "Page settings": "Page settings",
953
+ "Page size": "每頁列數",
954
+ "Parent": "父記錄",
955
+ "Parent ID": "父記錄ID",
956
+ "Parent collection fields": "父表欄位",
957
+ "Parent object": "上級物件",
958
+ "Parent popup": "Parent popup",
959
+ "Parent popup record": "上級彈窗記錄",
960
+ "Parent record": "上級記錄",
961
+ "Password": "密碼",
962
+ "Password Options": "Password Options",
963
+ "Password mismatch": "重複密碼不匹配",
964
+ "Past": "Past",
965
+ "Path": "路徑",
966
+ "Pattern": "模式",
967
+ "Percent": "百分比",
968
+ "Perform the Custom request": "Perform the Custom request",
969
+ "Perform the Refresh": "Perform the Refresh",
970
+ "Perform the Submit": "Perform the Submit",
971
+ "Perform the Trigger workflow": "Perform the Trigger workflow",
972
+ "Perform the Update record": "Perform the Update record",
973
+ "Perform the {{title}}": "執行{{title}}",
974
+ "Permission deined": "Permission denied",
975
+ "Permission denied": "沒有權限",
976
+ "Permission policy": "權限策略",
977
+ "Phone": "手機號碼碼",
978
+ "Phone device": "手機裝置",
979
+ "Picker": "Picker",
980
+ "Pie chart": "圓餅圖",
981
+ "Pin to left": "固定到左側",
982
+ "Pin to right": "固定到右側",
983
+ "Placeholder": "Placeholder",
984
+ "Placement": "Placement",
985
+ "Please add a data block on the page first": "Please add a data block on the page first",
986
+ "Please add or select record": "Please add or select record",
987
+ "Please configure the URL": "Please configure the URL",
988
+ "Please configure the duplicate fields": "請設定要複製的欄位",
989
+ "Please confirm the SQL statement first": "請先確認 SQL 語句",
990
+ "Please enter form uid": "Please enter form uid",
991
+ "Please enter the target block UID": "Please enter the target block UID",
992
+ "Please enter variable identifier": "Please enter variable identifier",
993
+ "Please enter variable title": "Please enter variable title",
994
+ "Please fill in the iframe URL": "請填寫嵌入的地址",
995
+ "Please input message content": "Please input message content",
996
+ "Please input notification description": "Please input notification description",
997
+ "Please input notification title": "Please input notification title",
998
+ "Please input target action uid": "Please input target action uid",
999
+ "Please input target block uid": "Please input target block uid",
1000
+ "Please input target form uid": "Please input target form uid",
1001
+ "Please select": "Please select",
1002
+ "Please select field": "Please select field",
1003
+ "Please select fields": "Please select fields",
1004
+ "Please select fields to filter": "Please select fields to filter",
1005
+ "Please select filterable fields": "Please select filterable fields",
1006
+ "Please select state": "Please select state",
1007
+ "Please select the records to be updated": "請選擇要更新的記錄",
1008
+ "Please select time or variable": "Please select time or variable",
1009
+ "Please use a valid SELECT or WITH AS statement": "請使用有效的 SELECT 或 WITH AS 語句",
1010
+ "Plugin": "Plugin",
1011
+ "Plugin Zip File": "插件壓縮包",
1012
+ "Plugin dependencies check failed": "插件依賴檢查失敗",
1013
+ "Plugin dependencies check failed, you should change the dependent version to meet the version requirements.": "插件相容性檢查失敗,你應該編輯依賴版本以滿足版本要求。",
1014
+ "Plugin dependency version mismatch": "Plugin dependency version mismatch",
1015
+ "Plugin loading failed. Please check the server logs.": "插件載入失敗,請檢查伺服器日誌。",
1016
+ "Plugin manager": "插件管理器",
1017
+ "Plugin name": "插件",
1018
+ "Plugin settings": "Plugin settings",
1019
+ "Plugin settings permissions": "插件設定權限",
1020
+ "Plugin source": "插件來源",
1021
+ "Plugin starting...": "插件啟動中...",
1022
+ "Plugin stopping...": "插件停止中...",
1023
+ "Plugin tab name": "插件標籤頁",
1024
+ "Plugin's version": "插件的版本",
1025
+ "Pop-up": "彈窗",
1026
+ "Popup": "開啟彈窗",
1027
+ "Popup close method": "彈窗關閉方式",
1028
+ "Popup form": "Popup form",
1029
+ "Popup message": "彈窗提示訊息",
1030
+ "Popup record": "Popup record",
1031
+ "Popup settings": "Popup settings",
1032
+ "Popup size": "彈窗尺寸",
1033
+ "Popup uid": "Popup UID",
1034
+ "Position": "位置",
1035
+ "Precision": "精確度",
1036
+ "Precision(UI)": "Precision(UI)",
1037
+ "Prefix": "Prefix",
1038
+ "Preset fields": "Preset fields",
1039
+ "Prettify": "格式化",
1040
+ "Preview": "預覽",
1041
+ "Preview Settings": "Preview Settings",
1042
+ "Preview field component": "Preview field component",
1043
+ "Primary": "Primary",
1044
+ "Primary key, unique identifier, self growth": "主键、唯一标识、自增长",
1045
+ "Print": "列印",
1046
+ "Problematic": "有問題",
1047
+ "Progress field": "進度欄位",
1048
+ "Properties": "屬性",
1049
+ "Providing certain collections as options for users, typically used in polymorphic or inheritance scenarios": "將資料表裡的某些表作為可選項目供給使用者選擇,一般用在多型或繼承的場景裡",
1050
+ "Province": "省",
1051
+ "Province/city/area name": "省市區名稱",
1052
+ "Purple": "醬紫",
1053
+ "Quarter": "Quarter",
1054
+ "Quarter of day": "四分之一天",
1055
+ "QuarterYear": "季度",
1056
+ "Quick add": "快捷新增",
1057
+ "Quick create": "快速建立",
1058
+ "Quick duplicate": "快速複製",
1059
+ "Quick upload": "快速上傳",
1060
+ "Radio group": "單選框",
1061
+ "Randomly generated and can be modified. Support letters, numbers and underscores, must start with an letter.": "隨機生成,可編輯。支援英文、數字和下劃線,必須以英文字母開頭。",
1062
+ "Read only": "唯讀",
1063
+ "ReadOnly": "ReadOnly",
1064
+ "ReadPretty": "ReadPretty",
1065
+ "Readme": "說明文件",
1066
+ "Readonly": "唯讀",
1067
+ "Recommended": "Recommended",
1068
+ "Record ID": "資料 ID",
1069
+ "Record deleted successfully": "Record deleted successfully",
1070
+ "Record picker": "資料選擇器",
1071
+ "Record unique key": "Record unique key",
1072
+ "RecordPicker settings": "RecordPicker settings",
1073
+ "Records can be sorted": "可以對行記錄進行排序",
1074
+ "Records per page": "每頁顯示數量",
1075
+ "Red": "薄暮",
1076
+ "Redirect to": "跳轉到",
1077
+ "Reference template": "引用模板",
1078
+ "References": "References",
1079
+ "Refresh": "重新整理",
1080
+ "Refresh data after execution": "Refresh data after execution",
1081
+ "Refresh data blocks": "刷新數據區塊",
1082
+ "Refresh data on action": "Refresh data on action",
1083
+ "Refresh data on close": "Refresh data on close",
1084
+ "Refresh target blocks": "Refresh target blocks",
1085
+ "Regular Expression": "Regular Expression",
1086
+ "Regular expression": "正規表達式",
1087
+ "Related collection": "關聯表",
1088
+ "Relation": "關聯型別",
1089
+ "Relationship blocks": "關聯資料區塊",
1090
+ "Relationship type": "關聯型別",
1091
+ "Reload application": "過載 App",
1092
+ "Remains the same": "不更新",
1093
+ "Remove": "移除",
1094
+ "Render Failed": "渲染失敗",
1095
+ "Render mode": "Render mode",
1096
+ "Repeats": "重複",
1097
+ "Request API": "請求 API",
1098
+ "Request URL": "請求網址",
1099
+ "Request body": "請求 Body (JSON格式)",
1100
+ "Request headers": "請求 Headers (JSON格式)",
1101
+ "Request method": "請求方法",
1102
+ "Request query parameters": "請求查詢引數 (JSON格式)",
1103
+ "Request settings": "請求設定",
1104
+ "Request success": "請求成功",
1105
+ "Required": "必填",
1106
+ "Reset": "重置",
1107
+ "Reset link expiration": "重置連結過的期時間",
1108
+ "Response record": "Response record",
1109
+ "Response type": "Response type",
1110
+ "Restart": "重啟",
1111
+ "Restart application": "重啟 App",
1112
+ "Restrict only relative URIs": "Restrict only relative URIs",
1113
+ "Result": "結果",
1114
+ "Retry after {{count}} seconds": "{{count}} 秒後重試",
1115
+ "Return to the main application": "返回主App",
1116
+ "Return to the previous popup or page": "Return to the previous popup or page",
1117
+ "Rich Text": "富文字",
1118
+ "Right": "Right",
1119
+ "Right fixed": "Right fixed",
1120
+ "Role UID": "角色標識",
1121
+ "Role display name": "角色名稱",
1122
+ "Role name": "角色名稱",
1123
+ "Roles": "角色",
1124
+ "Roles & Permissions": "角色和權限",
1125
+ "Route name": "路由名稱",
1126
+ "Route permissions": "路由權限",
1127
+ "Routes": "路由",
1128
+ "Row click": "Row click",
1129
+ "Rows": "Rows",
1130
+ "SQL collection": "SQL資料表",
1131
+ "Save": "儲存",
1132
+ "Save action": "儲存動作",
1133
+ "Save as block template": "儲存為區塊模板",
1134
+ "Save as inherited template": "儲存為繼承模板",
1135
+ "Save as reference template": "儲存為引用模板",
1136
+ "Save as template": "儲存為模板",
1137
+ "Save conditions": "儲存篩選條件",
1138
+ "Save failed": "Save failed",
1139
+ "Save mode": "儲存方式",
1140
+ "Save record": "儲存資料",
1141
+ "Saved successfully": "儲存成功",
1142
+ "Scale": "Scale",
1143
+ "Scale Down": "縮放",
1144
+ "Scan to input": "Scan to input",
1145
+ "Scheme": "Scheme",
1146
+ "Scientifix notation": "Scientifix notation",
1147
+ "Scope name": "資料範圍名稱",
1148
+ "Screen size": "螢幕尺寸",
1149
+ "Search": "Search",
1150
+ "Search and select collection": "搜尋並選擇資料表",
1151
+ "Search collections...": "Search collections...",
1152
+ "Search parameters": "Search parameters",
1153
+ "Search plugin": "搜尋插件",
1154
+ "Search plugin...": "Search plugin...",
1155
+ "Second": "Second",
1156
+ "Secondary confirmation": "再次確認",
1157
+ "Security": "Security",
1158
+ "Select": "選擇",
1159
+ "Select a source field to use metadata of the field": "Select a source field to use metadata of the field",
1160
+ "Select a variable": "選擇變數",
1161
+ "Select all": "全選",
1162
+ "Select an existing piece of data as the initialization data for the form": "選擇一條已有的資料作為表單的初始化資料",
1163
+ "Select collection": "選擇資料表",
1164
+ "Select data blocks to refresh": "選擇要刷新的數據區塊",
1165
+ "Select data source": "選擇資料來源",
1166
+ "Select date": "Select date",
1167
+ "Select field": "選擇欄位",
1168
+ "Select file": "選擇檔案",
1169
+ "Select form fields": "Select form fields",
1170
+ "Select grouping field": "選擇群組欄位",
1171
+ "Select icon": "選擇圖示",
1172
+ "Select level": "選擇層級",
1173
+ "Select mode": "Select mode",
1174
+ "Select record": "選擇資料",
1175
+ "Select target action": "Select target action",
1176
+ "Select target block": "Select target block",
1177
+ "Select target form block": "Select target form block",
1178
+ "Select template": "選擇模板",
1179
+ "Select trigger event": "Select trigger event",
1180
+ "Select variable": "Select variable",
1181
+ "Select view": "切換檢視",
1182
+ "Selected": "選中",
1183
+ "Selected Collections": "Selected Collections",
1184
+ "Selected records deleted successfully": "Selected records deleted successfully",
1185
+ "Selector": "選擇器",
1186
+ "Selector mode": "選擇器模式",
1187
+ "Selector setting": "Selector setting",
1188
+ "Send code": "傳送驗證碼",
1189
+ "Separate multiple values with comma or Enter": "Separate multiple values with comma or Enter",
1190
+ "Separator": "Separator",
1191
+ "Set Template Engine": "Set Template Engine",
1192
+ "Set action state": "Set action state",
1193
+ "Set block height": "Set block height",
1194
+ "Set block layout": "Set block layout",
1195
+ "Set block state": "Set block state",
1196
+ "Set button state": "Set button state",
1197
+ "Set condition": "Set condition",
1198
+ "Set data loading mode": "設定資料加載方式",
1199
+ "Set data scope": "Set data scope",
1200
+ "Set default sorting rules": "設定排序規則",
1201
+ "Set default value": "設定預設值",
1202
+ "Set details field state": "Set details field state",
1203
+ "Set field state": "Set field state",
1204
+ "Set field value": "Set field value",
1205
+ "Set form field state": "Set form field state",
1206
+ "Set form field value": "Set form field value",
1207
+ "Set state": "Set state",
1208
+ "Set the count of columns displayed in a row": "設定一行展示的列數",
1209
+ "Set the data scope": "設定資料範圍",
1210
+ "Set validation rules": "設定驗證規則",
1211
+ "Set value": "Set value",
1212
+ "Setting": "設定",
1213
+ "Settings": "設定",
1214
+ "Show date range": "Show date range",
1215
+ "Show file name": "显示文件名",
1216
+ "Show in menu": "在菜單中顯示",
1217
+ "Show label": "Show label",
1218
+ "Show lunar": "展示農曆",
1219
+ "Show message": "Show message",
1220
+ "Show notification": "Show notification",
1221
+ "Show row numbers": "Show row numbers",
1222
+ "Show time": "顯示時間",
1223
+ "Sign in": "登入",
1224
+ "Sign in via account": "帳號密碼登入",
1225
+ "Sign in via phone": "手機號碼登入",
1226
+ "Sign in with another account": "登入其他帳號",
1227
+ "Sign out": "登出",
1228
+ "Sign up": "註冊",
1229
+ "Sign up successfully, and automatically jump to the sign in page": "註冊成功,即將跳轉到登入頁面",
1230
+ "Signed up successfully. It will jump to the login page.": "註冊成功,將跳轉登入頁。",
1231
+ "Simple string replacement, can be used to interpolate variables in a string.": "Simple string replacement, can be used to interpolate variables in a string.",
1232
+ "Single line text": "單行文字",
1233
+ "Single select": "下拉選單(單選)",
1234
+ "Single select and radio fields can be used as the grouping field": "資料表的單選欄位可以作為群組欄位",
1235
+ "Size": "大小",
1236
+ "Sizes": "Sizes",
1237
+ "Skip getting the total number of table records during paging to speed up loading. It is recommended to enable this option for data tables with a large amount of data": "Skip getting the total number of table records during paging to speed up loading. It is recommended to enable this option for data tables with a large amount of data",
1238
+ "Skip required validation": "跳過必填檢驗",
1239
+ "Small": "較窄",
1240
+ "SmartTv": "SmartTv",
1241
+ "Some files are not uploaded correctly, please check.": "Some files are not uploaded correctly, please check.",
1242
+ "Sorry, the page you visited does not exist.": "抱歉,你訪問的頁面不存在。",
1243
+ "Sort": "排序",
1244
+ "Sortable": "可排序的",
1245
+ "Source collection": "來源資料表",
1246
+ "Source collections": "來源資料表",
1247
+ "Source key": "來源資料表欄位標識",
1248
+ "Specific properties": "Specific properties",
1249
+ "Specifies a Permissions Policy for the <iframe>. The policy defines what features are available to the <iframe> (for example, access to the microphone, camera, battery, web-share, etc.) based on the origin of the request.": "Specifies a Permissions Policy for the <iframe>. The policy defines what features are available to the <iframe> (for example, access to the microphone, camera, battery, web-share, etc.) based on the origin of the request.",
1250
+ "Specify height": "Specify height",
1251
+ "Start": "Start",
1252
+ "Start accessor": "Start accessor",
1253
+ "Start date field": "開始日期欄位",
1254
+ "State": "State",
1255
+ "Stay on current page": "停留在當前頁面",
1256
+ "Stay on the current popup or page": "Stay on the current popup or page",
1257
+ "Steps": "Steps",
1258
+ "Store the creation time of each record": "記錄建立時間",
1259
+ "Store the creation user of each record": "記錄建立者",
1260
+ "Store the last update time of each record": "記錄最後更新時間",
1261
+ "Store the last update user of each record": "記錄最後更新者",
1262
+ "Street": "鄉鎮/街道",
1263
+ "String": "字串",
1264
+ "String template": "String template",
1265
+ "Style": "Style",
1266
+ "Sub-detail": "Sub-detail",
1267
+ "Sub-details": "子詳情",
1268
+ "Sub-form": "子表單",
1269
+ "Sub-form(Popover)": "子表單 (彈窗)",
1270
+ "Sub-table": "子表格",
1271
+ "Subform mode": "子表單模式",
1272
+ "Submit": "提交",
1273
+ "Submit action settings": "Submit action settings",
1274
+ "Submit record": "Submit record",
1275
+ "Submitted successfully": "提交成功",
1276
+ "Subtable": "子表格",
1277
+ "Subtable mode": "子表格模式",
1278
+ "Successfully": "Successfully",
1279
+ "Suffix": "Suffix",
1280
+ "Super admin": "超級管理員",
1281
+ "Superior department": "Superior department",
1282
+ "Support filtering multiple blocks simultaneously, support deep selection of relationship fields (e.g.: User/Department/Name)": "Support filtering multiple blocks simultaneously, support deep selection of relationship fields (e.g.: User/Department/Name)",
1283
+ "Support for a single or bulk upload, file size should not exceed": "支援單個或批次上傳,檔案大小不能超過",
1284
+ "Support for a single or bulk upload.": "Support for a single or bulk upload.",
1285
+ "Switch role": "切換角色",
1286
+ "Switching the picker, the value and default value will be cleared": "Switching the picker, the value and default value will be cleared",
1287
+ "Sync from database": "從資料庫同步",
1288
+ "Sync from form fields": "同步表單欄位",
1289
+ "Sync successfully": "同步成功",
1290
+ "Syntax references": "語法參考",
1291
+ "System": "System",
1292
+ "System & security": "System & security",
1293
+ "System fields": "系統欄位",
1294
+ "System info": "系統資訊",
1295
+ "System management": "System management",
1296
+ "System settings": "系統設定",
1297
+ "System title": "系統名稱",
1298
+ "System variables": "系統變數",
1299
+ "Tab": "標籤",
1300
+ "Tab name": "標籤名稱",
1301
+ "Table": "表格",
1302
+ "Table OID(Inheritance)": "資料表 OID (繼承)",
1303
+ "Table column settings": "Table column settings",
1304
+ "Table density": "Table density",
1305
+ "Table selected records": "表格中選中的記錄",
1306
+ "Table settings": "Table settings",
1307
+ "Table size": "Table size",
1308
+ "Tablet": "Tablet",
1309
+ "Tablet device": "平板裝置",
1310
+ "Tag": "標籤",
1311
+ "Tag color field": "標籤顏色欄位",
1312
+ "Target": "目標",
1313
+ "Target block UID": "Target block UID",
1314
+ "Target block uid": "Target block uid",
1315
+ "Target collection": "目標資料表",
1316
+ "Target form block": "Target form block",
1317
+ "Target key": "目標資料表欄位標識",
1318
+ "Target position": "目標位置",
1319
+ "Template": "模板",
1320
+ "Template Data": "模板資料",
1321
+ "Template engine": "Template engine",
1322
+ "Template fields": "Template fields",
1323
+ "Template name": "模板名稱",
1324
+ "Templates": "模板",
1325
+ "Text": "Text",
1326
+ "Text Align": "文本對齊",
1327
+ "Text input": "Text input",
1328
+ "Text only": "Text only",
1329
+ "The application is reloading, please do not close the page.": "App 正在重新載入,請勿關閉頁面。",
1330
+ "The current button is hidden and cannot be clicked (this message is only visible when the UI Editor is active).": "The current button is hidden and cannot be clicked (this message is only visible when the UI Editor is active).",
1331
+ "The current dependency version of the plugin does not match the version of the application and may not work properly. Are you sure you want to continue enabling the plugin?": "The current dependency version of the plugin does not match the version of the application and may not work properly. Are you sure you want to continue enabling the plugin?",
1332
+ "The current user only has the UI configuration permission, but don't have \"{{actionName}}\" permission for collection \"{{name}}\"": "The current user only has the UI configuration permission, but don't have \"{{actionName}}\" permission for collection \"{{name}}\"",
1333
+ "The current user only has the UI configuration permission, but don't have \"{{actionName}}\" permission for field \"{{name}}\"": "The current user only has the UI configuration permission, but don't have \"{{actionName}}\" permission for field \"{{name}}\"",
1334
+ "The current user only has the UI configuration permission, but don't have view permission for collection \"{{name}}\"": "The current user only has the UI configuration permission, but don't have view permission for collection \"{{name}}\"",
1335
+ "The deletion was successful.": "刪除成功",
1336
+ "The field has been deleted": "欄位已刪除",
1337
+ "The field value cannot be greater than ": "數值不能大於",
1338
+ "The field value cannot be less than ": "數值不能小於",
1339
+ "The field value is not a email format": "The field value is not a email format",
1340
+ "The field value is not an integer number": "數字不是整數",
1341
+ "The field value is required": "The field value is required",
1342
+ "The following field types are not compatible and do not support output and display": "The following field types are not compatible and do not support output and display",
1343
+ "The selected fields will automatically populate the form": "The selected fields will automatically populate the form",
1344
+ "The title field is used to identify the template record": "The title field is used to identify the template record",
1345
+ "The value of this variable is derived from the query string of the page URL. This variable can only be used normally when the page has a query string.": "該變數的值來自頁面 URL 的查詢字符串,只有當頁面有查詢字符串時,該變數才能正常使用。",
1346
+ "The will interrupt service, it may take a few seconds to restart. Are you sure to continue?": "重啟將會中斷當前服務,這個過程可能需要一點時間,確定要繼續嗎?",
1347
+ "The {{type}} \"{{name}}\" may have been deleted. Please remove this {{blockType}}.": "{{type}} \"{{name}}\" 可能已被刪除,請移除這個 {{blockType}}。",
1348
+ "Theme": "主題",
1349
+ "Then": "然後",
1350
+ "Third party services": "Third party services",
1351
+ "This Month": "This Month",
1352
+ "This Quarter": "This Quarter",
1353
+ "This Week": "This Week",
1354
+ "This Year": "This Year",
1355
+ "This and following events": "此事件及後續事件",
1356
+ "This event": "此事件",
1357
+ "This field has been hidden and you cannot view it (this content is only visible when the UI Editor is activated).": "This field has been hidden and you cannot view it (this content is only visible when the UI Editor is activated).",
1358
+ "This field is required": "This field is required",
1359
+ "This is a demo text, **supports Markdown syntax**.": "這是一段演示文字,**支援 Markdown 語法**。",
1360
+ "This is likely a NocoBase internals bug. Please open an issue at <1>here</1>": "這可能是 NocoBase 內部的問題,你可以在<1>這裡</1>將該錯誤反饋給我們,我們會盡快修復",
1361
+ "This month": "本月",
1362
+ "This quarter": "本季度",
1363
+ "This variable has been deprecated and can be replaced with \"Current form\"": "該變數已被棄用,可以使用“當前表單”作為替代",
1364
+ "This week": "本週",
1365
+ "This year": "今年",
1366
+ "Through collection": "中介資料表",
1367
+ "Time": "時間",
1368
+ "Time format": "時間格式",
1369
+ "Time scale": "時間縮放等級",
1370
+ "Timeout config": "Timeout config",
1371
+ "Timestamp": "Timestamp",
1372
+ "Title": "標題",
1373
+ "Title & description": "Title & description",
1374
+ "Title accessor": "Title accessor",
1375
+ "Title field": "標題欄位",
1376
+ "Title field component": "Title field component",
1377
+ "Title position": "Title position",
1378
+ "Today": "今天",
1379
+ "Toggles the subfield mode": "切換子欄位模式",
1380
+ "Tomorrow": "明天",
1381
+ "Tooltip": "Tooltip",
1382
+ "Top left": "Top left",
1383
+ "Top right": "Top right",
1384
+ "Total {{count}} items": "總共 {{count}} 項",
1385
+ "Tree collection": "樹狀表",
1386
+ "Tree table": "樹表格",
1387
+ "Trigger condition": "Trigger condition",
1388
+ "Trigger event": "Trigger event",
1389
+ "Trigger workflow": "觸發工作流程",
1390
+ "Triggered when the row is clicked": "點選表格列時觸發",
1391
+ "True": "True",
1392
+ "Try again": "重試一下",
1393
+ "Turn pages": "翻頁",
1394
+ "Two tone": "Two tone",
1395
+ "Type": "類型",
1396
+ "UI Editor": "介面設定",
1397
+ "UI editor": "介面編輯",
1398
+ "URL": "URL",
1399
+ "URL search params": "URL 查詢參數",
1400
+ "UnSelect all": "取消全選",
1401
+ "Unauthenticated. Please sign in to continue.": "Unauthenticated. Please sign in to continue.",
1402
+ "Unconnected": "未連線",
1403
+ "Unicode characters are permitted": "Unicode characters are permitted",
1404
+ "Unique": "不允許重複",
1405
+ "Unit conversion": "Unit conversion",
1406
+ "Unix Timestamp": "Unix Timestamp",
1407
+ "Unknown field type": "Unknown field type",
1408
+ "Unnamed": "未命名",
1409
+ "Unpinned": "取消固定",
1410
+ "Unsafe integer": "Unsafe integer",
1411
+ "Unsaved changes": "未儲存編輯",
1412
+ "Update": "更新",
1413
+ "Update all data?": "更新全部資料嗎?",
1414
+ "Update or create": "不存在時新增,存在時更新",
1415
+ "Update plugin": "更新插件",
1416
+ "Update record": "更新資料",
1417
+ "Update record action": "Update record",
1418
+ "Update selected data?": "更新選中的資料嗎?",
1419
+ "Updated successfully": "更新成功",
1420
+ "UpdatedAt": "UpdatedAt",
1421
+ "UpdatedBy": "UpdatedBy",
1422
+ "Upgrade": "可供更新",
1423
+ "Upload": "上傳",
1424
+ "Upload file settings": "Upload file settings",
1425
+ "Upload new version": "上傳新版",
1426
+ "Upload plugin": "上傳插件",
1427
+ "Uploading": "Uploading",
1428
+ "Use simple pagination mode": "Use simple pagination mode",
1429
+ "Use the same time zone (GMT) for all users": "所有使用者使用同一時區 (格林尼治標準時間)",
1430
+ "Used for drag and drop sorting scenarios, supporting grouping sorting": "Used for drag and drop sorting scenarios, supporting grouping sorting",
1431
+ "User": "使用者",
1432
+ "User not found. Please sign in again to continue.": "User not found. Please sign in again to continue.",
1433
+ "User password changed, please signin again.": "User password changed, please signin again.",
1434
+ "Username": "使用者名稱",
1435
+ "Users": "使用者",
1436
+ "Users & permissions": "Users & permissions",
1437
+ "Valid range: 10-40": "Valid range: 10-40",
1438
+ "Valid range: 100-900": "Valid range: 100-900",
1439
+ "Validation": "Validation",
1440
+ "Validation rule": "驗證規則",
1441
+ "Value": "欄位數值",
1442
+ "Variable identifier": "Variable identifier",
1443
+ "Variable title": "Variable title",
1444
+ "Verification code": "驗證碼",
1445
+ "Version": "版本",
1446
+ "Version range": "版本範圍",
1447
+ "Vertical": "Vertical",
1448
+ "View": "檢視",
1449
+ "View all plugins": "檢視所有插件",
1450
+ "View record": "檢視資料",
1451
+ "Village": "村/居委會",
1452
+ "Visible": "顯示",
1453
+ "Volcano": "火山",
1454
+ "Wearable": "Wearable",
1455
+ "Week": "週",
1456
+ "Weekly": "每週",
1457
+ "When a field is selected for grouping, it will be grouped first before sorting.": "When a field is selected for grouping, it will be grouped first before sorting.",
1458
+ "When condition is met": "When condition is met",
1459
+ "When condition is not met": "When condition is not met",
1460
+ "When submitting the following fields, the saved values are": "提交以下欄位時,儲存的數值為",
1461
+ "When the HTTP method is Post, Put or Patch, and this custom request inside the form, the request body will be automatically filled in with the form data": "When the HTTP method is Post, Put or Patch, and this custom request inside the form, the request body will be automatically filled in with the form data",
1462
+ "When the Label exceeds the width": "When the Label exceeds the width",
1463
+ "With condition": "With condition",
1464
+ "Without condition": "Without condition",
1465
+ "Work week": "工作日",
1466
+ "Workflow": "Workflow",
1467
+ "Wrap": "Wrap",
1468
+ "Wysiwyg": "所見即所得",
1469
+ "Year": "年",
1470
+ "Year-Month-Day": "年-月-日",
1471
+ "Year/Month/Day": "年/月/日",
1472
+ "Yearly": "每年",
1473
+ "Yes": "是",
1474
+ "Yesterday": "昨天",
1475
+ "Your session has expired. Please sign in again.": "Your session has expired. Please sign in again.",
1476
+ "conditions in the group": "conditions in the group",
1477
+ "contains": "包含",
1478
+ "data source": "數據源",
1479
+ "does not contain": "不包含",
1480
+ "edit title": "編輯標題",
1481
+ "ends with": "結尾是",
1482
+ "exists": "存在",
1483
+ "is": "等於",
1484
+ "is after": "晚於",
1485
+ "is any of": "is any of",
1486
+ "is before": "早於",
1487
+ "is between": "介於",
1488
+ "is empty": "為空",
1489
+ "is none of": "is none of",
1490
+ "is not": "不等於",
1491
+ "is not empty": "不為空",
1492
+ "is on or after": "不早於",
1493
+ "is on or before": "不晚於",
1494
+ "item": "item",
1495
+ "items": "items",
1496
+ "loading": "loading",
1497
+ "name is required": "name is required",
1498
+ "not ends with": "結尾不是",
1499
+ "not exists": "不存在",
1500
+ "not starts with": "開頭不是",
1501
+ "pixels": "畫素",
1502
+ "re-download file": "重新下載檔案",
1503
+ "starts with": "開頭是",
1504
+ "tlds": "tlds",
1505
+ "visible": "可見",
1506
+ "{{#label}} email address doesn’t meet the required format": "{{#label}} email address doesn’t meet the required format",
1507
+ "{{#label}} is not allowed to be empty": "{{#label}} is not allowed to be empty",
1508
+ "{{#label}} is required": "{{#label}} is required",
1509
+ "{{#label}} length must be at least {{#limit}} characters long": "{{#label}} length must be at least {{#limit}} characters long",
1510
+ "{{#label}} length must be less than or equal to {{#limit}} characters long": "{{#label}} length must be less than or equal to {{#limit}} characters long",
1511
+ "{{#label}} length must be {{#limit}} characters long": "{{#label}} length must be {{#limit}} characters long",
1512
+ "{{#label}} must be a credit card": "{{#label}} must be a credit card",
1513
+ "{{#label}} must be a float or double": "{{#label}} must be a float or double",
1514
+ "{{#label}} must be a multiple of {{#multiple}}": "{{#label}} must be a multiple of {{#multiple}}",
1515
+ "{{#label}} must be a negative number": "{{#label}} must be a negative number",
1516
+ "{{#label}} must be a number": "{{#label}} must be a number",
1517
+ "{{#label}} must be a positive number": "{{#label}} must be a positive number",
1518
+ "{{#label}} must be a safe number": "{{#label}} must be a safe number",
1519
+ "{{#label}} must be a string": "{{#label}} must be a string",
1520
+ "{{#label}} must be a valid ISO 8601 date": "{{#label}} must be a valid ISO 8601 date",
1521
+ "{{#label}} must be a valid UUID": "{{#label}} must be a valid UUID",
1522
+ "{{#label}} must be a valid date": "{{#label}} must be a valid date",
1523
+ "{{#label}} must be a valid hostname": "{{#label}} must be a valid hostname",
1524
+ "{{#label}} must be a valid port": "{{#label}} must be a valid port",
1525
+ "{{#label}} must be a valid uri": "{{#label}} must be a valid uri",
1526
+ "{{#label}} must be a valid uri with a scheme matching the {{#scheme}} pattern": "{{#label}} must be a valid uri with a scheme matching the {{#scheme}} pattern",
1527
+ "{{#label}} must be an integer": "{{#label}} must be an integer",
1528
+ "{{#label}} must be greater than or equal to {{#limit}}": "{{#label}} must be greater than or equal to {{#limit}}",
1529
+ "{{#label}} must be greater than {{#limit}}": "{{#label}} must be greater than {{#limit}}",
1530
+ "{{#label}} must be in {{#format}} format": "{{#label}} must be in {{#format}} format",
1531
+ "{{#label}} must be less than or equal to {{#limit}}": "{{#label}} must be less than or equal to {{#limit}}",
1532
+ "{{#label}} must be less than {{#limit}}": "{{#label}} must be less than {{#limit}}",
1533
+ "{{#label}} must not have leading or trailing whitespace": "{{#label}} must not have leading or trailing whitespace",
1534
+ "{{#label}} must not have more than {{#limit}} decimal places": "{{#label}} must not have more than {{#limit}} decimal places",
1535
+ "{{#label}} must only contain alpha-numeric and underscore characters": "{{#label}} must only contain alpha-numeric and underscore characters",
1536
+ "{{#label}} must only contain alpha-numeric characters": "{{#label}} must only contain alpha-numeric characters",
1537
+ "{{#label}} must only contain hexadecimal characters": "{{#label}} must only contain hexadecimal characters",
1538
+ "{{#label}} must only contain lowercase characters": "{{#label}} must only contain lowercase characters",
1539
+ "{{#label}} must only contain uppercase characters": "{{#label}} must only contain uppercase characters",
1540
+ "{{#label}} with value \"{{#value}}\" fails to match the required pattern": "{{#label}} with value \"{{#value}}\" fails to match the required pattern",
1541
+ "{{#label}} with value \"{{#value}}\" fails to match the {{#name}} pattern": "{{#label}} with value \"{{#value}}\" fails to match the {{#name}} pattern",
1542
+ "{{#label}} with value \"{{#value}}\" matches the inverted pattern": "{{#label}} with value \"{{#value}}\" matches the inverted pattern",
1543
+ "{{#label}} with value \"{{#value}}\" matches the inverted {{#name}} pattern": "{{#label}} with value \"{{#value}}\" matches the inverted {{#name}} pattern",
1544
+ "{{count}} filter items": "{{count}} 個篩選項目",
1545
+ "{{count}} more items": "還有 {{count}} 項",
1546
+ "≠": "≠",
1547
+ "≤": "≤",
1548
+ "≥": "≥"
1549
+ }