@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,1571 @@
1
+ {
2
+ "\"Content-Type\" only support \"application/json\", and no need to specify": "\"Content-Type\" 仅支持 \"application/json\",无需指定",
3
+ "(Fields only)": "(仅字段)",
4
+ "(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": "访问控制",
14
+ "Accessible": "允许访问",
15
+ "Accuracy": "精确度",
16
+ "Action": "操作",
17
+ "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": "操作列",
30
+ "Add": "创建",
31
+ "Add & Update": "添加 & 更新",
32
+ "Add Markdown": "添加 Markdown",
33
+ "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": "添加事件流",
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": "添加参数",
56
+ "Add plugin": "新增插件",
57
+ "Add property": "添加属性",
58
+ "Add record": "添加数据",
59
+ "Add request header": "添加请求头",
60
+ "Add role": "添加角色",
61
+ "Add rule": "添加规则",
62
+ "Add sort field": "添加排序字段",
63
+ "Add step": "添加步骤",
64
+ "Add tab": "添加标签页",
65
+ "Add target block": "添加目标区块",
66
+ "Add template": "添加模板",
67
+ "Add text": "Add text",
68
+ "Add type": "新增方式",
69
+ "Add validation rule": "新增验证规则",
70
+ "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": "允许解除已有数据关联",
102
+ "Allow dissociate": "允许移除已关联记录",
103
+ "Allow linking to multiple records": "允许关联多条记录",
104
+ "Allow list": "自定义允许列表",
105
+ "Allow multiple": "允许添加/关联多条",
106
+ "Allow multiple selection": "允许多选",
107
+ "Allow relative URIs": "允许相对路径",
108
+ "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": "允许清除缓存,重启应用",
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": "允许查询字符串出现`[]`",
121
+ "Alphabet": "字符",
122
+ "Any": "任意",
123
+ "App error": "应用错误",
124
+ "Application reloading": "应用重新加载中",
125
+ "Are you sure to delete this plugin?": "确定要删除此插件吗?",
126
+ "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 ?": "你确定你想清除缓存吗",
129
+ "Are you sure you want to delete it?": "你确定要删除吗?",
130
+ "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)?": "你确定要加载 {{count}} 个数据表吗?",
136
+ "Are you sure you want to perform the Custom request action": "你确定执行自定义请求操作吗?",
137
+ "Are you sure you want to perform the Refresh action?": "你确定执行刷新操作吗?",
138
+ "Are you sure you want to perform the Submit action?": "你确定执行提交操作吗?",
139
+ "Are you sure you want to perform the Trigger workflow action?": "你确定执行触发工作流吗?",
140
+ "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?": "你确定要提交记录吗?",
143
+ "Are you sure you want to show these routes in menu?": "你确定要在菜单中显示这些路由吗?",
144
+ "Area": "区/县",
145
+ "Area chart": "面积图",
146
+ "Assign data scope for the template": "Assign data scope for the template",
147
+ "Assign field values": "字段赋值",
148
+ "Assign value": "赋值",
149
+ "Assignment mode": "赋值模式",
150
+ "Associate": "关联",
151
+ "Associated records": "关联记录",
152
+ "Association field settings": "关系字段设置",
153
+ "Association fields": "关系字段",
154
+ "Association fields filter": "关系筛选",
155
+ "Association select settings": "关系选择器设置",
156
+ "Association table settings": "关系字段设置",
157
+ "Association tag settings": "关系标签设置",
158
+ "AssociationField component": "关系字段组件",
159
+ "Attempts to encode the URI using encodeURI before validating it again": "尝试使用 encodeURI 对 URI 进行编码后验证",
160
+ "Audit logs": "操作记录",
161
+ "Authentication": "用户认证",
162
+ "Author": "作者",
163
+ "Auto": "自动",
164
+ "Auto focus": "自动聚焦",
165
+ "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": "随机生成默认值",
170
+ "Automatically remove heading and tailing spaces": "自动去除首尾空白字符",
171
+ "Automatically update timestamp on update": "当记录更新时自动设置字段值为当前时间",
172
+ "Automatically update timestamp to the current server time on update": "当记录更新时自动设置字段值为当前服务端时间",
173
+ "Available \"target blocks\" are all data blocks on the current page": "可选的\"目标区块\"为当前页面中的所有数据区块",
174
+ "Available Collections": "可选数据表",
175
+ "Background Color": "背景颜色",
176
+ "Bar chart": "条形图",
177
+ "Base": "基础",
178
+ "Basic": "基本类型",
179
+ "Basic configuration": "基础配置",
180
+ "Before": "之前",
181
+ "Before change": "变更前",
182
+ "Before render": "渲染前",
183
+ "Blank block": "空区块",
184
+ "Block": "区块",
185
+ "Block Linkage rules": "区块联动规则",
186
+ "Block linkage rules": "区块联动规则",
187
+ "Block list": "区块列表",
188
+ "Block template": "区块模板",
189
+ "Block templates": "区块模板",
190
+ "Block title": "区块标题",
191
+ "Block type": "区块类型",
192
+ "Blocks": "区块",
193
+ "Blue": "拂晓蓝",
194
+ "Bookmark": "书签",
195
+ "Boolean": "逻辑值",
196
+ "Bottom left": "左下角",
197
+ "Bottom right": "右下角",
198
+ "Built-in": "内置",
199
+ "Bulk edit": "批量编辑",
200
+ "Bulk enable": "批量激活",
201
+ "Bulk update": "批量更新",
202
+ "Button background color": "按钮颜色",
203
+ "Button icon": "按钮图标",
204
+ "Button settings": "按钮设置",
205
+ "Button title": "按钮标题",
206
+ "Button type": "按钮类型",
207
+ "Calculation engine": "计算引擎",
208
+ "Calendar": "日历",
209
+ "Calendar Month": "日历月",
210
+ "Calendar Year": "日历年",
211
+ "Calendar collection": "日历数据表",
212
+ "Calendar week": "日历周",
213
+ "Cancel": "取消",
214
+ "Cannot find the model instance with UID": "找不到对应 UID 的模型实例",
215
+ "Card settings": "卡片设置",
216
+ "Cascade Select": "级联选择",
217
+ "Cascade select": "级联选择",
218
+ "Cascade select settings": "级联选择设置",
219
+ "Categories": "数据表类别",
220
+ "Category name": "分类名称",
221
+ "Center": "居中",
222
+ "Change password": "修改密码",
223
+ "Changed to": "修改为",
224
+ "Changelog": "更新日志",
225
+ "Chart blocks": "图表区块",
226
+ "Chart config": "图表配置",
227
+ "Chart title": "图表标题",
228
+ "Chart type": "图表类型",
229
+ "Check strength": "检查强度",
230
+ "Checkbox": "勾选",
231
+ "Checkbox group": "复选框",
232
+ "Children": "子记录",
233
+ "China region": "中国行政区",
234
+ "Choices": "选择类型",
235
+ "Choices fields": "选项字段",
236
+ "City": "市",
237
+ "Classic page (v1)": "旧版页面(v1)",
238
+ "Clear": "清空",
239
+ "Clear cache": "清除缓存",
240
+ "Clear default value": "清除默认值",
241
+ "Click": "点击",
242
+ "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": "被点击的行记录",
246
+ "Close": "关闭",
247
+ "Collapse": "折叠面板",
248
+ "Collapse all": "全部收起",
249
+ "Collapse button": "折叠",
250
+ "Collapse settings": "折叠设置",
251
+ "Collapsed rows": "折叠时显示的行数",
252
+ "Collection": "数据表",
253
+ "Collection category": "数据表类别",
254
+ "Collection display name": "数据表名称",
255
+ "Collection fields": "数据表字段",
256
+ "Collection manager": "数据表管理",
257
+ "Collection name": "数据表标识",
258
+ "Collection selector": "数据表选择器",
259
+ "Collection template": "数据表模板",
260
+ "Collections": "数据表",
261
+ "Collections & Fields": "数据表配置",
262
+ "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": "比较",
273
+ "Component properties": "组件属性",
274
+ "Compressed file url": "压缩包地址",
275
+ "Computer": "电脑",
276
+ "Condition": "条件",
277
+ "Conditional assignment": "按条件赋值",
278
+ "Configuration saved": "配置已保存",
279
+ "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": "配置页面",
288
+ "Configure permission": "配置权限",
289
+ "Configure permissions": "配置权限",
290
+ "Configure rows": "配置行",
291
+ "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.": "配置每行的尺寸。该值是一个数字数组,表示行中每列的宽度。",
293
+ "Confirm": "确定",
294
+ "Confirm Load Collections": "确认加载数据表",
295
+ "Confirm password": "确认密码",
296
+ "Confirmation": "二次确认",
297
+ "Connect data blocks": "连接数据区块",
298
+ "Connect fields": "连接字段",
299
+ "Connect to database view": "连接数据库视图",
300
+ "Console": "游戏机",
301
+ "Constant": "常量",
302
+ "Constant value": "静态值",
303
+ "Contain": "包含",
304
+ "Content": "内容",
305
+ "Content overflow display mode": "内容溢出显示方式",
306
+ "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.": "控制是否允许当前文档自动播放媒体。这种控制是通过接口 HTMLMediaElement 来实现。当这种规则被禁用,而且没有用户操作的时候,HTMLMediaElement.play() 返回的 Promise 会拒绝并抛出一个 DOMException 异常。<audio> 和 <video> 上的 autoplay 属性会被忽略。",
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.": "控制是否允许当前文档设置 document.domain。当这种规则被禁用时,尝试设置 document.domain 会失败并抛出 SecurityError DOMException 异常。",
309
+ "Controls whether the current document is allowed to use Element.requestFullscreen(). When this policy is disabled, the returned Promise rejects with a TypeError.": "控制是否允许当前文档使用 Element.requestFullScreen()。当这种规则被禁用时,返回的 Promise 会拒绝并抛出 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.": "控制是否允许当前文档使用音频输入设备。当这种规则被禁用时,MediaDevices.getUserMedia() 返回的 Promise 会拒绝并抛出错误 NotAllowedError。",
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.": "控制是否允许当前文档使用 Encrypted Media Extension API(EME)。当这种规则被禁用时,Navigator.requestMediaKeySystemAccess() 返回的 Promise 会拒绝并抛出 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.": "控制是否允许当前文档使用 Geolocation 接口。当这种规则被禁用时,调用 getCurrentPosition() 和 watchPosition() 会返回包含 PERMISSION_DENIED 的 PositionError。",
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.": "控制是否允许当前文档使用 Payment Request API。当这种规则被启用时,构造函数 PaymentRequest() 会抛出错误 SecurityError。",
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.": "控制是否允许当前文档使用 Web MIDI API。当这种规则被禁用时,Navigator.requestMIDIAccess() 返回的 Promise 会拒绝并抛出错误 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.": "控制是否允许当前文档使用视频输入设备。当这种规则被禁用时,MediaDevices.getUserMedia() 返回的 Promise 会拒绝并抛出 NotAllowedError DOMException 异常。",
316
+ "Convert reference to duplicate": "模板引用转为复制",
317
+ "Convert template to duplicate": "Convert template to duplicate",
318
+ "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": "当前操作",
335
+ "Current block": "当前区块",
336
+ "Current collection": "当前数据表",
337
+ "Current device type": "当前设备类型",
338
+ "Current form": "当前表单",
339
+ "Current object": "当前对象",
340
+ "Current popup": "当前弹窗",
341
+ "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": "自定义字段",
353
+ "Custom field display name": "自定义字段名称",
354
+ "Custom name": "自定义名称",
355
+ "Custom request": "自定义请求",
356
+ "Custom title": "自定义标题",
357
+ "Custom variable": "自定义变量",
358
+ "Customize": "自定义",
359
+ "Cyan": "明青",
360
+ "DESC": "降序",
361
+ "Daily": "每天",
362
+ "Danger action": "危险操作",
363
+ "Danger red": "红色",
364
+ "Dashed": "虚线",
365
+ "Data Model": "数据模型",
366
+ "Data blocks": "数据区块",
367
+ "Data changes": "数据变更",
368
+ "Data fields": "数据字段",
369
+ "Data loading mode": "数据加载方式",
370
+ "Data model": "数据模型",
371
+ "Data model tools": "数据模型工具",
372
+ "Data refreshed successfully": "数据刷新成功",
373
+ "Data scope": "数据范围",
374
+ "Data source": "数据源",
375
+ "Data source key": "数据源键",
376
+ "Data source permissions": "数据源权限",
377
+ "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": "日期限定范围",
386
+ "Date scope": "日期范围",
387
+ "Date variables": "日期变量",
388
+ "Date variables(Deprecated)": "日期变量(废弃)",
389
+ "DateOnly": "仅日期",
390
+ "Datetime": "日期时间",
391
+ "Datetime (with time zone)": "日期时间(含时区)",
392
+ "Datetime (without time zone)": "日期时间(不含时区)",
393
+ "Datetime settings": "日期时间设置",
394
+ "Day": "天",
395
+ "Day before yesterday": "前天",
396
+ "Day/Month/Year": "日/月/年",
397
+ "Default": "默认",
398
+ "Default collapse": "默认展开",
399
+ "Default collapsed": "默认折叠",
400
+ "Default expand all": "默认展开所有行",
401
+ "Default filter conditions": "默认筛选条件",
402
+ "Default is the ID field": "默认为 ID 字段",
403
+ "Default operator": "默认操作符",
404
+ "Default role": "默认角色",
405
+ "Default sorting": "默认排序",
406
+ "Default theme": "默认主题",
407
+ "Default title for each record": "用作数据的默认标题",
408
+ "Default value": "默认值",
409
+ "Default value to current server time": "设置字段默认值为当前服务端时间",
410
+ "Default value to current time": "设置字段默认值为当前时间",
411
+ "Delete": "删除",
412
+ "Delete Event": "删除日程",
413
+ "Delete action": "删除操作",
414
+ "Delete block": "删除区块",
415
+ "Delete category": "删除分类",
416
+ "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": "删除设置",
425
+ "Delete step": "删除步骤",
426
+ "Delete table column": "删除列",
427
+ "Delete this event?": "是否删除这个日程?",
428
+ "Delete this target block": "删除此目标区块",
429
+ "Delete variable": "删除变量",
430
+ "Deny list": "禁止自定义",
431
+ "Department name": "部门名称",
432
+ "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": "详情项设置",
441
+ "Details": "详情",
442
+ "Details settings": "详情设置",
443
+ "Determine whether a record exists by the following fields": "通过以下字段判断记录是否存在",
444
+ "Dialog": "对话框",
445
+ "Direct assignment": "直接赋值",
446
+ "Direct duplicate": "直接复制",
447
+ "Disable": "禁用",
448
+ "Disable manual input": "禁止手动输入",
449
+ "Disable tabs": "禁用标签页",
450
+ "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": "显示设置",
457
+ "Display association fields": "显示关联表的字段",
458
+ "Display field title": "显示字段标题",
459
+ "Display fields": "显示字段",
460
+ "Display label": "显示标签",
461
+ "Display mode": "显示模式",
462
+ "Display name": "显示名称",
463
+ "Display only": "阅读模式",
464
+ "Display order number": "显示序号",
465
+ "Display page title": "显示页面标题",
466
+ "Display title": "显示标题",
467
+ "DisplayName": "显示名称",
468
+ "Divide by": "除以",
469
+ "Divider line color": "分割线颜色",
470
+ "Do not concatenate search params in the URL": "查询参数不要在 URL 里拼接",
471
+ "Do not load data when filter is empty": "筛选条件为空时不加载数据",
472
+ "Docs": "文档",
473
+ "Domains ending with a . character are permitted": "允许以 `.` 字符结尾的域名",
474
+ "Done": "完成",
475
+ "Double click": "双击",
476
+ "Double click to choose entire object": "双击选择整个对象",
477
+ "Download": "下载",
478
+ "Download logs": "下载日志",
479
+ "Drag and drop sorting field": "拖拽排序字段",
480
+ "Drag and drop the file here or click to upload, file size should not exceed 30M": "将文件拖放到此处或单击上传,文件大小不应超过 30M",
481
+ "Dragging": "拖拽中",
482
+ "Drawer": "抽屉",
483
+ "Dropdown": "下拉菜单",
484
+ "Dropdown select": "下拉选择",
485
+ "Duplicate": "复制",
486
+ "Duplicate and continue": "复制并继续",
487
+ "Duplicate mode": "复制方式",
488
+ "Duplicate template": "复制模板",
489
+ "Duplicating": "复制中",
490
+ "Duration (seconds, 0 = no auto close)": "显示时长(秒,0 表示不自动关闭)",
491
+ "Dynamic value": "动态值",
492
+ "Easy reading": "只读(阅读模式)",
493
+ "Easy-reading": "只读(阅读模式)",
494
+ "Edit": "编辑",
495
+ "Edit Title": "编辑标题",
496
+ "Edit block title": "Edit block title",
497
+ "Edit block title & description": "编辑区块标题和描述",
498
+ "Edit button": "编辑按钮",
499
+ "Edit category": "编辑分类",
500
+ "Edit chart": "编辑图表",
501
+ "Edit collection": "编辑数据表",
502
+ "Edit description": "编辑描述",
503
+ "Edit event flows": "编辑事件流",
504
+ "Edit field": "编辑字段",
505
+ "Edit field title": "编辑字段标题",
506
+ "Edit form": "编辑表单",
507
+ "Edit group title": "编辑分组标题",
508
+ "Edit link": "编辑链接",
509
+ "Edit markdown": "编辑 Markdown",
510
+ "Edit menu item": "编辑菜单项",
511
+ "Edit page size": "编辑页面大小",
512
+ "Edit page title": "编辑页面标题",
513
+ "Edit popup": "弹窗设置",
514
+ "Edit profile": "个人资料",
515
+ "Edit record": "编辑数据",
516
+ "Edit role": "编辑角色",
517
+ "Edit tab": "编辑标签页",
518
+ "Edit tooltip": "编辑提示信息",
519
+ "Edit variable": "编辑变量",
520
+ "Editable": "可编辑",
521
+ "Ellipsis": "省略",
522
+ "Ellipsis overflow content": "省略超出长度的内容",
523
+ "Email": "电子邮箱",
524
+ "Embedded": "嵌入式设备",
525
+ "Empty": "赋空值",
526
+ "Enable": "启用",
527
+ "Enable SMS authentication": "启用短信登录和注册",
528
+ "Enable Scan": "启用扫码录入",
529
+ "Enable actions": "启用操作",
530
+ "Enable child collections": "启用子表",
531
+ "Enable click-to-open": "启用点击打开",
532
+ "Enable drag and drop sorting": "启用拖拽排序",
533
+ "Enable form data template": "启用表单数据模板",
534
+ "Enable index column": "启用序号列",
535
+ "Enable link": "启用链接",
536
+ "Enable page header": "启用页眉",
537
+ "Enable page tabs": "启用页面选项卡",
538
+ "Enable quick edit": "启用快速编辑",
539
+ "Enable refresh": "启用刷新",
540
+ "Enable secondary confirmation": "启用二次确认",
541
+ "Enable tabs": "启用标签页",
542
+ "Enable tree table": "启用树表格",
543
+ "Enable virtual scrolling": "启用虚拟滚动",
544
+ "Enabled": "启用",
545
+ "Enabled languages": "启用的语言",
546
+ "End": "结束",
547
+ "End accessor": "结束访问器",
548
+ "End date field": "结束日期字段",
549
+ "Enter collection name": "输入数据表名称",
550
+ "Enter end accessor": "输入结束访问器",
551
+ "Enter field title": "输入字段标题",
552
+ "Enter number of rows to display": "请输入显示行数",
553
+ "Enter page title": "输入页面标题",
554
+ "Enter placeholder text": "输入占位符文本",
555
+ "Enter start accessor": "输入开始访问器",
556
+ "Enter title accessor": "输入标题访问器",
557
+ "Enter value": "输入值",
558
+ "Error message": "错误消息",
559
+ "Event": "事件",
560
+ "Event flow": "事件流",
561
+ "Event selected": "已选择事件",
562
+ "Event settings": "事件设置",
563
+ "Exact day": "指定日期",
564
+ "Execute": "执行",
565
+ "Execute JavaScript": "执行 JavaScript",
566
+ "Exists": "存在",
567
+ "Exit fullscreen": "退出全屏",
568
+ "Expand All": "展开全部",
569
+ "Expand all": "全部展开",
570
+ "Expand all rows by default": "默认展开所有行",
571
+ "Expand button": "展开",
572
+ "Expand/Collapse": "展开/折叠",
573
+ "Export": "导出",
574
+ "Exportable fields": "可导出字段",
575
+ "Expression": "表达式",
576
+ "Expression collection": "表达式表",
577
+ "FORMULAJS_DOC_URL": "https://v2.docs.nocobase.com/cn/calculation-engine/formula",
578
+ "Failed to load plugin": "插件加载失败",
579
+ "False": "假",
580
+ "Feedback": "反馈问题",
581
+ "Field": "字段",
582
+ "Field Linkage rules": "字段联动规则",
583
+ "Field assignment": "字段赋值",
584
+ "Field component": "字段组件",
585
+ "Field display name": "字段名称",
586
+ "Field interface": "UI 类型",
587
+ "Field linkage rules": "字段联动规则",
588
+ "Field mode": "字段组件",
589
+ "Field model": "字段模型",
590
+ "Field name": "字段标识",
591
+ "Field permission": "字段权限",
592
+ "Field settings": "字段设置",
593
+ "Field source": "来源字段",
594
+ "Field title": "字段标题",
595
+ "Field type": "字段类型",
596
+ "Field value changes": "变更记录",
597
+ "Field value do not meet the requirements": "字符不符合要求",
598
+ "Field value size is": "字符长度要求",
599
+ "Field values must be unique.": "字段值必须具备唯一性",
600
+ "Fields": "字段",
601
+ "Fields can only be used correctly if they are defined with an interface.": "只有字段设置了interface字段才能正常使用",
602
+ "Fields values": "字段值",
603
+ "File manager": "文件管理器",
604
+ "File size exceeds the limit": "文件大小超过限制",
605
+ "File size should not exceed {{size}}.": "文件大小不能超过 {{size}}",
606
+ "File type is not allowed": "文件类型不允许",
607
+ "File type is not supported for previewing, please download it to preview.": "不支持预览该文件类型,请下载后查看。",
608
+ "Fill": "填充",
609
+ "Filled": "实底风格",
610
+ "Filter": "筛选",
611
+ "Filter blocks": "筛选区块",
612
+ "Filter configuration": "筛选配置",
613
+ "Filter data based on the specific field, with the requirement that the field value must be unique.": "根据特定的字段筛选数据,字段值必须具备唯一性。",
614
+ "Filter out a single piece or a group of records as a template": "筛选出一条或一组数据,作为模板",
615
+ "Filter target key": "筛选目标键",
616
+ "Filterable fields": "可筛选字段",
617
+ "Find by the following fields": "通过以下字段查找",
618
+ "First or create": "不存在时则新增,存在时不处理",
619
+ "Fix block": "固定区块",
620
+ "Fixed": "固定列",
621
+ "Fixed to the left": "固定到左侧",
622
+ "Fixed to the right": "固定到右侧",
623
+ "Flexible popup": "Flexible popup",
624
+ "Flow Page": "新版页面(v2)",
625
+ "Font Size(px)": "字体大小(像素)",
626
+ "Font Style": "字体样式",
627
+ "Font Weight": "字体粗细",
628
+ "Foreign key": "外键",
629
+ "Foreign key 1": "外键1",
630
+ "Foreign key 2": "外键2",
631
+ "Form": "表单",
632
+ "Form (Add new)": "表单(添加)",
633
+ "Form (Edit)": "表单(编辑)",
634
+ "Form UID": "表单 UID",
635
+ "Form data templates": "表单数据模板",
636
+ "Form duplicate": "表单复制",
637
+ "Form field assignment": "表单字段赋值",
638
+ "Form item settings": "表单项设置",
639
+ "Form settings": "表单设置",
640
+ "Form values": "表单值",
641
+ "Form values change": "表单值变更",
642
+ "Form variable": "表单变量",
643
+ "Format": "格式",
644
+ "Formula": "Formula",
645
+ "Formula description": "Compute a value in each record based on other fields in the same record.",
646
+ "Formula error.": "Formula error.",
647
+ "Formula mode": "Formula mode",
648
+ "Formula.js supports most Microsoft Excel formula functions.": "Formula.js 支持大部分 Mircrosoft Excel 公式。",
649
+ "Full height": "全高",
650
+ "Full permissions": "全部权限",
651
+ "Fullscreen": "全屏",
652
+ "Function": "Function",
653
+ "Gantt": "甘特图",
654
+ "Geek blue": "极客蓝",
655
+ "General": "通用配置",
656
+ "General action permissions": "通用操作权限",
657
+ "General collection": "普通数据表",
658
+ "General configuration": "通用配置",
659
+ "General fields": "普通字段",
660
+ "General permissions": "通用配置",
661
+ "Generated automatically if left blank": "留空时,自动生成中间表",
662
+ "Generic properties": "通用属性",
663
+ "Global action permissions": "全局操作权限",
664
+ "Global permissions": "全局配置",
665
+ "Gold": "金盏花",
666
+ "Greater than": "大于",
667
+ "Green": "极光绿",
668
+ "Grid Card": "网格卡片",
669
+ "Group": "分组",
670
+ "Grouped sorting": "分组排序",
671
+ "Grouping field": "分组字段",
672
+ "HTML content": "HTML内容",
673
+ "Half of day": "半天",
674
+ "Handbook": "用户手册",
675
+ "Hidden": "隐藏",
676
+ "Hidden (reserved value)": "隐藏(保留值)",
677
+ "Hidden text": "隐藏文字",
678
+ "Hidden(reserved value)": "隐藏(保留值)",
679
+ "Hide": "隐藏",
680
+ "Hide column": "隐藏列",
681
+ "Hide in menu": "在菜单中隐藏",
682
+ "Highlight": "高亮",
683
+ "Home page": "主页",
684
+ "Homepage": "主页",
685
+ "Horizontal": "水平",
686
+ "Hour": "小时",
687
+ "Html settings": "Html 设置项",
688
+ "IANA registry": "IANA注册表",
689
+ "ID": "ID",
690
+ "Icon": "图标",
691
+ "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.": "当数据表没有主键时,你需要配置记录唯一标识符,用于在区块中定位行记录,不配置将无法创建该表的数据区块。",
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": "忽略无效的邮箱长度错误",
698
+ "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": "未完成上传的文件需要处理",
704
+ "Index": "索引",
705
+ "Individual": "单独配置",
706
+ "Inherited fields": "继承字段",
707
+ "Inherited template": "继承模板",
708
+ "Inherits": "继承",
709
+ "Inner": "里面",
710
+ "Input": "文本框",
711
+ "Input +, -, *, /, ( ) to calculate, input @ to open field variables.": "Input +, -, *, /, ( ) to calculate, input @ to open field variables.",
712
+ "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
+ "Interface": "类型",
726
+ "Invalid JSON format": "非法JSON格式",
727
+ "Inverse field display name": "反向关系字段名称",
728
+ "Inverse field name": "反向关系字段标识",
729
+ "Inverse relationship type": "反向关系类型",
730
+ "Italic": "斜体",
731
+ "Junction collection": "中间表",
732
+ "Kanban": "看板",
733
+ "Label": "字段名称",
734
+ "Label align": "字段标题对齐方式",
735
+ "Label field": "标题字段",
736
+ "Label width": "字段标题宽度",
737
+ "Language": "语言设置",
738
+ "Large": "较宽",
739
+ "Large screen device": "大屏幕设备",
740
+ "Last 30 days": "最近 30 天",
741
+ "Last 7 days": "最近 7 天",
742
+ "Last 90 days": "最近 90 天",
743
+ "Last Month": "上个月",
744
+ "Last Quarter": "上季度",
745
+ "Last Week": "上周",
746
+ "Last Year": "去年",
747
+ "Last month": "上月",
748
+ "Last quarter": "上季度",
749
+ "Last updated": "最后更新",
750
+ "Last updated at": "最后修改日期",
751
+ "Last updated by": "最后修改人",
752
+ "Last week": "上周",
753
+ "Last year": "去年",
754
+ "Layout": "布局",
755
+ "Leave it blank, unless you need a custom intermediate table": "默认留空,除非你需要一个自定义的中间表",
756
+ "Left": "左",
757
+ "Left fixed": "左固定",
758
+ "Length": "长度",
759
+ "Less than": "小于",
760
+ "License": "许可证",
761
+ "Lime": "青柠",
762
+ "Limit": "限制",
763
+ "Line break": "换行",
764
+ "Line chart": "折线图",
765
+ "Link": "链接",
766
+ "Link action settings": "链接操作设置",
767
+ "Link to": "关联",
768
+ "Link to description": "用于快速创建表关系,可兼容大多数普通场景。适合非开发人员使用。作为字段存在时,它是一个下拉选择用于选择目标数据表的数据。创建后,将同时在目标数据表中生成当前数据表的关联字段。",
769
+ "Linkage rule": "联动规则",
770
+ "Linkage rules": "联动规则",
771
+ "Linkage with form fields": "从表单字段联动",
772
+ "List": "列表",
773
+ "Load all data when filter is empty": "筛选条件为空时加载全部数据",
774
+ "Load collections": "加载数据表",
775
+ "Local": "本地",
776
+ "Log in with an existing account": "使用已有账号登录",
777
+ "Logging and monitoring": "日志与监控",
778
+ "Logo": "Logo",
779
+ "Long text": "多行文本",
780
+ "MATHJS_DOC_URL": "https://v2.docs.nocobase.com/cn/calculation-engine/math",
781
+ "Magenta": "法式洋红",
782
+ "Main": "主数据源",
783
+ "Main department": "主属部门",
784
+ "Manage all settings": "管理所有配置",
785
+ "Manually close": "手动关闭",
786
+ "Many to many": "多对多",
787
+ "Many to many description": "用于创建多对多关系,比如一个学生会有多个老师,一个老师也会有多个学生。作为字段存在时,它是一个下拉选择用于选择目标数据表的数据。",
788
+ "Many to one": "多对一",
789
+ "Many to one description": "用于创建多对一关系,比如一个城市只能属于一个国家,一个国家可以有多个城市。作为字段存在时,它是一个下拉选择用于选择目标数据表的数据。创建后,会在目标数据表里自动生成一个多对一字段。",
790
+ "Markdown": "Markdown",
791
+ "Marketplace": "插件市场",
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 包含大量内置函数和常量,并提供了集成的解决方案来处理不同的数据类型。",
793
+ "Max Domain Segments": "最大域名段数",
794
+ "Max length": "最大长度",
795
+ "Max length must greater than min length": "最大长度必须大于最小长度",
796
+ "Max value": "最大值",
797
+ "MaxDate": "最大日期",
798
+ "Maximum": "最大值",
799
+ "Maximum must greater than minimum": "最大值必须大于最小值",
800
+ "Media": "多媒体",
801
+ "Medium": "中",
802
+ "Meet": "满足",
803
+ "Meet <1><0>All</0><1>Any</1></1> conditions in the group": "满足组内 <1><0>全部</0><1>任意</1></1> 条件",
804
+ "Menu": "菜单",
805
+ "Menu item icon": "菜单项图标",
806
+ "Menu item name": "菜单名称",
807
+ "Menu item title": "菜单项名称",
808
+ "Menu permissions": "菜单访问权限",
809
+ "Message content": "消息内容",
810
+ "Message popup close method": "消息弹窗关闭方式",
811
+ "Message type": "消息类型",
812
+ "Middle": "中等",
813
+ "Millisecond": "毫秒",
814
+ "Min Domain Segments": "最小域名段数",
815
+ "Min length": "最小长度",
816
+ "Min length must less than max length": "最小长度必须小于最大长度",
817
+ "Min value": "最小值",
818
+ "MinDate": "最小日期",
819
+ "Minimum": "最小值",
820
+ "Minimum must less than maximum": "最小值必须小于最大值",
821
+ "Mobile": "手机",
822
+ "Mobile routes": "移动端路由",
823
+ "Modal": "对话框",
824
+ "Modal add": "弹窗添加",
825
+ "Mode": "模式",
826
+ "Modern page (v2)": "新版页面(v2)",
827
+ "Month": "月",
828
+ "Monthly": "每月",
829
+ "More details": "更多详情",
830
+ "More options": "更多选项",
831
+ "Move down": "下移",
832
+ "Move to": "移动到",
833
+ "Move up": "上移",
834
+ "Move {{title}} to": "将 {{title}} 移动到",
835
+ "Multiple select": "下拉菜单(多选)",
836
+ "Multiply by": "乘以",
837
+ "Must be 1-50 characters in length (excluding @.<>\"'/)": "长度为1到50个字符(不能包含@.<>\"'/)",
838
+ "Must select to the last level": "必须选到最后一级",
839
+ "Must use `-` and `:`": "必须使用 `-` 和 `:`",
840
+ "N/A": "不适用",
841
+ "Name": "名称",
842
+ "Navigate": "分页",
843
+ "Navigate to URL": "导航到 URL",
844
+ "New menu items are allowed to be accessed by default.": "新增菜单项默认允许访问",
845
+ "New password": "新密码",
846
+ "New routes are allowed to be accessed by default": "新路由默认允许访问",
847
+ "Next": "未来",
848
+ "Next 30 days": "未来 30 天",
849
+ "Next 7 days": "未来 7 天",
850
+ "Next 90 days": "未来 90 天",
851
+ "Next Month": "下个月",
852
+ "Next Quarter": "下季度",
853
+ "Next Week": "下周",
854
+ "Next Year": "明年",
855
+ "Next month": "下月",
856
+ "Next quarter": "下季度",
857
+ "Next week": "下周",
858
+ "Next year": "明年",
859
+ "Nickname": "昵称",
860
+ "No": "否",
861
+ "No CHANGELOG.md file": "没有 CHANGELOG.md 日志",
862
+ "No README.md file": "没有 README.md 文件",
863
+ "No allow `-` and `:`": "不允许使用 `-` 和 `:`",
864
+ "No assigned fields configured": "未配置字段",
865
+ "No blocks to connect": "没有可连接的区块",
866
+ "No configuration available.": "无可配置项。",
867
+ "No data": "暂无数据",
868
+ "No event flows": "暂无事件流",
869
+ "No form available for reset.": "没有可用的表单进行重置。",
870
+ "No form available for submission.": "没有可用的表单进行提交。",
871
+ "No linkage rules": "暂无联动规则",
872
+ "No pages yet, please configure first": "暂无页面,请先配置",
873
+ "A 53-bit Snowflake ID designed to be compatible with JavaScript’s safe integer range, providing both time-ordering and uniqueness.": "一种为兼容 JavaScript 安全整数范围而设计的 53 位 Snowflake ID,兼具时间有序性与唯一性。",
874
+ "No parent popup": "无上级弹窗",
875
+ "No records selected for bulk edit": "未选择要批量编辑的记录",
876
+ "No records selected for deletion": "未选择要删除的记录",
877
+ "No resource or record selected for deletion": "未选择要删除的资源或记录",
878
+ "No resource selected for bulk edit": "未选择要批量编辑的资源",
879
+ "No resource selected for deletion": "未选择要删除的资源",
880
+ "No resource selected for refresh": "未选择要刷新的资源",
881
+ "None": "无",
882
+ "Normal": "常规",
883
+ "Not Fixed": "不固定",
884
+ "Not enabled": "未启用",
885
+ "Not fixed": "不固定",
886
+ "Not required": "非必填",
887
+ "Notification": "通知",
888
+ "Notification description": "通知描述",
889
+ "Notification title": "通知标题",
890
+ "Notification type": "通知类型",
891
+ "Now": "现在",
892
+ "Npm package": "Npm 包",
893
+ "Npm package name": "Npm 包名",
894
+ "Null": "空值",
895
+ "Number": "数字",
896
+ "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": "仅支持标准 JSON 数据",
909
+ "Only the selected fields will be used as the initialization data for the form": "仅选择的字段才会作为表单的初始化数据",
910
+ "Only use `-`": "仅使用 `-`",
911
+ "Only use `.`": "仅使用 `.`",
912
+ "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": "打开方式配置",
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": "其他",
930
+ "Other action": "其他操作",
931
+ "Other block": "其他区块",
932
+ "Other blocks": "其他区块",
933
+ "Other chart": "其他图表",
934
+ "Other collections": "其他数据表",
935
+ "Other column": "其他列",
936
+ "Other form": "其他表单",
937
+ "Other records": "其他记录",
938
+ "Others": "其他",
939
+ "Outlined": "线框风格",
940
+ "Override": "重写",
941
+ "Override field": "重写字段",
942
+ "Oversized": "超大",
943
+ "Own records": "自己的数据",
944
+ "Owners": "负责人",
945
+ "PK & FK fields": "主外键字段",
946
+ "Package name": "包名",
947
+ "PackageName": "包名",
948
+ "Page": "页面",
949
+ "Page (v2)": "页面(v2)",
950
+ "Page Title": "页面标题",
951
+ "Page number": "页码",
952
+ "Page settings": "页面设置",
953
+ "Page size": "每页条数",
954
+ "Parent": "父记录",
955
+ "Parent ID": "父记录ID",
956
+ "Parent collection fields": "父表字段",
957
+ "Parent object": "上级对象",
958
+ "Parent popup": "上级弹窗",
959
+ "Parent popup record": "上级弹窗记录",
960
+ "Parent record": "上级记录",
961
+ "Password": "密码",
962
+ "Password Options": "密码选项",
963
+ "Password mismatch": "重复密码不匹配",
964
+ "Past": "过去",
965
+ "Path": "路径",
966
+ "Pattern": "模式",
967
+ "Percent": "百分比",
968
+ "Perform the Custom request": "执行自定义请求",
969
+ "Perform the Refresh": "执行刷新",
970
+ "Perform the Submit": "执行提交",
971
+ "Perform the Trigger workflow": "执行触发工作流",
972
+ "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": "选择器",
980
+ "Pie chart": "饼图",
981
+ "Pin to left": "固定到左侧",
982
+ "Pin to right": "固定到右侧",
983
+ "Placeholder": "占位符",
984
+ "Placement": "弹出位置",
985
+ "Please add a data block on the page first": "请先在页面中添加一个数据区块",
986
+ "Please add or select record": "请添加或选择数据",
987
+ "Please configure the URL": "请配置URL",
988
+ "Please configure the duplicate fields": "请配置要复制的字段",
989
+ "Please confirm the SQL statement first": "请先确认 SQL 语句",
990
+ "Please enter form uid": "请输入表单 UID",
991
+ "Please enter the target block UID": "请输入目标区块 UID",
992
+ "Please enter variable identifier": "请输入变量标识",
993
+ "Please enter variable title": "请输入变量标题",
994
+ "Please fill in the iframe URL": "请填写嵌入的地址",
995
+ "Please input message content": "请输入消息内容",
996
+ "Please input notification description": "请输入通知描述",
997
+ "Please input notification title": "请输入通知标题",
998
+ "Please input target action uid": "请输入目标操作 UID",
999
+ "Please input target block uid": "请输入目标区块 UID",
1000
+ "Please input target form uid": "请输入目标表单 UID",
1001
+ "Please select": "请选择",
1002
+ "Please select field": "请选择字段",
1003
+ "Please select fields": "请选择字段",
1004
+ "Please select fields to filter": "请选择需要筛选的字段",
1005
+ "Please select filterable fields": "请选择可筛选的字段",
1006
+ "Please select state": "请选择状态",
1007
+ "Please select the records to be updated": "请选择要更新的记录",
1008
+ "Please select time or variable": "请选择时间或变量",
1009
+ "Please use a valid SELECT or WITH AS statement": "请使用有效的 SELECT 或 WITH AS 语句",
1010
+ "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": "插件依赖版本不一致",
1015
+ "Plugin loading failed. Please check the server logs.": "插件加载失败,请检查服务器日志。",
1016
+ "Plugin manager": "插件管理器",
1017
+ "Plugin name": "插件",
1018
+ "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 form": "Popup form",
1028
+ "Popup message": "弹窗提示消息",
1029
+ "Popup record": "弹窗记录",
1030
+ "Popup settings": "弹窗设置",
1031
+ "Popup size": "弹窗尺寸",
1032
+ "Popup uid": "弹窗UID",
1033
+ "Position": "位置",
1034
+ "Precision": "精确度",
1035
+ "Precision(UI)": "精确度(UI)",
1036
+ "Prefix": "前缀",
1037
+ "Preset fields": "预置字段",
1038
+ "Prettify": "格式化",
1039
+ "Preview": "预览",
1040
+ "Preview Settings": "预览设置",
1041
+ "Preview field component": "预览组件",
1042
+ "Primary": "主键",
1043
+ "Primary key, unique identifier": "主键、唯一标识",
1044
+ "Primary key, unique identifier, self growth": "主键、唯一标识、自增长",
1045
+ "Primary key, distributed uniqueness, time-ordering": "主键、分布式唯一、时序性",
1046
+ "Print": "打印",
1047
+ "Problematic": "有问题",
1048
+ "Progress field": "进度字段",
1049
+ "Properties": "属性",
1050
+ "Providing certain collections as options for users, typically used in polymorphic or inheritance scenarios": "将数据表里的某些表作为可选项供给用户选择,一般用在多态或继承的场景里",
1051
+ "Province": "省",
1052
+ "Province/city/area name": "省市区名称",
1053
+ "Purple": "酱紫",
1054
+ "Quarter": "季度",
1055
+ "Quarter of day": "四分之一天",
1056
+ "QuarterYear": "季度",
1057
+ "Quick add": "快捷添加",
1058
+ "Quick create": "快速创建",
1059
+ "Quick duplicate": "快速复制",
1060
+ "Quick upload": "快速上传",
1061
+ "Radio group": "单选框",
1062
+ "Randomly generated and can be modified. Support letters, numbers and underscores, must start with an letter.": "随机生成,可修改。支持英文、数字和下划线,必须以英文字母开头。",
1063
+ "Read only": "只读(禁止编辑)",
1064
+ "ReadOnly": "只读",
1065
+ "ReadPretty": "美观只读",
1066
+ "Readme": "说明文档",
1067
+ "Readonly": "只读(禁止编辑)",
1068
+ "Recommended": "推荐",
1069
+ "Record ID": "数据 ID",
1070
+ "Record deleted successfully": "记录删除成功",
1071
+ "Record picker": "数据选择器",
1072
+ "Record unique key": "记录唯一标识符",
1073
+ "RecordPicker settings": "数据选择器设置",
1074
+ "Records can be sorted": "可以对行记录进行排序",
1075
+ "Records per page": "每页显示数量",
1076
+ "Red": "薄暮",
1077
+ "Redirect to": "跳转到",
1078
+ "Reference template": "引用模板",
1079
+ "References": "参考",
1080
+ "Refresh": "刷新",
1081
+ "Refresh data after execution": "执行后刷新数据",
1082
+ "Refresh data blocks": "刷新数据区块",
1083
+ "Refresh data on action": "执行后刷新数据",
1084
+ "Refresh data on close": "关闭后刷新数据",
1085
+ "Refresh target blocks": "刷新目标区块",
1086
+ "Regular Expression": "正则表达式",
1087
+ "Regular expression": "正则表达式",
1088
+ "Related collection": "关系表",
1089
+ "Relation": "关系类型",
1090
+ "Relationship blocks": "关系数据区块",
1091
+ "Relationship type": "关系类型",
1092
+ "Reload application": "重载应用",
1093
+ "Remains the same": "不更新",
1094
+ "Remove": "移除",
1095
+ "Render Failed": "渲染失败",
1096
+ "Render mode": "渲染模式",
1097
+ "Repeats": "重复",
1098
+ "Request API": "请求API",
1099
+ "Request URL": "请求地址",
1100
+ "Request body": "请求体(JSON格式)",
1101
+ "Request headers": "请求头参数(JSON格式)",
1102
+ "Request method": "请求方法",
1103
+ "Request query parameters": "请求查询参数(JSON格式)",
1104
+ "Request settings": "请求设置",
1105
+ "Request success": "请求成功",
1106
+ "Required": "必填",
1107
+ "Reset": "重置",
1108
+ "Reset link expiration": "重置链接有效期",
1109
+ "Response record": "响应结果记录",
1110
+ "Response type": "响应类型",
1111
+ "Restart": "重启",
1112
+ "Restart application": "重启应用",
1113
+ "Restrict only relative URIs": "仅相对路径",
1114
+ "Result": "结果",
1115
+ "Retry after {{count}} seconds": "{{count}} 秒后重试",
1116
+ "Return to the main application": "返回主应用",
1117
+ "Return to the previous popup or page": "返回上一层弹窗或页面",
1118
+ "Rich Text": "富文本",
1119
+ "Right": "右",
1120
+ "Right fixed": "右固定",
1121
+ "Role UID": "角色标识",
1122
+ "Role display name": "角色名称",
1123
+ "Role name": "角色名称",
1124
+ "Roles": "角色",
1125
+ "Roles & Permissions": "角色和权限",
1126
+ "Route name": "路由名称",
1127
+ "Route permissions": "路由权限",
1128
+ "Routes": "路由",
1129
+ "Row click": "行点击",
1130
+ "Rows": "行",
1131
+ "SQL collection": "SQL数据表",
1132
+ "Save": "保存",
1133
+ "Save action": "保存操作",
1134
+ "Save as block template": "保存为区块模板",
1135
+ "Save as inherited template": "保存为继承模板",
1136
+ "Save as reference template": "保存为引用模板",
1137
+ "Save as template": "保存为模板",
1138
+ "Save conditions": "保存筛选条件",
1139
+ "Save failed": " 保存失败",
1140
+ "Save mode": "保存方式",
1141
+ "Save record": "保存数据",
1142
+ "Saved successfully": "保存成功",
1143
+ "Scale": "小数位数",
1144
+ "Scale Down": "缩放",
1145
+ "Scan to input": "扫码录入",
1146
+ "Scheme": "协议",
1147
+ "Scientifix notation": "科学计数法",
1148
+ "Scope name": "数据范围名称",
1149
+ "Screen size": "屏幕尺寸",
1150
+ "Search": "搜索",
1151
+ "Search and select collection": "搜索并选择数据表",
1152
+ "Search collections...": "搜索数据表...",
1153
+ "Search parameters": "URL 查询参数",
1154
+ "Search plugin": "搜索插件",
1155
+ "Search plugin...": "搜索插件...",
1156
+ "Second": "秒",
1157
+ "Secondary confirmation": "二次确认",
1158
+ "Security": "安全性",
1159
+ "Select": "选择",
1160
+ "Select a source field to use metadata of the field": "选择源字段以使用字段的元数据",
1161
+ "Select a variable": "选择变量",
1162
+ "Select all": "全选",
1163
+ "Select an existing piece of data as the initialization data for the form": "选择一条已有的数据作为表单的初始化数据",
1164
+ "Select collection": "选择数据表",
1165
+ "Select data blocks to refresh": "选择要刷新的数据区块",
1166
+ "Select data source": "选择数据源",
1167
+ "Select date": "选择日期",
1168
+ "Select field": "选择字段",
1169
+ "Select file": "选择文件",
1170
+ "Select form fields": "选择表单字段",
1171
+ "Select grouping field": "选择分组字段",
1172
+ "Select icon": "选择图标",
1173
+ "Select level": "选择层级",
1174
+ "Select mode": "选择模式",
1175
+ "Select record": "选择数据",
1176
+ "Select target action": "选择目标操作",
1177
+ "Select target block": "选择目标区块",
1178
+ "Select target form block": "选择目标表单区块",
1179
+ "Select template": "选择模板",
1180
+ "Select trigger event": "选择触发事件",
1181
+ "Select variable": "选择变量",
1182
+ "Select view": "切换视图",
1183
+ "Selected": "选中",
1184
+ "Selected Collections": "已选数据表",
1185
+ "Selected records deleted successfully": "选中的记录删除成功",
1186
+ "Selector": "选择器",
1187
+ "Selector mode": "选择器模式",
1188
+ "Selector setting": "选择器设置",
1189
+ "Send code": "发送验证码",
1190
+ "Separate multiple values with comma or Enter": "多个值用逗号或回车分隔",
1191
+ "Separator": "分隔符",
1192
+ "Set Template Engine": "设置模板引擎",
1193
+ "Set action state": "设置操作状态",
1194
+ "Set block height": "设置区块高度",
1195
+ "Set block layout": "设置区块布局",
1196
+ "Set block state": "设置区块状态",
1197
+ "Set button state": "设置按钮状态",
1198
+ "Set condition": "设置条件",
1199
+ "Set data loading mode": "设置数据加载方式",
1200
+ "Set data scope": "设置数据范围",
1201
+ "Set default sorting rules": "设置排序规则",
1202
+ "Set default value": "设置默认值",
1203
+ "Set details field state": "设置详情字段状态",
1204
+ "Set field state": "设置字段状态",
1205
+ "Set field value": "设置字段值",
1206
+ "Set form field state": "设置表单字段状态",
1207
+ "Set form field value": "设置表单字段值",
1208
+ "Set state": "设置状态",
1209
+ "Set the count of columns displayed in a row": "设置一行展示的列数",
1210
+ "Set the data scope": "设置数据范围",
1211
+ "Set validation rules": "设置验证规则",
1212
+ "Set value": "设置值",
1213
+ "Setting": "设置",
1214
+ "Settings": "设置",
1215
+ "Set Primary Key": "设置主键",
1216
+ "Show date range": "显示日期范围",
1217
+ "Show file name": "显示文件名",
1218
+ "Show in menu": "在菜单中显示",
1219
+ "Show label": "显示字段名称",
1220
+ "Show lunar": "展示农历",
1221
+ "Show message": "显示消息",
1222
+ "Show notification": "显示通知",
1223
+ "Show row numbers": "显示行号",
1224
+ "Show time": "显示时间",
1225
+ "Sign in": "登录",
1226
+ "Sign in via account": "账号密码登录",
1227
+ "Sign in via phone": "手机号登录",
1228
+ "Sign in with another account": "登录其他账号",
1229
+ "Sign out": "注销",
1230
+ "Sign up": "注册",
1231
+ "Sign up successfully, and automatically jump to the sign in page": "注册成功,即将跳转到登录页面",
1232
+ "Signed up successfully. It will jump to the login page.": "注册成功,将跳转登录页。",
1233
+ "Simple string replacement, can be used to interpolate variables in a string.": "简单的字符串替换,可以用于在字符串中插入变量。",
1234
+ "Single line text": "单行文本",
1235
+ "Single select": "下拉菜单(单选)",
1236
+ "Single select and radio fields can be used as the grouping field": "数据表的单选字段可以作为分组字段",
1237
+ "Size": "大小",
1238
+ "Sizes": "尺寸",
1239
+ "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": "在分页时跳过获取表记录总数,以加快加载速度,建议对有大量数据的数据表开启此选项",
1240
+ "Skip required validation": "跳过必填校验",
1241
+ "Small": "较窄",
1242
+ "Snowflake ID (53-bit)": "Snowflake ID (53-bit)",
1243
+ "SmartTv": "智能电视",
1244
+ "Some files are not uploaded correctly, please check.": "部分文件未上传成功,请检查。",
1245
+ "Sorry, the page you visited does not exist.": "抱歉,你访问的页面不存在。",
1246
+ "Sort": "排序",
1247
+ "Sortable": "可排序的",
1248
+ "Source collection": "源数据表",
1249
+ "Source collections": "来源数据表",
1250
+ "Source key": "源数据表标识字段",
1251
+ "Specific properties": "特有属性",
1252
+ "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.": "用于为 <iframe> 指定其权限策略。该策略根据请求的来源规定 <iframe> 可以使用哪些特性(例如,访问麦克风、摄像头、电池、web 共享等)。",
1253
+ "Specify height": "指定高度",
1254
+ "Start": "开始",
1255
+ "Start accessor": "开始访问器",
1256
+ "Start date field": "开始日期字段",
1257
+ "State": "状态",
1258
+ "Stay on current page": "停留在当前页面",
1259
+ "Stay on the current popup or page": "停留在当前弹窗或页面",
1260
+ "Steps": "步骤",
1261
+ "Store the creation time of each record": "记录创建时间",
1262
+ "Store the creation user of each record": "记录创建人",
1263
+ "Store the last update time of each record": "记录最后更新时间",
1264
+ "Store the last update user of each record": "记录最后更新人",
1265
+ "Street": "乡镇/街道",
1266
+ "String": "字符串",
1267
+ "String template": "字符串模板",
1268
+ "Style": "样式",
1269
+ "Sub-detail": "子详情",
1270
+ "Sub-details": "子详情",
1271
+ "Sub-form": "子表单",
1272
+ "Sub-form(Popover)": "子表单(弹窗)",
1273
+ "Sub-table": "子表格",
1274
+ "Subform mode": "子表单模式",
1275
+ "Submit": "提交",
1276
+ "Submit action settings": "提交按钮设置",
1277
+ "Submit record": "提交记录",
1278
+ "Submitted successfully": "提交成功",
1279
+ "Subtable": "子表格",
1280
+ "Subtable mode": "子表格模式",
1281
+ "Successfully": "成功",
1282
+ "Suffix": "后缀",
1283
+ "Super admin": "超级管理员",
1284
+ "Superior department": "上级部门",
1285
+ "Support filtering multiple blocks simultaneously, support deep selection of relationship fields (e.g.: User/Department/Name)": "支持同时筛选多个区块,支持关系字段深层选择(如:用户/部门/名称)",
1286
+ "Support for a single or bulk upload.": "支持单个或批量上传",
1287
+ "Switch role": "切换角色",
1288
+ "Switching the picker, the value and default value will be cleared": "切换选择器时,字段的值和默认值将会被清空",
1289
+ "Sync from database": "从数据库同步",
1290
+ "Sync from form fields": "同步表单字段",
1291
+ "Sync successfully": "同步成功",
1292
+ "Syntax references": "语法参考",
1293
+ "System": "系统管理",
1294
+ "System & security": "系统和安全",
1295
+ "System fields": "系统字段",
1296
+ "System info": "系统信息",
1297
+ "System management": "系统管理",
1298
+ "System settings": "系统设置",
1299
+ "System title": "系统名称",
1300
+ "System variables": "系统变量",
1301
+ "Tab": "标签",
1302
+ "Tab name": "标签名称",
1303
+ "Table": "表格",
1304
+ "Table OID(Inheritance)": "数据表 OID(继承)",
1305
+ "Table column settings": "表格列设置",
1306
+ "Table density": "表格密度",
1307
+ "Table selected records": "表格中选中的记录",
1308
+ "Table settings": "表格设置",
1309
+ "Table size": "表格大小",
1310
+ "Tablet": "平板",
1311
+ "Tablet device": "平板设备",
1312
+ "Tag": "标签",
1313
+ "Tag color field": "标签颜色字段",
1314
+ "Target": "目标",
1315
+ "Target block UID": "目标区块 UID",
1316
+ "Target block uid": "目标区块 uid",
1317
+ "Target collection": "目标数据表",
1318
+ "Target form block": "目标表单区块",
1319
+ "Target key": "目标数据表标识字段",
1320
+ "Target position": "目标位置",
1321
+ "Template": "模板",
1322
+ "Template Data": "模板数据",
1323
+ "Template engine": "模板引擎",
1324
+ "Template fields": "模板字段",
1325
+ "Template name": "模板名称",
1326
+ "Templates": "模板",
1327
+ "Text": "文本",
1328
+ "Text Align": "文本对齐",
1329
+ "Text input": "文本输入",
1330
+ "Text only": "纯文本",
1331
+ "The application is reloading, please do not close the page.": "应用正在重新加载,请勿关闭页面。",
1332
+ "The button is hidden and only visible when the UI Editor is active": "当前按钮已被隐藏,仅配置状态下显示",
1333
+ "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?": "当前插件的依赖版本与应用的版本不一致,可能无法正常工作。您确定要继续激活插件吗?",
1334
+ "The current user only has the UI configuration permission, but don't have \"{{actionName}}\" permission for collection \"{{name}}\"": "当前用户只有 UI 配置权限,但没有数据表 \"{{name}}\"的 \"{{actionName}}\"权限。",
1335
+ "The current user only has the UI configuration permission, but don't have \"{{actionName}}\" permission for field \"{{name}}\"": "当前用户只有 UI 配置权限,但没有字段 \"{{name}}\"的 \"{{actionName}}\"权限。",
1336
+ "The current user only has the UI configuration permission, but don't have view permission for collection \"{{name}}\"": "当前用户只有 UI 配置权限,但没有数据表 \"{{name}}\" 查看权限。",
1337
+ "The deletion was successful.": "删除成功",
1338
+ "The field has been deleted": "字段已删除",
1339
+ "The field value cannot be greater than ": "数值不能大于",
1340
+ "The field value cannot be less than ": "数值不能小于",
1341
+ "The field value is not a email format": "该字段不是合法的邮箱格式",
1342
+ "The field value is not an integer number": "数字不是整数",
1343
+ "The field value is required": "该字段是必填字段",
1344
+ "The following field types are not compatible and do not support output and display": "以下字段类型未适配,不支持输出和显示",
1345
+ "The selected fields will automatically populate the form": "用于自动填充到表单",
1346
+ "The title field is used to identify the template record": "用于识别模板数据",
1347
+ "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 的 query string 得来的,只有当页面存在 query string 的时候,该变量才能正常使用。",
1348
+ "The will interrupt service, it may take a few seconds to restart. Are you sure to continue?": "重启将会中断当前服务,这个过程可能需要一点时间,确定要继续吗?",
1349
+ "The {{type}} \"{{name}}\" may have been deleted. Please remove this {{blockType}}.": "{{type}} \"{{name}}\" 可能已被删除。请删除当前{{blockType}}.",
1350
+ "Theme": "主题",
1351
+ "Then": "然后",
1352
+ "Third party services": "第三方服务",
1353
+ "This Month": "本月",
1354
+ "This Quarter": "本季度",
1355
+ "This Week": "本周",
1356
+ "This Year": "今年",
1357
+ "This and following events": "此日程及后续日程",
1358
+ "This event": "此日程",
1359
+ "This field has been hidden and you cannot view it (this content is only visible when the UI Editor is activated).": "该字段已被隐藏,你无法查看(该内容仅在激活 UI Editor 时显示)。",
1360
+ "This field is required": "此字段为必填项",
1361
+ "This is a demo text, **supports Markdown syntax**.": "这是一段演示文本,**支持 Markdown 语法**。",
1362
+ "This is likely a NocoBase internals bug. Please open an issue at <1>here</1>": "这可能是 NocoBase 内部的问题,你可以在<1>这里</1>将该错误反馈给我们,我们会尽快修复",
1363
+ "This month": "本月",
1364
+ "This quarter": "本季度",
1365
+ "This variable has been deprecated and can be replaced with \"Current form\"": "该变量已被弃用,可以使用“当前表单”替代",
1366
+ "This week": "本周",
1367
+ "This year": "今年",
1368
+ "Through collection": "中间数据表",
1369
+ "Time": "时间",
1370
+ "Time format": "时间显示格式",
1371
+ "Time scale": "时间缩放等级",
1372
+ "Timeout config": "超时配置",
1373
+ "Timestamp": "时间戳",
1374
+ "Title": "标题",
1375
+ "Title & description": "标题和描述",
1376
+ "Title accessor": "标题访问器",
1377
+ "Title field": "标题字段",
1378
+ "Title field component": "标题字段组件",
1379
+ "Title position": "标题位置",
1380
+ "Today": "今天",
1381
+ "Toggles the subfield mode": "切换子字段模式",
1382
+ "Tomorrow": "明天",
1383
+ "Tooltip": "提示",
1384
+ "Top left": "左上角",
1385
+ "Top right": "右上角",
1386
+ "Total {{count}} items": "总共 {{count}} 条",
1387
+ "Tree collection": "树结构表",
1388
+ "Tree table": "树表格",
1389
+ "Trigger condition": "触发条件",
1390
+ "Trigger event": "触发事件",
1391
+ "Trigger workflow": "触发工作流",
1392
+ "Triggered when the row is clicked": "点击表格行时触发",
1393
+ "True": "真",
1394
+ "Try again": "重试一下",
1395
+ "Turn pages": "翻页",
1396
+ "Two tone": "双色风格",
1397
+ "Type": "类型",
1398
+ "UI Editor": "界面配置",
1399
+ "UI editor": "界面配置",
1400
+ "URL": "URL",
1401
+ "URL search params": "URL 查询参数",
1402
+ "UnSelect all": "取消全选",
1403
+ "Unauthenticated. Please sign in to continue.": "未认证。请登录以继续。",
1404
+ "Unconnected": "未连接",
1405
+ "Unicode characters are permitted": "允许使用 Unicode 字符",
1406
+ "Unique": "不允许重复",
1407
+ "Unit conversion": "单位换算",
1408
+ "Unix Timestamp": "Unix 时间戳",
1409
+ "Unknown field type": "未知字段类型",
1410
+ "Unnamed": "未命名",
1411
+ "Unpinned": "取消固定",
1412
+ "Unsafe integer": "不安全整数",
1413
+ "Unsaved changes": "未保存修改",
1414
+ "Update": "更新",
1415
+ "Update all data?": "更新全部数据吗?",
1416
+ "Update or create": "不存在时新增,存在时更新",
1417
+ "Update plugin": "更新插件",
1418
+ "Update record": "更新数据",
1419
+ "Update record action": "更新记录",
1420
+ "Update selected data?": "更新选中的数据吗?",
1421
+ "Updated successfully": "更新成功",
1422
+ "UpdatedAt": "UpdatedAt",
1423
+ "UpdatedBy": "UpdatedBy",
1424
+ "Upgrade": "可供更新",
1425
+ "Upload": "上传",
1426
+ "Upload file settings": "文件上传设置",
1427
+ "Upload new version": "上传新版",
1428
+ "Upload plugin": "上传插件",
1429
+ "Uploading": "上传中",
1430
+ "Use simple pagination mode": "使用简单分页模式",
1431
+ "Use the same time zone (GMT) for all users": "所有用户使用同一时区 (格林尼治标准时间)",
1432
+ "Used for drag and drop sorting scenarios, supporting grouping sorting": "用于拖拽排序场景,支持分组排序",
1433
+ "User": "用户",
1434
+ "User not found. Please sign in again to continue.": "无法找到用户信息,请重新登录以继续。",
1435
+ "User password changed, please signin again.": "用户密码已更改,请重新登录。",
1436
+ "Username": "用户名",
1437
+ "Users": "用户",
1438
+ "Users & permissions": "用户和权限",
1439
+ "Valid range: 10-40": "有效范围:10-40",
1440
+ "Valid range: 100-900": "有效范围:100-900",
1441
+ "Validation": "验证",
1442
+ "Validation rule": "验证规则",
1443
+ "Value": "值",
1444
+ "Variable identifier": "变量标识",
1445
+ "Variable title": "变量标题",
1446
+ "Verification code": "验证码",
1447
+ "Version": "版本",
1448
+ "Version range": "版本范围",
1449
+ "Vertical": "垂直",
1450
+ "View": "查看",
1451
+ "View all plugins": "查看所有插件",
1452
+ "View record": "查看数据",
1453
+ "Village": "村/居委会",
1454
+ "Visible": "显示",
1455
+ "Volcano": "火山",
1456
+ "Wearable": "可穿戴设备",
1457
+ "Week": "周",
1458
+ "Weekly": "每周",
1459
+ "When a field is selected for grouping, it will be grouped first before sorting.": "当选了某个字段作为分组时,将先分组再排序",
1460
+ "When condition is met": "条件满足时",
1461
+ "When condition is not met": "条件不满足时",
1462
+ "When submitting the following fields, the saved values are": "提交以下字段时,保存的值为",
1463
+ "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": "当 HTTP 方法为 Post、Put 或 Patch,且此自定义请求在表单内时,请求体将自动填充表单数据",
1464
+ "When the Label exceeds the width": "字段标题超出宽度时",
1465
+ "With condition": "使用条件",
1466
+ "Without condition": "不使用条件",
1467
+ "Work week": "工作日",
1468
+ "Workflow": "工作流",
1469
+ "Wrap": "换行",
1470
+ "Wysiwyg": "富文本",
1471
+ "Year": "年",
1472
+ "Year-Month-Day": "年-月-日",
1473
+ "Year/Month/Day": "年/月/日",
1474
+ "Yearly": "每年",
1475
+ "Yes": "是",
1476
+ "Yesterday": "昨天",
1477
+ "Your session has expired. Please sign in again.": "您的会话已过期,请重新登录。",
1478
+ "conditions in the group": "组内条件",
1479
+ "contains": "包含",
1480
+ "data source": "数据源",
1481
+ "does not contain": "不包含",
1482
+ "edit title": "修改标题",
1483
+ "ends with": "结尾是",
1484
+ "exists": "存在",
1485
+ "is": "等于",
1486
+ "is after": "晚于",
1487
+ "is any of": "包含任何一个",
1488
+ "is before": "早于",
1489
+ "is between": "介于",
1490
+ "is empty": "为空",
1491
+ "is none of": "不包含任何一个",
1492
+ "is not": "不等于",
1493
+ "is not empty": "不为空",
1494
+ "is on or after": "不早于",
1495
+ "is on or before": "不晚于",
1496
+ "item": "项",
1497
+ "items": "项",
1498
+ "loading": "加载中",
1499
+ "name is required": "名称不能为空",
1500
+ "not ends with": "结尾不是",
1501
+ "not exists": "不存在",
1502
+ "not starts with": "开头不是",
1503
+ "pixels": "像素",
1504
+ "re-download file": "重新下载文件",
1505
+ "starts with": "开头是",
1506
+ "tlds": "顶级域名",
1507
+ "visible": "可见",
1508
+ "{{#label}} email address doesn’t meet the required format": "{{#label}} 邮箱地址不符合要求的格式",
1509
+ "{{#label}} is not allowed to be empty": "{{#label}} 不能为空字符串",
1510
+ "{{#label}} is required": "{{#label}} 是必填项",
1511
+ "{{#label}} length must be at least {{#limit}} characters long": "{{#label}} 长度不能少于 {{#limit}} 个字符",
1512
+ "{{#label}} length must be less than or equal to {{#limit}} characters long": "{{#label}} 长度不能超过 {{#limit}} 个字符",
1513
+ "{{#label}} length must be {{#limit}} characters long": "{{#label}} 长度必须是 {{#limit}} 个字符",
1514
+ "{{#label}} must be a credit card": "{{#label}} 必须是有效的信用卡号",
1515
+ "{{#label}} must be a float or double": "{{#label}} 必须是浮点数",
1516
+ "{{#label}} must be a multiple of {{#multiple}}": "{{#label}} 必须是 {{#multiple}} 的倍数",
1517
+ "{{#label}} must be a negative number": "{{#label}} 必须是负数",
1518
+ "{{#label}} must be a number": "{{#label}} 必须是数字",
1519
+ "{{#label}} must be a positive number": "{{#label}} 必须是正数",
1520
+ "{{#label}} must be a safe number": "{{#label}} 必须是安全整数",
1521
+ "{{#label}} must be a string": "{{#label}} 必须是字符串",
1522
+ "{{#label}} must be a valid ISO 8601 date": "{{#label}} 必须是有效的ISO日期",
1523
+ "{{#label}} must be a valid UUID": "{{#label}} 必须是有效的UUID",
1524
+ "{{#label}} must be a valid date": "{{#label}} 必须是有效日期",
1525
+ "{{#label}} must be a valid hostname": "{{#label}} 必须是有效的主机名",
1526
+ "{{#label}} must be a valid port": "{{#label}} 必须是有效的端口号",
1527
+ "{{#label}} must be a valid uri": "{{#label}} 必须是有效的URI",
1528
+ "{{#label}} must be a valid uri with a scheme matching the {{#scheme}} pattern": "{{#label}} 必须是符合 {{#scheme}} 模式的有效URI",
1529
+ "{{#label}} must be an integer": "{{#label}} 必须是整数",
1530
+ "{{#label}} must be greater than or equal to {{#limit}}": "{{#label}} 不能小于 {{#limit}}",
1531
+ "{{#label}} must be greater than {{#limit}}": "{{#label}} 必须大于 {{#limit}}",
1532
+ "{{#label}} must be in {{#format}} format": "{{#label}} 必须是 {{#format}} 格式",
1533
+ "{{#label}} must be less than or equal to {{#limit}}": "{{#label}} 不能大于 {{#limit}}",
1534
+ "{{#label}} must be less than {{#limit}}": "{{#label}} 必须小于 {{#limit}}",
1535
+ "{{#label}} must not have leading or trailing whitespace": "{{#label}} 不能包含前后空白字符",
1536
+ "{{#label}} must not have more than {{#limit}} decimal places": "{{#label}} 精度不能超过 {{#limit}} 位小数",
1537
+ "{{#label}} must only contain alpha-numeric and underscore characters": "{{#label}} 只能包含字母、数字和下划线",
1538
+ "{{#label}} must only contain alpha-numeric characters": "{{#label}} 只能包含字母和数字",
1539
+ "{{#label}} must only contain hexadecimal characters": "{{#label}} 必须是有效的十六进制字符串",
1540
+ "{{#label}} must only contain lowercase characters": "{{#label}} 必须是小写",
1541
+ "{{#label}} must only contain uppercase characters": "{{#label}} 必须是大写",
1542
+ "{{#label}} with value \"{{#value}}\" fails to match the required pattern": "{{#label}} 值 \"{{#value}}\" 格式不正确",
1543
+ "{{#label}} with value \"{{#value}}\" fails to match the {{#name}} pattern": "{{#label}} 值 \"{{#value}}\" 不符合 {{#name}} 格式",
1544
+ "{{#label}} with value \"{{#value}}\" matches the inverted pattern": "{{#label}} 值 \"{{#value}}\" 包含不允许的字符",
1545
+ "{{#label}} with value \"{{#value}}\" matches the inverted {{#name}} pattern": "{{#label}} 值 \"{{#value}}\" 不能符合 {{#name}} 格式",
1546
+ "{{count}} filter items": "{{count}} 个筛选项",
1547
+ "{{count}} more items": "还有 {{count}} 项",
1548
+ "≠": "≠",
1549
+ "≤": "≤",
1550
+ "≥": "≥",
1551
+ "Sub-table settings": "子表格设置",
1552
+ "Sub-form settings": "子表单设置",
1553
+ "Ellipsis on text overflow": "文本超出省略",
1554
+ "Number format": "数字显示格式",
1555
+ "RadioGroup": "单选框",
1556
+ "CheckboxGroup": "复选框",
1557
+ "Enable add new action": "启用添加操作",
1558
+ "Enable select action": "启用选择操作",
1559
+ "Enable remove action": "启用移除操作",
1560
+ "Multiple": "多选",
1561
+ "Custom column width": "自定义列宽度",
1562
+ "The block is hidden and only visible when the UI Editor is active": "当前区块已被隐藏,仅配置状态下显示",
1563
+ "The field is hidden and only visible when the UI Editor is active": "当前字段已被隐藏,仅配置状态下显示",
1564
+ "Destroy": "删除",
1565
+ "The current storage \"{{storageName}}\" does not support file uploads.": "当前存储 \"{{storageName}}\" 不支持上传文件。",
1566
+ "File type is not supported for previewing,": "文件类型不支持预览,",
1567
+ "download it to preview": "请下载后预览",
1568
+ "Your browser does not support the video tag.": "您的浏览器不支持视频标签。",
1569
+ "Your browser does not support the audio tag.": "您的浏览器不支持音频标签。",
1570
+ "Edit select record popup": "编辑选择数据弹窗"
1571
+ }