@nocobase/client 2.0.0-alpha.6 → 2.0.0-alpha.60
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.dumirc.ts +4 -4
- package/es/application/Application.d.ts +2 -1
- package/es/block-configs/BlockConfigsProvider.d.ts +1 -1
- package/es/block-provider/hooks/index.d.ts +2 -1
- package/es/block-provider/index.d.ts +4 -3
- package/es/collection-manager/Configuration/SetPrimaryKeyAction.d.ts +10 -0
- package/es/collection-manager/Configuration/components/CollectionCategory.d.ts +1 -1
- package/es/collection-manager/Configuration/components/CollectionFieldInterfaceTag.d.ts +1 -1
- package/es/collection-manager/Configuration/components/CollectionTemplateTag.d.ts +1 -1
- package/es/collection-manager/Configuration/components/Summary.d.ts +1 -1
- package/es/collection-manager/Configuration/interfaces.d.ts +1 -0
- package/es/collection-manager/action-hooks.d.ts +1 -1
- package/es/collection-manager/interfaces/color.d.ts +0 -1
- package/es/collection-manager/interfaces/index.d.ts +1 -0
- package/es/collection-manager/interfaces/input.d.ts +1 -0
- package/es/collection-manager/interfaces/integer.d.ts +1 -0
- package/es/collection-manager/interfaces/nanoid.d.ts +1 -0
- package/es/collection-manager/interfaces/number.d.ts +44 -0
- package/es/collection-manager/interfaces/snowflake-id.d.ts +117 -0
- package/es/collection-manager/interfaces/uuid.d.ts +1 -0
- package/es/collection-manager/templates/properties/index.d.ts +1 -0
- package/es/data-source/collection-field-interface/CollectionFieldInterface.d.ts +1 -0
- package/es/data-source/data-source/DataSourceManager.d.ts +1 -0
- package/es/flow/FlowModelRepository.d.ts +4 -0
- package/es/flow/FlowPage.d.ts +2 -1
- package/es/flow/actions/columnFixed.d.ts +9 -0
- package/es/flow/actions/customVariable.d.ts +9 -0
- package/es/flow/actions/displayFieldComponent.d.ts +1 -1
- package/es/flow/actions/index.d.ts +8 -1
- package/es/flow/actions/linkageRules.d.ts +4 -0
- package/es/flow/actions/navigateToURL.d.ts +9 -0
- package/es/flow/actions/openView.d.ts +2 -13
- package/es/flow/actions/refreshTargetBlocks.d.ts +9 -0
- package/es/flow/actions/setTargetDataScope.d.ts +10 -0
- package/es/flow/actions/showMessage.d.ts +9 -0
- package/es/flow/actions/showNotification.d.ts +9 -0
- package/es/flow/actions/titleField.d.ts +0 -1
- package/es/flow/common/Liquid.d.ts +33 -0
- package/es/flow/common/Markdown/Display.d.ts +9 -0
- package/es/flow/common/Markdown/Edit.d.ts +23 -0
- package/es/flow/common/Markdown/Markdown.d.ts +24 -0
- package/es/flow/{components/code-editor/completions/index.d.ts → common/Markdown/style.d.ts} +1 -2
- package/es/flow/common/Markdown/useCDN.d.ts +9 -0
- package/es/flow/components/BlockItemCard.d.ts +2 -0
- package/es/flow/components/FieldAssignValueInput.d.ts +1 -0
- package/es/flow/components/code-editor/extension/CodeEditorExtension.d.ts +14 -0
- package/es/flow/components/code-editor/extension/index.d.ts +9 -0
- package/es/flow/components/code-editor/hooks/useRunJSDocCompletions.d.ts +1 -1
- package/es/flow/components/code-editor/index.d.ts +6 -4
- package/es/flow/components/code-editor/jsxCompletion.d.ts +10 -0
- package/es/flow/components/code-editor/linter.d.ts +2 -0
- package/es/flow/components/code-editor/panels/RightExtra.d.ts +3 -1
- package/es/flow/components/code-editor/runjsCompletions.d.ts +3 -1
- package/es/flow/components/code-editor/types.d.ts +16 -0
- package/es/flow/components/filter/FilterContainer.d.ts +4 -4
- package/es/flow/components/filter/FilterGroup.d.ts +2 -1
- package/es/flow/components/filter/LinkageFilterItem.d.ts +1 -0
- package/es/flow/components/filter/VariableFilterItem.d.ts +4 -1
- package/es/flow/components/index.d.ts +1 -1
- package/es/flow/components/placeholders/BlockPlaceholder.d.ts +1 -0
- package/es/flow/flows/editMarkdownFlow.d.ts +10 -0
- package/es/flow/getViewDiffAndUpdateHidden.d.ts +1 -0
- package/es/flow/index.d.ts +5 -0
- package/es/flow/internal/utils/associationValueCoercion.d.ts +15 -0
- package/es/flow/internal/utils/enumOptionsUtils.d.ts +7 -7
- package/es/flow/internal/utils/operatorSchemaHelper.d.ts +15 -0
- package/es/flow/internal/utils/rebuildFieldSubModel.d.ts +33 -0
- package/es/flow/models/actions/AddChildActionModel.d.ts +15 -0
- package/es/flow/models/actions/AddNewActionModel.d.ts +1 -0
- package/es/flow/models/actions/EditActionModel.d.ts +1 -0
- package/es/flow/models/actions/{UpdateActionModel.d.ts → ExpandCollapseActionModel.d.ts} +8 -10
- package/es/flow/models/actions/FilterActionModel.d.ts +5 -59
- package/es/flow/models/actions/JSActionModel.d.ts +13 -0
- package/es/flow/models/actions/LinkActionModel.d.ts +18 -0
- package/es/flow/models/actions/UpdateRecordActionModel.d.ts +27 -0
- package/es/flow/models/actions/index.d.ts +5 -1
- package/es/flow/models/base/ActionModel.d.ts +15 -5
- package/es/flow/models/base/BlockModel.d.ts +4 -1
- package/es/flow/models/base/CollectionBlockModel.d.ts +12 -25
- package/es/flow/models/base/FieldModel.d.ts +6 -0
- package/es/flow/models/base/GridModel.d.ts +27 -4
- package/es/flow/models/base/PageModel/ChildPageModel.d.ts +1 -0
- package/es/flow/models/base/PageModel/PageModel.d.ts +3 -0
- package/es/flow/models/base/PageModel/PageTabModel.d.ts +2 -0
- package/es/flow/models/base/PageModel/RootPageModel.d.ts +2 -0
- package/es/flow/models/blocks/assign-form/AssignFormModel.d.ts +2 -0
- package/es/flow/models/blocks/details/DetailsBlockModel.d.ts +1 -0
- package/es/flow/models/blocks/details/DetailsCustomItemModel.d.ts +2 -2
- package/es/flow/models/blocks/details/DetailsGridModel.d.ts +1 -0
- package/es/flow/models/blocks/details/DetailsItemModel.d.ts +2 -2
- package/es/flow/models/blocks/details/DetailsJSFieldItemModel.d.ts +2 -2
- package/es/flow/models/blocks/filter-form/FieldModelSelect.d.ts +10 -0
- package/es/flow/models/blocks/filter-form/FilterFormBlockModel.d.ts +4 -0
- package/es/flow/models/blocks/filter-form/FilterFormCustomItemModel.d.ts +13 -0
- package/es/flow/models/blocks/filter-form/FilterFormGridModel.d.ts +1 -0
- package/es/flow/models/blocks/filter-form/FilterFormItemModel.d.ts +5 -4
- package/es/flow/models/blocks/filter-form/FilterFormSubmitActionModel.d.ts +1 -1
- package/es/flow/models/blocks/filter-form/SourceCascader.d.ts +10 -0
- package/es/flow/models/blocks/filter-form/fields/FieldComponentProps.d.ts +13 -0
- package/es/flow/models/blocks/filter-form/fields/FilterFormCustomFieldModel.d.ts +36 -0
- package/es/flow/models/blocks/filter-form/fields/date-time/DateTimeFilterFieldModel.d.ts +8 -0
- package/es/flow/models/blocks/filter-form/fields/date-time/index.d.ts +1 -0
- package/es/flow/models/blocks/filter-form/fields/index.d.ts +1 -0
- package/es/flow/models/blocks/filter-form/index.d.ts +1 -0
- package/es/flow/models/blocks/filter-manager/flow-actions/customizeFilterRender.d.ts +10 -0
- package/es/flow/models/blocks/filter-manager/flow-actions/index.d.ts +2 -0
- package/es/flow/models/blocks/filter-manager/flow-actions/operatorComponentProps.d.ts +10 -0
- package/es/flow/models/blocks/form/CreateFormModel.d.ts +2 -1
- package/es/flow/models/blocks/form/EditFormModel.d.ts +1 -0
- package/es/flow/models/blocks/form/FormBlockModel.d.ts +13 -2
- package/es/flow/models/blocks/form/FormGridModel.d.ts +1 -0
- package/es/flow/models/blocks/form/FormItemModel.d.ts +1 -1
- package/es/flow/models/blocks/form/FormJSFieldItemModel.d.ts +1 -1
- package/es/flow/models/blocks/form/submitHandler.d.ts +9 -0
- package/es/flow/models/blocks/js-block/JSBlock.d.ts +1 -0
- package/es/flow/models/blocks/table/JSColumnModel.d.ts +0 -1
- package/es/flow/models/blocks/table/TableActionsColumnModel.d.ts +0 -1
- package/es/flow/models/blocks/table/TableBlockModel.d.ts +15 -2
- package/es/flow/models/blocks/table/TableColumnModel.d.ts +9 -2
- package/es/flow/models/blocks/table/TableJSFieldItemModel.d.ts +2 -2
- package/es/flow/models/blocks/table/utils.d.ts +9 -0
- package/es/flow/models/blocks/utils/transformChildrenToJS.d.ts +42 -0
- package/es/flow/models/fields/AssociationFieldModel/AssociationFieldModel.d.ts +1 -0
- package/es/flow/models/fields/AssociationFieldModel/CascadeSelectFieldModel.d.ts +29 -0
- package/es/flow/models/fields/AssociationFieldModel/RecordPickerFieldModel.d.ts +2 -0
- package/es/flow/models/fields/AssociationFieldModel/RecordSelectFieldModel.d.ts +8 -2
- package/es/flow/models/fields/AssociationFieldModel/SubFormFieldModel.d.ts +7 -0
- package/es/flow/models/fields/AssociationFieldModel/SubTableFieldModel/SubTableColumnModel.d.ts +3 -3
- package/es/flow/models/fields/AssociationFieldModel/SubTableFieldModel/index.d.ts +2 -0
- package/es/flow/models/fields/AssociationFieldModel/index.d.ts +1 -0
- package/es/flow/models/fields/AssociationFieldModel/recordSelectShared.d.ts +49 -0
- package/es/flow/models/fields/ClickableFieldModel.d.ts +3 -2
- package/es/flow/models/fields/DisplayAssociationField/DisplaySubItemFieldModel.d.ts +1 -0
- package/es/flow/models/fields/DisplayAssociationField/DisplaySubListFieldModel.d.ts +1 -0
- package/es/flow/models/fields/DisplayAssociationField/DisplaySubTableFieldModel.d.ts +3 -1
- package/es/flow/models/fields/DisplayEnumFieldModel.d.ts +1 -0
- package/es/flow/models/fields/DisplayJSONFieldModel.d.ts +3 -3
- package/es/flow/models/fields/DisplayNumberFieldModel.d.ts +4 -2
- package/es/flow/models/fields/DisplayTextFieldModel.d.ts +1 -1
- package/es/flow/models/fields/JSEditableFieldModel.d.ts +8 -0
- package/es/flow/models/fields/JSFieldModel.d.ts +1 -1
- package/es/flow/models/fields/JSItemModel.d.ts +1 -2
- package/es/flow/models/fields/JsonFieldModel.d.ts +1 -0
- package/es/flow/models/fields/MarkdownItemModel.d.ts +1 -0
- package/es/flow/models/fields/TimeFieldModel.d.ts +0 -1
- package/es/flow/models/fields/mobile-components/MobileDatePicker.d.ts +10 -0
- package/es/flow/models/fields/mobile-components/MobileLazySelect.d.ts +11 -0
- package/es/flow/{components/JsonInput.d.ts → models/fields/mobile-components/MobileSelect.d.ts} +1 -1
- package/es/flow/models/fields/mobile-components/MobileTimePicker.d.ts +10 -0
- package/es/flow/resolveViewParamsToViewList.d.ts +4 -2
- package/es/flow/{components/decorator → utils}/index.d.ts +1 -1
- package/es/global-theme/type.d.ts +1 -0
- package/es/hooks/useFullscreenOverlay.d.ts +20 -0
- package/es/index.d.ts +1 -0
- package/es/index.mjs +25991 -18546
- package/es/modules/menu/FlowPageMenuItem.d.ts +1 -3
- package/es/modules/menu/index.d.ts +9 -0
- package/es/nocobase-buildin-plugin/plugins/LocalePlugin.d.ts +0 -1
- package/es/schema-component/antd/association-select/ReadPretty.d.ts +1 -1
- package/es/schema-component/antd/filter/FilterItem.d.ts +1 -1
- package/es/schema-component/antd/input/EllipsisWithTooltip.d.ts +1 -0
- package/es/schema-component/antd/linkageFilter/LinkageFilterItem.d.ts +1 -1
- package/es/schema-component/antd/remote-select/RemoteSelect.d.ts +1 -3
- package/es/schema-component/antd/table/Table.Column.ActionBar.d.ts +1 -1
- package/es/schema-component/antd/table/Table.Void.d.ts +1 -0
- package/es/schema-component/antd/table-v2/Table.Column.ActionBar.d.ts +1 -1
- package/es/schema-component/antd/upload/shared.d.ts +1 -1
- package/es/schema-settings/LinkageRules/LinkageRuleAction.d.ts +2 -2
- package/es/schema-settings/LinkageRules/components/BlockLinkageRuleAction.d.ts +1 -1
- package/es/schema-settings/LinkageRules/components/FieldStyleLinkageRuleAction.d.ts +1 -1
- package/lib/index-C3fHjsMw-CiyrLQdu.js +2237 -0
- package/lib/index.js +449 -293
- package/lib/locale/cron/zh-CN.json +33 -0
- package/lib/locale/cron/zh-TW.json +33 -0
- package/lib/locale/de-DE.json +1545 -0
- package/lib/locale/en-US.json +1553 -0
- package/lib/locale/es-ES.json +1573 -0
- package/lib/locale/fr-FR.json +1549 -0
- package/lib/locale/hu-HU.json +1545 -0
- package/lib/locale/id-ID.json +1546 -0
- package/lib/locale/{it-IT.js → it-IT.json} +1496 -1054
- package/lib/locale/ja-JP.json +1564 -0
- package/lib/locale/ko-KR.json +1558 -0
- package/lib/locale/{nl-NL.js → nl-NL.json} +1493 -1018
- package/lib/locale/pt-BR.json +1617 -0
- package/lib/locale/ru-RU.json +1551 -0
- package/lib/locale/tr-TR.json +1553 -0
- package/lib/locale/uk-UA.json +1570 -0
- package/lib/locale/vi-VN.json +1545 -0
- package/lib/locale/zh-CN.json +1571 -0
- package/lib/locale/zh-TW.json +1549 -0
- package/package.json +10 -7
- package/es/flow/components/code-editor/snippets/loader.d.ts +0 -19
- package/es/flow/components/decorator/injectable.d.ts +0 -19
- package/lib/index-C3fHjsMw-BwUYFnGr.js +0 -2081
- package/lib/locale/cron/zh-CN.js +0 -33
- package/lib/locale/cron/zh-TW.js +0 -33
- package/lib/locale/de-DE.js +0 -904
- package/lib/locale/en-US.js +0 -996
- package/lib/locale/es-ES.js +0 -824
- package/lib/locale/fr-FR.js +0 -844
- package/lib/locale/ja-JP.js +0 -1062
- package/lib/locale/ko-KR.js +0 -935
- package/lib/locale/pt-BR.js +0 -804
- package/lib/locale/ru-RU.js +0 -633
- package/lib/locale/tr-TR.js +0 -631
- package/lib/locale/uk-UA.js +0 -847
- package/lib/locale/zh-CN.js +0 -1396
- package/lib/locale/zh-TW.js +0 -938
- /package/es/flow/{internal/utils → utils}/blockUtils.d.ts +0 -0
|
@@ -0,0 +1,1553 @@
|
|
|
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)": "(Fields only)",
|
|
4
|
+
"(currently not effective in sub-forms/sub-tables)": "(currently not effective in sub-forms/sub-tables)",
|
|
5
|
+
"12 hour": "12 hour",
|
|
6
|
+
"24 hour": "24 hour",
|
|
7
|
+
"<": "<",
|
|
8
|
+
"=": "=",
|
|
9
|
+
">": ">",
|
|
10
|
+
"ACL": "ACL",
|
|
11
|
+
"ASC": "ASC",
|
|
12
|
+
"Access": "Access",
|
|
13
|
+
"Access control": "Access control",
|
|
14
|
+
"Accessible": "Accessible",
|
|
15
|
+
"Accuracy": "Accuracy",
|
|
16
|
+
"Action": "Action",
|
|
17
|
+
"Action after successful submission": "Action after successful submission",
|
|
18
|
+
"Action column": "Action column",
|
|
19
|
+
"Action display name": "Action display name",
|
|
20
|
+
"Action logs": "Action logs",
|
|
21
|
+
"Action name": "Action name",
|
|
22
|
+
"Action on existing records": "Action on existing records",
|
|
23
|
+
"Action on new records": "Action on new records",
|
|
24
|
+
"Action permission": "Action permission",
|
|
25
|
+
"Action permissions": "Action permissions",
|
|
26
|
+
"Action scope": "Action scope",
|
|
27
|
+
"Action type": "Action type",
|
|
28
|
+
"Actions": "Actions",
|
|
29
|
+
"Actions column": "Actions column",
|
|
30
|
+
"Add": "Add",
|
|
31
|
+
"Add & Update": "Add & Update",
|
|
32
|
+
"Add Markdown": "Add Markdown",
|
|
33
|
+
"Add action": "Add action",
|
|
34
|
+
"Add attach": "Add attach",
|
|
35
|
+
"Add block": "Add block",
|
|
36
|
+
"Add card": "Add card",
|
|
37
|
+
"Add category": "Add category",
|
|
38
|
+
"Add child": "Add child",
|
|
39
|
+
"Add child route": "Add child",
|
|
40
|
+
"Add condition": "Add condition",
|
|
41
|
+
"Add condition group": "Add condition group",
|
|
42
|
+
"Add event flow": "Add event flow",
|
|
43
|
+
"Add exportable field": "Add exportable field",
|
|
44
|
+
"Add field": "Add field",
|
|
45
|
+
"Add filter": "Add filter",
|
|
46
|
+
"Add filter group": "Add filter group",
|
|
47
|
+
"Add group": "Add group",
|
|
48
|
+
"Add link": "Add link",
|
|
49
|
+
"Add linkage rule": "Add linkage rule",
|
|
50
|
+
"Add menu item": "Add menu item",
|
|
51
|
+
"Add new": "Add new",
|
|
52
|
+
"Add new mode": "Add new mode",
|
|
53
|
+
"Add option": "Add option",
|
|
54
|
+
"Add page": "Add page",
|
|
55
|
+
"Add parameter": "Add parameter",
|
|
56
|
+
"Add plugin": "Add plugin",
|
|
57
|
+
"Add property": "Add property",
|
|
58
|
+
"Add record": "Add record",
|
|
59
|
+
"Add request header": "Add request header",
|
|
60
|
+
"Add role": "Add role",
|
|
61
|
+
"Add rule": "Add rule",
|
|
62
|
+
"Add sort field": "Add sort field",
|
|
63
|
+
"Add step": "Add step",
|
|
64
|
+
"Add tab": "Add tab",
|
|
65
|
+
"Add target block": "Add target block",
|
|
66
|
+
"Add template": "Add template",
|
|
67
|
+
"Add text": "Add text",
|
|
68
|
+
"Add type": "Add type",
|
|
69
|
+
"Add validation rule": "Add validation rule",
|
|
70
|
+
"Add variable": "Add variable",
|
|
71
|
+
"Add {{type}} after \"{{title}}\"": "Add {{type}} after \"{{title}}\"",
|
|
72
|
+
"Add {{type}} before \"{{title}}\"": "Add {{type}} before \"{{title}}\"",
|
|
73
|
+
"Add {{type}} in \"{{title}}\"": "Add {{type}} in \"{{title}}\"",
|
|
74
|
+
"Advanced type": "Advanced",
|
|
75
|
+
"After": "After",
|
|
76
|
+
"After change": "After change",
|
|
77
|
+
"After clicking the custom button, the following field values will be assigned according to the following form.": "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.": "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.": "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.": "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": "After successful bulk update",
|
|
82
|
+
"After successful request": "After successful request",
|
|
83
|
+
"After successful save": "After successful save",
|
|
84
|
+
"After successful submission": "After successful submission",
|
|
85
|
+
"After successful submission, the selected data blocks will be automatically refreshed.": "After successful submission, the selected data blocks will be automatically refreshed.",
|
|
86
|
+
"After successful update": "After successful update",
|
|
87
|
+
"Agenda": "Agenda",
|
|
88
|
+
"All": "All",
|
|
89
|
+
"All collections": "All collections",
|
|
90
|
+
"All collections use general action permissions by default; permission configured individually will override the default one.": "All collections use general action permissions by default; permission configured individually will override the default one.",
|
|
91
|
+
"All events": "All events",
|
|
92
|
+
"All plugin settings": "All plugin settings",
|
|
93
|
+
"All records": "All records",
|
|
94
|
+
"Allow": "Allow",
|
|
95
|
+
"Allow access": "Allow access",
|
|
96
|
+
"Allow action": "Allow action",
|
|
97
|
+
"Allow add new": "Allow add new",
|
|
98
|
+
"Allow add new data": "Allow add new data",
|
|
99
|
+
"Allow add new, update and delete actions": "Allow add new, update and delete actions",
|
|
100
|
+
"Allow adding records to the current collection": "Allow adding records to the current collection",
|
|
101
|
+
"Allow disassociation": "Allow disassociation",
|
|
102
|
+
"Allow dissociate": "Allow dissociate",
|
|
103
|
+
"Allow linking to multiple records": "Allow linking to multiple records",
|
|
104
|
+
"Allow list": "Allow list",
|
|
105
|
+
"Allow multiple": "Allow multiple",
|
|
106
|
+
"Allow multiple selection": "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": "Allow selection of existing records",
|
|
110
|
+
"Allow sign up": "Allow sign up",
|
|
111
|
+
"Allow to configure plugins": "Allow to configure plugins",
|
|
112
|
+
"Allow to desgin pages": "Allow to desgin pages",
|
|
113
|
+
"Allow to manage plugins": "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.": "Allows configuration of the whole system, including UI, collections, permissions, etc.",
|
|
116
|
+
"Allows to clear cache, reboot application": "Allows to clear cache, reboot application",
|
|
117
|
+
"Allows to configure interface": "Allows to configure interface",
|
|
118
|
+
"Allows to configure plugins": "Allows to configure plugins",
|
|
119
|
+
"Allows to install, activate, disable plugins": "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 error",
|
|
124
|
+
"Application reloading": "Application reloading",
|
|
125
|
+
"Are you sure to delete this plugin?": "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?": "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?": "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?": "Are you sure you want to disassociate it?",
|
|
132
|
+
"Are you sure you want to hide these routes in menu?": "Are you sure you want to hide these routes in menu?",
|
|
133
|
+
"Are you sure you want to hide this menu?": "Are you sure you want to hide this menu?",
|
|
134
|
+
"Are you sure you want to hide this tab?": "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?": "Are you sure you want to perform the {{title}} action?",
|
|
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?": "Are you sure you want to show these routes in menu?",
|
|
144
|
+
"Area": "Area",
|
|
145
|
+
"Area chart": "Area chart",
|
|
146
|
+
"Assign data scope for the template": "Assign data scope for the template",
|
|
147
|
+
"Assign field values": "Assign field values",
|
|
148
|
+
"Assign value": "Assign value",
|
|
149
|
+
"Assignment mode": "Assignment mode",
|
|
150
|
+
"Associate": "Associate",
|
|
151
|
+
"Associated records": "Associated records",
|
|
152
|
+
"Association field settings": "Association field settings",
|
|
153
|
+
"Association fields": "Association fields",
|
|
154
|
+
"Association fields filter": "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": "Audit logs",
|
|
161
|
+
"Authentication": "Authentication",
|
|
162
|
+
"Author": "Author",
|
|
163
|
+
"Auto": "Auto",
|
|
164
|
+
"Auto focus": "Auto focus",
|
|
165
|
+
"Auto increment": "Auto increment",
|
|
166
|
+
"AutoGenId": "Auto-generated ID field",
|
|
167
|
+
"Automatic close": "Automatic close",
|
|
168
|
+
"Automatically drop objects that depend on the collection (such as views), and in turn all objects that depend on those objects": "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": "Bar chart",
|
|
177
|
+
"Base": "Base",
|
|
178
|
+
"Basic": "Basic",
|
|
179
|
+
"Basic configuration": "Basic configuration",
|
|
180
|
+
"Before": "Before",
|
|
181
|
+
"Before change": "Before change",
|
|
182
|
+
"Before render": "Before render",
|
|
183
|
+
"Blank block": "Blank block",
|
|
184
|
+
"Block": "Block",
|
|
185
|
+
"Block Linkage rules": "Block Linkage rules",
|
|
186
|
+
"Block linkage rules": "Block linkage rules",
|
|
187
|
+
"Block list": "Block list",
|
|
188
|
+
"Block template": "Block template",
|
|
189
|
+
"Block templates": "Block templates",
|
|
190
|
+
"Block title": "Block title",
|
|
191
|
+
"Block type": "Block type",
|
|
192
|
+
"Blocks": "Blocks",
|
|
193
|
+
"Blue": "Blue",
|
|
194
|
+
"Bookmark": "Bookmark",
|
|
195
|
+
"Boolean": "Boolean",
|
|
196
|
+
"Bottom left": "Bottom left",
|
|
197
|
+
"Bottom right": "Bottom right",
|
|
198
|
+
"Built-in": "Built-in",
|
|
199
|
+
"Bulk edit": "Bulk edit",
|
|
200
|
+
"Bulk enable": "Bulk enable",
|
|
201
|
+
"Bulk update": "Bulk update",
|
|
202
|
+
"Button background color": "Button background color",
|
|
203
|
+
"Button icon": "Button icon",
|
|
204
|
+
"Button settings": "Button settings",
|
|
205
|
+
"Button title": "Button title",
|
|
206
|
+
"Button type": "Button type",
|
|
207
|
+
"Calculation engine": "Calculation engine",
|
|
208
|
+
"Calendar": "Calendar",
|
|
209
|
+
"Calendar Month": "Calendar Month",
|
|
210
|
+
"Calendar Year": "Calendar Year",
|
|
211
|
+
"Calendar collection": "Calendar collection",
|
|
212
|
+
"Calendar week": "Calendar week",
|
|
213
|
+
"Cancel": "Cancel",
|
|
214
|
+
"Cannot find the model instance with UID": "Cannot find the model instance with UID",
|
|
215
|
+
"Card settings": "Card settings",
|
|
216
|
+
"Cascade Select": "Cascade Select",
|
|
217
|
+
"Cascade select": "Cascade select",
|
|
218
|
+
"Cascade select settings": "Cascade select settings",
|
|
219
|
+
"Categories": "Categories",
|
|
220
|
+
"Category name": "Category name",
|
|
221
|
+
"Center": "Center",
|
|
222
|
+
"Change password": "Change password",
|
|
223
|
+
"Changed to": "Changed to",
|
|
224
|
+
"Changelog": "Changelog",
|
|
225
|
+
"Chart blocks": "Chart blocks",
|
|
226
|
+
"Chart config": "Chart config",
|
|
227
|
+
"Chart title": "Chart title",
|
|
228
|
+
"Chart type": "Chart type",
|
|
229
|
+
"Check strength": "Check strength",
|
|
230
|
+
"Checkbox": "Checkbox",
|
|
231
|
+
"Checkbox group": "Checkbox group",
|
|
232
|
+
"Children": "Children",
|
|
233
|
+
"China region": "China region",
|
|
234
|
+
"Choices": "Choices",
|
|
235
|
+
"Choices fields": "Choices fields",
|
|
236
|
+
"City": "City",
|
|
237
|
+
"Classic page (v1)": "Classic page (v1)",
|
|
238
|
+
"Clear": "Clear",
|
|
239
|
+
"Clear cache": "Clear cache",
|
|
240
|
+
"Clear default value": "Clear default value",
|
|
241
|
+
"Click": "Click",
|
|
242
|
+
"Click event": "Click event",
|
|
243
|
+
"Click or drag file to this area to upload": "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": "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": "Close",
|
|
247
|
+
"Collapse": "Collapse",
|
|
248
|
+
"Collapse all": "Collapse all",
|
|
249
|
+
"Collapse button": "Collapse",
|
|
250
|
+
"Collapse settings": "Collapse settings",
|
|
251
|
+
"Collapsed rows": "Collapsed rows",
|
|
252
|
+
"Collection": "Collection",
|
|
253
|
+
"Collection category": "Collection category",
|
|
254
|
+
"Collection display name": "Collection display name",
|
|
255
|
+
"Collection fields": "Collection fields",
|
|
256
|
+
"Collection manager": "Collection manager",
|
|
257
|
+
"Collection name": "Collection name",
|
|
258
|
+
"Collection selector": "Collection selector",
|
|
259
|
+
"Collection template": "Collection template",
|
|
260
|
+
"Collections": "Collections",
|
|
261
|
+
"Collections & Fields": "Collections & Fields",
|
|
262
|
+
"Colon": "Colon",
|
|
263
|
+
"Color": "Color",
|
|
264
|
+
"Column": "Column",
|
|
265
|
+
"Column Settings": "Column Settings",
|
|
266
|
+
"Column chart": "Column chart",
|
|
267
|
+
"Column title": "Column title",
|
|
268
|
+
"Column width": "Column width",
|
|
269
|
+
"Coming soon...": "Coming soon...",
|
|
270
|
+
"Compact theme": "Compact theme",
|
|
271
|
+
"Comparision": "Comparision",
|
|
272
|
+
"Comparison": "Comparison",
|
|
273
|
+
"Component properties": "Component properties",
|
|
274
|
+
"Compressed file url": "Compressed file url",
|
|
275
|
+
"Computer": "Computer",
|
|
276
|
+
"Condition": "Condition",
|
|
277
|
+
"Conditional assignment": "Conditional assignment",
|
|
278
|
+
"Configuration saved": "Configuration saved",
|
|
279
|
+
"Configuration:": "Configuration:",
|
|
280
|
+
"Configure": "Configure",
|
|
281
|
+
"Configure actions": "Configure actions",
|
|
282
|
+
"Configure calendar": "Configure calendar",
|
|
283
|
+
"Configure columns": "Configure columns",
|
|
284
|
+
"Configure field": "Configure field",
|
|
285
|
+
"Configure fields": "Configure fields",
|
|
286
|
+
"Configure fields of {{title}}": "Configure fields of {{title}}",
|
|
287
|
+
"Configure page": "Configure page",
|
|
288
|
+
"Configure permission": "Configure permission",
|
|
289
|
+
"Configure permissions": "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": "Confirm",
|
|
294
|
+
"Confirm Load Collections": "Confirm Load Collections",
|
|
295
|
+
"Confirm password": "Confirm password",
|
|
296
|
+
"Confirmation": "Confirmation",
|
|
297
|
+
"Connect data blocks": "Connect data blocks",
|
|
298
|
+
"Connect fields": "Connect fields",
|
|
299
|
+
"Connect to database view": "Connect to database view",
|
|
300
|
+
"Console": "Console",
|
|
301
|
+
"Constant": "Constant",
|
|
302
|
+
"Constant value": "Constant value",
|
|
303
|
+
"Contain": "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": "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": "Copy into the form and continue to fill in",
|
|
320
|
+
"Cover": "Cover",
|
|
321
|
+
"Create": "Create",
|
|
322
|
+
"Create an account": "Create an account",
|
|
323
|
+
"Create calendar block": "Create calendar block",
|
|
324
|
+
"Create collection": "Create collection",
|
|
325
|
+
"Create form": "Create form",
|
|
326
|
+
"Create gantt block": "Create gantt block",
|
|
327
|
+
"Create inverse field in the target collection": "Create inverse field in the target collection",
|
|
328
|
+
"Create kanban block": "Create kanban block",
|
|
329
|
+
"Create template": "Create template",
|
|
330
|
+
"Created at": "Created at",
|
|
331
|
+
"Created by": "Created by",
|
|
332
|
+
"CreatedAt": "CreatedAt",
|
|
333
|
+
"CreatedBy": "CreatedBy",
|
|
334
|
+
"Current action": "Current action",
|
|
335
|
+
"Current block": "Current block",
|
|
336
|
+
"Current collection": "Current collection",
|
|
337
|
+
"Current device type": "Current device type",
|
|
338
|
+
"Current form": "Current form",
|
|
339
|
+
"Current object": "Current object",
|
|
340
|
+
"Current popup": "Current popup",
|
|
341
|
+
"Current popup parent record": "Current popup parent record",
|
|
342
|
+
"Current popup record": "Current popup record",
|
|
343
|
+
"Current record": "Current record",
|
|
344
|
+
"Current record blocks": "Current record blocks",
|
|
345
|
+
"Current role": "Current role",
|
|
346
|
+
"Current time": "Current time",
|
|
347
|
+
"Current user": "Current user",
|
|
348
|
+
"Custom": "Custom",
|
|
349
|
+
"Custom Title": "Custom Title",
|
|
350
|
+
"Custom column name": "Custom column name",
|
|
351
|
+
"Custom column title": "Custom column title",
|
|
352
|
+
"Custom field": "Custom field",
|
|
353
|
+
"Custom field display name": "Custom field display name",
|
|
354
|
+
"Custom name": "Custom name",
|
|
355
|
+
"Custom request": "Custom request",
|
|
356
|
+
"Custom title": "Custom title",
|
|
357
|
+
"Custom variable": "Custom variable",
|
|
358
|
+
"Customize": "Customize",
|
|
359
|
+
"Cyan": "Cyan",
|
|
360
|
+
"DESC": "DESC",
|
|
361
|
+
"Daily": "Daily",
|
|
362
|
+
"Danger action": "Danger action",
|
|
363
|
+
"Danger red": "Danger red",
|
|
364
|
+
"Dashed": "Dashed",
|
|
365
|
+
"Data Model": "Data Model",
|
|
366
|
+
"Data blocks": "Data blocks",
|
|
367
|
+
"Data changes": "Data changes",
|
|
368
|
+
"Data fields": "Data fields",
|
|
369
|
+
"Data loading mode": "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": "Data scope",
|
|
374
|
+
"Data source": "Data source",
|
|
375
|
+
"Data source key": "Data source key",
|
|
376
|
+
"Data source permissions": "Data source permissions",
|
|
377
|
+
"Data sources": "Data sources",
|
|
378
|
+
"Data template": "Data template",
|
|
379
|
+
"Data will be updated": "Data will be updated",
|
|
380
|
+
"DataSource": "DataSource",
|
|
381
|
+
"Date": "Date",
|
|
382
|
+
"Date & Time": "Date & Time",
|
|
383
|
+
"Date display format": "Date display format",
|
|
384
|
+
"Date format": "Date format",
|
|
385
|
+
"Date range limit": "Date range limit",
|
|
386
|
+
"Date scope": "Date scope",
|
|
387
|
+
"Date variables": "Date variables",
|
|
388
|
+
"Date variables(Deprecated)": "Date variables(Deprecated)",
|
|
389
|
+
"DateOnly": "DateOnly",
|
|
390
|
+
"Datetime": "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": "Day",
|
|
395
|
+
"Day before yesterday": "Day before yesterday",
|
|
396
|
+
"Day/Month/Year": "Day/Month/Year",
|
|
397
|
+
"Default": "Default",
|
|
398
|
+
"Default collapse": "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": "Default is the ID field",
|
|
403
|
+
"Default operator": "Default operator",
|
|
404
|
+
"Default role": "Default role",
|
|
405
|
+
"Default sorting": "Default sorting",
|
|
406
|
+
"Default theme": "Default theme",
|
|
407
|
+
"Default title for each record": "Default title for each record",
|
|
408
|
+
"Default value": "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": "Delete",
|
|
412
|
+
"Delete Event": "Delete Event",
|
|
413
|
+
"Delete action": "Delete action",
|
|
414
|
+
"Delete block": "Delete block",
|
|
415
|
+
"Delete category": "Delete category",
|
|
416
|
+
"Delete collection": "Delete collection",
|
|
417
|
+
"Delete events": "Delete events",
|
|
418
|
+
"Delete field": "Delete field",
|
|
419
|
+
"Delete menu item": "Delete menu item",
|
|
420
|
+
"Delete record": "Delete record",
|
|
421
|
+
"Delete role": "Delete role",
|
|
422
|
+
"Delete route": "Delete route",
|
|
423
|
+
"Delete routes": "Delete routes",
|
|
424
|
+
"Delete settings": "Delete settings",
|
|
425
|
+
"Delete step": "Delete step",
|
|
426
|
+
"Delete table column": "Delete table column",
|
|
427
|
+
"Delete this event?": "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": "Dependencies check",
|
|
434
|
+
"Dependencies check failed, can't enable.": "Dependencies check failed, can't enable.",
|
|
435
|
+
"Dependencies compatibility check": "Dependencies compatibility check",
|
|
436
|
+
"Deprecated": "Deprecated",
|
|
437
|
+
"Description": "Description",
|
|
438
|
+
"Desktop device": "Desktop device",
|
|
439
|
+
"Desktop routes": "Desktop routes",
|
|
440
|
+
"Detail item settings": "Detail item settings",
|
|
441
|
+
"Details": "Details",
|
|
442
|
+
"Details settings": "Details settings",
|
|
443
|
+
"Determine whether a record exists by the following fields": "Determine whether a record exists by the following fields",
|
|
444
|
+
"Dialog": "Dialog",
|
|
445
|
+
"Direct assignment": "Direct assignment",
|
|
446
|
+
"Direct duplicate": "Direct duplicate",
|
|
447
|
+
"Disable": "Disable",
|
|
448
|
+
"Disable manual input": "Disable manual input",
|
|
449
|
+
"Disable tabs": "Disable tabs",
|
|
450
|
+
"Disable validation": "Disable validation",
|
|
451
|
+
"Disabled": "Disabled",
|
|
452
|
+
"Disassociate": "Disassociate",
|
|
453
|
+
"Disassociate record": "Disassociate record",
|
|
454
|
+
"Display <1><0>10</0><1>20</1><2>50</2><3>100</3></1> items per page": "Display <1><0>10</0><1>20</1><2>50</2><3>100</3></1> items per page",
|
|
455
|
+
"Display <icon></icon> when unchecked": "Display <icon></icon> when unchecked",
|
|
456
|
+
"Display Field settings": "Display Field settings",
|
|
457
|
+
"Display association fields": "Display association fields",
|
|
458
|
+
"Display field title": "Display field title",
|
|
459
|
+
"Display fields": "Display collection fields",
|
|
460
|
+
"Display label": "Display label",
|
|
461
|
+
"Display mode": "Display mode",
|
|
462
|
+
"Display name": "Display name",
|
|
463
|
+
"Display only": "Display only",
|
|
464
|
+
"Display order number": "Display order number",
|
|
465
|
+
"Display page title": "Display page title",
|
|
466
|
+
"Display style": "Display style",
|
|
467
|
+
"Display title": "Display title",
|
|
468
|
+
"DisplayName": "DisplayName",
|
|
469
|
+
"Divide by": "Divide by",
|
|
470
|
+
"Divider line color": "Divider line color",
|
|
471
|
+
"Do not concatenate search params in the URL": "Do not concatenate search params in the URL",
|
|
472
|
+
"Do not load data when filter is empty": "Do not load data when filter is empty",
|
|
473
|
+
"Docs": "Docs",
|
|
474
|
+
"Domains ending with a . character are permitted": "Domains ending with a . character are permitted",
|
|
475
|
+
"Done": "Done",
|
|
476
|
+
"Double click": "Double click",
|
|
477
|
+
"Double click to choose entire object": "Double click to choose entire object",
|
|
478
|
+
"Download": "Download",
|
|
479
|
+
"Download logs": "Download logs",
|
|
480
|
+
"Drag and drop sorting field": "Drag and drop sorting field",
|
|
481
|
+
"Drag and drop the file here or click to upload, file size should not exceed 30M": "Drag and drop the file here or click to upload, file size should not exceed 30M",
|
|
482
|
+
"Dragging": "Dragging",
|
|
483
|
+
"Drawer": "Drawer",
|
|
484
|
+
"Dropdown": "Dropdown",
|
|
485
|
+
"Dropdown select": "Dropdown select",
|
|
486
|
+
"Duplicate": "Duplicate",
|
|
487
|
+
"Duplicate and continue": "Duplicate and continue",
|
|
488
|
+
"Duplicate mode": "Duplicate mode",
|
|
489
|
+
"Duplicate template": "Duplicate template",
|
|
490
|
+
"Duplicating": "Duplicating",
|
|
491
|
+
"Duration (seconds, 0 = no auto close)": "Duration (seconds, 0 = no auto close)",
|
|
492
|
+
"Dynamic value": "Dynamic value",
|
|
493
|
+
"Easy reading": "Easy reading",
|
|
494
|
+
"Easy-reading": "Easy-reading",
|
|
495
|
+
"Edit": "Edit",
|
|
496
|
+
"Edit Title": "Edit Title",
|
|
497
|
+
"Edit block title": "Edit block title",
|
|
498
|
+
"Edit block title & description": "Edit block title & description",
|
|
499
|
+
"Edit button": "Edit button",
|
|
500
|
+
"Edit category": "Edit category",
|
|
501
|
+
"Edit chart": "Edit chart",
|
|
502
|
+
"Edit collection": "Edit collection",
|
|
503
|
+
"Edit description": "Edit description",
|
|
504
|
+
"Edit event flows": "Edit event flows",
|
|
505
|
+
"Edit field": "Edit field",
|
|
506
|
+
"Edit field title": "Edit field title",
|
|
507
|
+
"Edit form": "Edit form",
|
|
508
|
+
"Edit group title": "Edit group title",
|
|
509
|
+
"Edit link": "Edit link",
|
|
510
|
+
"Edit markdown": "Edit markdown",
|
|
511
|
+
"Edit menu item": "Edit menu item",
|
|
512
|
+
"Edit page size": "Edit page size",
|
|
513
|
+
"Edit page title": "Edit page title",
|
|
514
|
+
"Edit popup": "Edit popup",
|
|
515
|
+
"Edit profile": "Edit profile",
|
|
516
|
+
"Edit record": "Edit record",
|
|
517
|
+
"Edit role": "Edit role",
|
|
518
|
+
"Edit tab": "Edit tab",
|
|
519
|
+
"Edit tooltip": "Edit tooltip",
|
|
520
|
+
"Edit variable": "Edit variable",
|
|
521
|
+
"Editable": "Editable",
|
|
522
|
+
"Ellipsis": "Ellipsis",
|
|
523
|
+
"Ellipsis overflow content": "Ellipsis overflow content",
|
|
524
|
+
"Email": "Email",
|
|
525
|
+
"Embedded": "Embedded",
|
|
526
|
+
"Empty": "Empty",
|
|
527
|
+
"Enable": "Enable",
|
|
528
|
+
"Enable SMS authentication": "Enable SMS authentication",
|
|
529
|
+
"Enable Scan": "Enable Scan",
|
|
530
|
+
"Enable actions": "Enable actions",
|
|
531
|
+
"Enable child collections": "Enable child collections",
|
|
532
|
+
"Enable click-to-open": "Enable click-to-open",
|
|
533
|
+
"Enable drag and drop sorting": "Enable drag and drop sorting",
|
|
534
|
+
"Enable form data template": "Enable form data template",
|
|
535
|
+
"Enable index column": "Enable index column",
|
|
536
|
+
"Enable link": "Enable link",
|
|
537
|
+
"Enable page header": "Enable page header",
|
|
538
|
+
"Enable page tabs": "Enable page tabs",
|
|
539
|
+
"Enable quick edit": "Enable quick edit",
|
|
540
|
+
"Enable refresh": "Enable refresh",
|
|
541
|
+
"Enable secondary confirmation": "Enable secondary confirmation",
|
|
542
|
+
"Enable tabs": "Enable tabs",
|
|
543
|
+
"Enable tree table": "Enable tree table",
|
|
544
|
+
"Enable virtual scrolling": "Enable virtual scrolling",
|
|
545
|
+
"Enabled": "Enabled",
|
|
546
|
+
"Enabled languages": "Enabled languages",
|
|
547
|
+
"End": "End",
|
|
548
|
+
"End accessor": "End accessor",
|
|
549
|
+
"End date field": "End date field",
|
|
550
|
+
"Enter collection name": "Enter collection name",
|
|
551
|
+
"Enter end accessor": "Enter end accessor",
|
|
552
|
+
"Enter field title": "Enter field title",
|
|
553
|
+
"Enter number of rows to display": "Enter number of rows to display",
|
|
554
|
+
"Enter page title": "Enter page title",
|
|
555
|
+
"Enter placeholder text": "Enter placeholder text",
|
|
556
|
+
"Enter start accessor": "Enter start accessor",
|
|
557
|
+
"Enter title accessor": "Enter title accessor",
|
|
558
|
+
"Enter value": "Enter value",
|
|
559
|
+
"Error message": "Error message",
|
|
560
|
+
"Event": "Event",
|
|
561
|
+
"Event flow": "Event flow",
|
|
562
|
+
"Event selected": "Event selected",
|
|
563
|
+
"Event settings": "Event settings",
|
|
564
|
+
"Exact day": "Exact day",
|
|
565
|
+
"Execute": "Execute",
|
|
566
|
+
"Execute JavaScript": "Execute JavaScript",
|
|
567
|
+
"Exists": "Exists",
|
|
568
|
+
"Exit fullscreen": "Exit fullscreen",
|
|
569
|
+
"Expand All": "Expand All",
|
|
570
|
+
"Expand all": "Expand all",
|
|
571
|
+
"Expand all rows by default": "Expand all rows by default",
|
|
572
|
+
"Expand button": "Expand",
|
|
573
|
+
"Expand/Collapse": "Expand/Collapse",
|
|
574
|
+
"Export": "Export",
|
|
575
|
+
"Exportable fields": "Exportable fields",
|
|
576
|
+
"Expression": "Expression",
|
|
577
|
+
"Expression collection": "Expression collection",
|
|
578
|
+
"FORMULAJS_DOC_URL": "https://v2.docs.nocobase.com/calculation-engine/formula",
|
|
579
|
+
"Failed to load plugin": "Failed to load plugin",
|
|
580
|
+
"False": "False",
|
|
581
|
+
"Feedback": "Feedback",
|
|
582
|
+
"Field": "Field",
|
|
583
|
+
"Field Linkage rules": "Field Linkage rules",
|
|
584
|
+
"Field assignment": "Field assignment",
|
|
585
|
+
"Field component": "Field component",
|
|
586
|
+
"Field display name": "Field display name",
|
|
587
|
+
"Field interface": "Field interface",
|
|
588
|
+
"Field linkage rules": "Field linkage rules",
|
|
589
|
+
"Field mode": "Field mode",
|
|
590
|
+
"Field model": "Field model",
|
|
591
|
+
"Field name": "Field name",
|
|
592
|
+
"Field permission": "Field permission",
|
|
593
|
+
"Field settings": "Field settings",
|
|
594
|
+
"Field source": "Field source",
|
|
595
|
+
"Field title": "Field title",
|
|
596
|
+
"Field type": "Field type",
|
|
597
|
+
"Field value changes": "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": "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": "Fields values",
|
|
604
|
+
"File manager": "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": "Fill",
|
|
610
|
+
"Filled": "Filled",
|
|
611
|
+
"Filter": "Filter",
|
|
612
|
+
"Filter blocks": "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": "Filterable fields",
|
|
618
|
+
"Find by the following fields": "Find by the following fields",
|
|
619
|
+
"First or create": "First or create",
|
|
620
|
+
"Fix block": "Fix block",
|
|
621
|
+
"Fixed": "Fixed",
|
|
622
|
+
"Fixed to the left": "Fixed to the left",
|
|
623
|
+
"Fixed to the right": "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": "Foreign key",
|
|
630
|
+
"Foreign key 1": "Foreign key 1",
|
|
631
|
+
"Foreign key 2": "Foreign key 2",
|
|
632
|
+
"Form": "Form",
|
|
633
|
+
"Form (Add new)": "Form (Add new)",
|
|
634
|
+
"Form (Edit)": "Form (Edit)",
|
|
635
|
+
"Form UID": "Form UID",
|
|
636
|
+
"Form data templates": "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": "Form values",
|
|
642
|
+
"Form values change": "Form values change",
|
|
643
|
+
"Form variable": "Form variable",
|
|
644
|
+
"Format": "Format",
|
|
645
|
+
"Formula": "Formula",
|
|
646
|
+
"Formula description": "Compute a value in each record based on other fields in the same record.",
|
|
647
|
+
"Formula error.": "Formula error.",
|
|
648
|
+
"Formula mode": "Formula mode",
|
|
649
|
+
"Formula.js supports most Microsoft Excel formula functions.": "Formula.js supports most Microsoft Excel formula functions.",
|
|
650
|
+
"Full height": "Full height",
|
|
651
|
+
"Full permissions": "Full permissions",
|
|
652
|
+
"Fullscreen": "Fullscreen",
|
|
653
|
+
"Function": "Function",
|
|
654
|
+
"Gantt": "Gantt",
|
|
655
|
+
"Geek blue": "Geek blue",
|
|
656
|
+
"General": "General",
|
|
657
|
+
"General action permissions": "General action permissions",
|
|
658
|
+
"General collection": "General collection",
|
|
659
|
+
"General configuration": "General configuration",
|
|
660
|
+
"General fields": "General fields",
|
|
661
|
+
"General permissions": "General permissions",
|
|
662
|
+
"Generated automatically if left blank": "Generated automatically if left blank",
|
|
663
|
+
"Generic properties": "Generic properties",
|
|
664
|
+
"Global action permissions": "Global action permissions",
|
|
665
|
+
"Global permissions": "Global permissions",
|
|
666
|
+
"Gold": "Gold",
|
|
667
|
+
"Greater than": "Greater than",
|
|
668
|
+
"Green": "Green",
|
|
669
|
+
"Grid Card": "Grid Card",
|
|
670
|
+
"Group": "Group",
|
|
671
|
+
"Grouped sorting": "Grouped sorting",
|
|
672
|
+
"Grouping field": "Grouping field",
|
|
673
|
+
"HTML content": "HTML content",
|
|
674
|
+
"Half of day": "Half of day",
|
|
675
|
+
"Handbook": "Handbook",
|
|
676
|
+
"Hidden": "Hidden",
|
|
677
|
+
"Hidden (reserved value)": "Hidden (reserved value)",
|
|
678
|
+
"Hidden text": "Hidden text",
|
|
679
|
+
"Hidden(reserved value)": "Hidden(reserved value)",
|
|
680
|
+
"Hide": "Hide",
|
|
681
|
+
"Hide column": "Hide column",
|
|
682
|
+
"Hide in menu": "Hide in menu",
|
|
683
|
+
"Highlight": "Highlight",
|
|
684
|
+
"Home page": "Home page",
|
|
685
|
+
"Homepage": "Homepage",
|
|
686
|
+
"Horizontal": "Horizontal",
|
|
687
|
+
"Hour": "Hour",
|
|
688
|
+
"Html settings": "Html settings",
|
|
689
|
+
"IANA registry": "IANA registry",
|
|
690
|
+
"ID": "ID",
|
|
691
|
+
"Icon": "Icon",
|
|
692
|
+
"Icon only": "Icon only",
|
|
693
|
+
"Identifier for program usage. Support letters, numbers and underscores, must start with an letter.": "Identifier for program usage. Support letters, numbers and underscores, must start with an letter.",
|
|
694
|
+
"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.",
|
|
695
|
+
"If collection inherits, choose inherited collections as templates": "If collection inherits, choose inherited collections as templates",
|
|
696
|
+
"If selected, the page will display Tab pages.": "If selected, the page will display Tab pages.",
|
|
697
|
+
"If selected, the route will be displayed in the menu.": "If selected, the route will be displayed in the menu.",
|
|
698
|
+
"Ignore invalid email length errors": "Ignore invalid email length errors",
|
|
699
|
+
"Imperative Drawer": "Imperative Drawer",
|
|
700
|
+
"Import": "Import",
|
|
701
|
+
"Importable fields": "Importable fields",
|
|
702
|
+
"In configuration": "In configuration",
|
|
703
|
+
"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.": "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.",
|
|
704
|
+
"Incomplete uploading files need to be resolved": "Incomplete uploading files need to be resolved",
|
|
705
|
+
"Index": "Index",
|
|
706
|
+
"Individual": "Individual",
|
|
707
|
+
"Inherited fields": "Inherited fields",
|
|
708
|
+
"Inherited template": "Inherited template",
|
|
709
|
+
"Inherits": "Inherits",
|
|
710
|
+
"Inner": "Inner",
|
|
711
|
+
"Input": "Input",
|
|
712
|
+
"Input +, -, *, /, ( ) to calculate, input @ to open field variables.": "Input +, -, *, /, ( ) to calculate, input @ to open field variables.",
|
|
713
|
+
"Input request data": "Input request data",
|
|
714
|
+
"Insert": "Insert",
|
|
715
|
+
"Insert above": "Insert above",
|
|
716
|
+
"Insert after": "Insert after",
|
|
717
|
+
"Insert before": "Insert before",
|
|
718
|
+
"Insert below": "Insert below",
|
|
719
|
+
"Insert if not exists": "Insert if not exists",
|
|
720
|
+
"Insert if not exists, or update": "Insert if not exists, or update",
|
|
721
|
+
"Insert inner": "Insert inner",
|
|
722
|
+
"Insert left": "Insert left",
|
|
723
|
+
"Insert right": "Insert right",
|
|
724
|
+
"Installing": "Installing",
|
|
725
|
+
"Integer": "Integer",
|
|
726
|
+
"Interface": "Interface",
|
|
727
|
+
"Invalid JSON format": "Invalid JSON format",
|
|
728
|
+
"Inverse field display name": "Inverse field display name",
|
|
729
|
+
"Inverse field name": "Inverse field name",
|
|
730
|
+
"Inverse relationship type": "Inverse relationship type",
|
|
731
|
+
"Italic": "Italic",
|
|
732
|
+
"Junction collection": "Junction collection",
|
|
733
|
+
"Kanban": "Kanban",
|
|
734
|
+
"Label": "Label",
|
|
735
|
+
"Label align": "Label align",
|
|
736
|
+
"Label field": "Label field",
|
|
737
|
+
"Label width": "Label width",
|
|
738
|
+
"Language": "Language",
|
|
739
|
+
"Large": "Large",
|
|
740
|
+
"Large screen device": "Large screen device",
|
|
741
|
+
"Last 30 days": "Last 30 days",
|
|
742
|
+
"Last 7 days": "Last 7 days",
|
|
743
|
+
"Last 90 days": "Last 90 days",
|
|
744
|
+
"Last Month": "Last Month",
|
|
745
|
+
"Last Quarter": "Last Quarter",
|
|
746
|
+
"Last Week": "Last Week",
|
|
747
|
+
"Last Year": "Last Year",
|
|
748
|
+
"Last month": "Last month",
|
|
749
|
+
"Last quarter": "Last quarter",
|
|
750
|
+
"Last updated": "Last updated",
|
|
751
|
+
"Last updated at": "Last updated at",
|
|
752
|
+
"Last updated by": "Last updated by",
|
|
753
|
+
"Last week": "Last week",
|
|
754
|
+
"Last year": "Last year",
|
|
755
|
+
"Layout": "Layout",
|
|
756
|
+
"Leave it blank, unless you need a custom intermediate table": "Leave it blank, unless you need a custom intermediate table",
|
|
757
|
+
"Left": "Left",
|
|
758
|
+
"Left fixed": "Left fixed",
|
|
759
|
+
"Length": "Length",
|
|
760
|
+
"Less than": "Less than",
|
|
761
|
+
"License": "License",
|
|
762
|
+
"Lime": "Lime",
|
|
763
|
+
"Limit": "Limit",
|
|
764
|
+
"Line break": "Line break",
|
|
765
|
+
"Line chart": "Line chart",
|
|
766
|
+
"Link": "Link",
|
|
767
|
+
"Link action settings": "Link action settings",
|
|
768
|
+
"Link to": "Link to",
|
|
769
|
+
"Link to description": "Used to create collection relationships quickly and compatible with most common scenarios. Suitable for non-developer use. When present as a field, it is a drop-down selection used to select records from the target collection. Once created, it will simultaneously generate the associated fields of the current collection in the target collection.",
|
|
770
|
+
"Linkage rule": "Linkage rule",
|
|
771
|
+
"Linkage rules": "Linkage rules",
|
|
772
|
+
"Linkage with form fields": "Linkage with form fields",
|
|
773
|
+
"List": "List",
|
|
774
|
+
"Load all data when filter is empty": "Load all data when filter is empty",
|
|
775
|
+
"Load collections": "Load collections",
|
|
776
|
+
"Local": "Local",
|
|
777
|
+
"Log in with an existing account": "Log in with an existing account",
|
|
778
|
+
"Logging and monitoring": "Logging and monitoring",
|
|
779
|
+
"Logo": "Logo",
|
|
780
|
+
"Long text": "Long text",
|
|
781
|
+
"MATHJS_DOC_URL": "https://v2.docs.nocobase.com/calculation-engine/math",
|
|
782
|
+
"Magenta": "Magenta",
|
|
783
|
+
"Main": "Main",
|
|
784
|
+
"Main department": "Main department",
|
|
785
|
+
"Manage all settings": "Manage all settings",
|
|
786
|
+
"Manually close": "Manually close",
|
|
787
|
+
"Many to many": "Many to many",
|
|
788
|
+
"Many to many description": "Used to create many-to-many relationships. For example, a student will have many teachers and a teacher will have many students. When present as a field, it is a drop-down selection used to select records from the associated collection.",
|
|
789
|
+
"Many to one": "Many to one",
|
|
790
|
+
"Many to one description": "Used to create many-to-one relationships. For example, a city can belong to only one country and a country can have many cities. When present as a field, it is a drop-down selection used to select record from the associated collection. Once created, a One-to-many field is automatically generated in the associated collection.",
|
|
791
|
+
"Markdown": "Markdown",
|
|
792
|
+
"Marketplace": "Marketplace",
|
|
793
|
+
"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.",
|
|
794
|
+
"Max Domain Segments": "Max Domain Segments",
|
|
795
|
+
"Max length": "Max length",
|
|
796
|
+
"Max length must greater than min length": "Max length must greater than min length",
|
|
797
|
+
"Max value": "Max value",
|
|
798
|
+
"MaxDate": "MaxDate",
|
|
799
|
+
"Maximum": "Maximum",
|
|
800
|
+
"Maximum must greater than minimum": "Maximum must greater than minimum",
|
|
801
|
+
"Media": "Media",
|
|
802
|
+
"Medium": "Medium",
|
|
803
|
+
"Meet": "Meet",
|
|
804
|
+
"Meet <1><0>All</0><1>Any</1></1> conditions in the group": "Meet <1><0>All</0><1>Any</1></1> conditions in the group",
|
|
805
|
+
"Menu": "Menu",
|
|
806
|
+
"Menu item icon": "Menu item icon",
|
|
807
|
+
"Menu item name": "Menu item name",
|
|
808
|
+
"Menu item title": "Menu item title",
|
|
809
|
+
"Menu permissions": "Menu permissions",
|
|
810
|
+
"Message content": "Message content",
|
|
811
|
+
"Message popup close method": "Message popup close method",
|
|
812
|
+
"Message type": "Message type",
|
|
813
|
+
"Middle": "Middle",
|
|
814
|
+
"Millisecond": "Millisecond",
|
|
815
|
+
"Min Domain Segments": "Min Domain Segments",
|
|
816
|
+
"Min length": "Min length",
|
|
817
|
+
"Min length must less than max length": "Min length must less than max length",
|
|
818
|
+
"Min value": "Min value",
|
|
819
|
+
"MinDate": "MinDate",
|
|
820
|
+
"Minimum": "Minimum",
|
|
821
|
+
"Minimum must less than maximum": "Minimum must less than maximum",
|
|
822
|
+
"Mobile": "Mobile",
|
|
823
|
+
"Mobile routes": "Mobile routes",
|
|
824
|
+
"Modal": "Modal",
|
|
825
|
+
"Modal add": "Modal add",
|
|
826
|
+
"Mode": "Mode",
|
|
827
|
+
"Modern page (v2)": "Modern page (v2)",
|
|
828
|
+
"Month": "Month",
|
|
829
|
+
"Monthly": "Monthly",
|
|
830
|
+
"More details": "More details",
|
|
831
|
+
"More options": "More options",
|
|
832
|
+
"Move down": "Move down",
|
|
833
|
+
"Move to": "Move to",
|
|
834
|
+
"Move up": "Move up",
|
|
835
|
+
"Move {{title}} to": "Move {{title}} to",
|
|
836
|
+
"Multiple": "Multiple",
|
|
837
|
+
"Multiple select": "Multiple select",
|
|
838
|
+
"Multiply by": "Multiply by",
|
|
839
|
+
"Must be 1-50 characters in length (excluding @.<>\"'/)": "Must be 1-50 characters in length (excluding @.<>\"'/)",
|
|
840
|
+
"Must select to the last level": "Must select to the last level",
|
|
841
|
+
"Must use `-` and `:`": "Must use `-` and `:`",
|
|
842
|
+
"N/A": "N/A",
|
|
843
|
+
"Name": "Name",
|
|
844
|
+
"Navigate": "Navigate",
|
|
845
|
+
"Navigate to URL": "Navigate to URL",
|
|
846
|
+
"New menu items are allowed to be accessed by default.": "New menu items are allowed to be accessed by default.",
|
|
847
|
+
"New password": "New password",
|
|
848
|
+
"New routes are allowed to be accessed by default": "New routes are allowed to be accessed by default",
|
|
849
|
+
"Next": "Next",
|
|
850
|
+
"Next 30 days": "Next 30 days",
|
|
851
|
+
"Next 7 days": "Next 7 days",
|
|
852
|
+
"Next 90 days": "Next 90 days",
|
|
853
|
+
"Next Month": "Next Month",
|
|
854
|
+
"Next Quarter": "Next Quarter",
|
|
855
|
+
"Next Week": "Next Week",
|
|
856
|
+
"Next Year": "Next Year",
|
|
857
|
+
"Next month": "Next month",
|
|
858
|
+
"Next quarter": "Next quarter",
|
|
859
|
+
"Next week": "Next week",
|
|
860
|
+
"Next year": "Next year",
|
|
861
|
+
"Nickname": "Nickname",
|
|
862
|
+
"No": "No",
|
|
863
|
+
"No CHANGELOG.md file": "No CHANGELOG.md file",
|
|
864
|
+
"No README.md file": "No README.md file",
|
|
865
|
+
"No allow `-` and `:`": "No allow `-` and `:`",
|
|
866
|
+
"No assigned fields configured": "No assigned fields configured",
|
|
867
|
+
"No blocks to connect": "No blocks to connect",
|
|
868
|
+
"No configuration available.": "No configuration available.",
|
|
869
|
+
"No data": "No data",
|
|
870
|
+
"No event flows": "No event flows",
|
|
871
|
+
"No form available for reset.": "No form available for reset.",
|
|
872
|
+
"No form available for submission.": "No form available for submission.",
|
|
873
|
+
"No linkage rules": "No linkage rules",
|
|
874
|
+
"No pages yet, please configure first": "No pages yet, please configure first",
|
|
875
|
+
"A 53-bit Snowflake ID designed to be compatible with JavaScript’s safe integer range, providing both time-ordering and uniqueness.": "A 53-bit Snowflake ID designed to be compatible with JavaScript’s safe integer range, providing both time-ordering and uniqueness.",
|
|
876
|
+
"No parent popup": "No parent popup",
|
|
877
|
+
"No records selected for bulk edit": "No records selected for bulk edit",
|
|
878
|
+
"No records selected for deletion": "No records selected for deletion",
|
|
879
|
+
"No resource or record selected for deletion": "No resource or record selected for deletion",
|
|
880
|
+
"No resource selected for bulk edit": "No resource selected for bulk edit",
|
|
881
|
+
"No resource selected for deletion": "No resource selected for deletion",
|
|
882
|
+
"No resource selected for refresh": "No resource selected for refresh",
|
|
883
|
+
"None": "None",
|
|
884
|
+
"Normal": "Normal",
|
|
885
|
+
"Not Fixed": "Not fixed",
|
|
886
|
+
"Not enabled": "Not enabled",
|
|
887
|
+
"Not fixed": "Not fixed",
|
|
888
|
+
"Not required": "Not required",
|
|
889
|
+
"Notification": "Notification",
|
|
890
|
+
"Notification description": "Notification description",
|
|
891
|
+
"Notification title": "Notification title",
|
|
892
|
+
"Notification type": "Notification type",
|
|
893
|
+
"Now": "Now",
|
|
894
|
+
"Npm package": "Npm package",
|
|
895
|
+
"Npm package name": "Npm package name",
|
|
896
|
+
"Null": "Null",
|
|
897
|
+
"Number": "Number",
|
|
898
|
+
"Number settings": "Number settings",
|
|
899
|
+
"Object Fit": "Object Fit",
|
|
900
|
+
"Off": "Off",
|
|
901
|
+
"Official plugin": "Official plugin",
|
|
902
|
+
"Old password": "Old password",
|
|
903
|
+
"On": "On",
|
|
904
|
+
"One to many": "One to many",
|
|
905
|
+
"One to many description": "Used to create a one-to-many relationship. For example, a country will have many cities and a city can only be in one country. When present as a field, it is a sub-table that displays the records of the associated collection. When created, a Many-to-one field is automatically generated in the associated collection.",
|
|
906
|
+
"One to one": "One to one",
|
|
907
|
+
"One to one (belongs to)": "One to one (belongs to)",
|
|
908
|
+
"One to one (has one)": "One to one (has one)",
|
|
909
|
+
"One to one description": "Used to create one-to-one relationships. For example, a user has a profile.",
|
|
910
|
+
"Only support standard JSON data": "Only support standard JSON data",
|
|
911
|
+
"Only the selected fields will be used as the initialization data for the form": "Only the selected fields will be used as the initialization data for the form",
|
|
912
|
+
"Only use `-`": "Only use `-`",
|
|
913
|
+
"Only use `.`": "Only use `.`",
|
|
914
|
+
"Only use `_`": "Only use `_`",
|
|
915
|
+
"Open in new window": "Open in new window",
|
|
916
|
+
"Open in<1><0>Modal</0><1>Drawer</1><2>Window</2></1>": "Open in<1><0>Modal</0><1>Drawer</1><2>Window</2></1>",
|
|
917
|
+
"Open mode": "Open mode",
|
|
918
|
+
"Open mode configuration": "Open mode configuration",
|
|
919
|
+
"Operate on existing data": "Operate on existing data",
|
|
920
|
+
"Operate on new data": "Operate on new data",
|
|
921
|
+
"Operation failed": "Operation failed",
|
|
922
|
+
"Operation succeeded": "Operation succeeded",
|
|
923
|
+
"Operator": "Operator",
|
|
924
|
+
"Option label": "Option label",
|
|
925
|
+
"Option value": "Option value",
|
|
926
|
+
"Options": "Options",
|
|
927
|
+
"Orange": "Orange",
|
|
928
|
+
"Original field title: ": "Original field title: ",
|
|
929
|
+
"Original name": "Original name",
|
|
930
|
+
"Original title: ": "Original title: ",
|
|
931
|
+
"Other": "Other",
|
|
932
|
+
"Other action": "Other action",
|
|
933
|
+
"Other block": "Other block",
|
|
934
|
+
"Other blocks": "Other blocks",
|
|
935
|
+
"Other chart": "Other chart",
|
|
936
|
+
"Other collections": "Other collections",
|
|
937
|
+
"Other column": "Other column",
|
|
938
|
+
"Other form": "Other form",
|
|
939
|
+
"Other records": "Other records",
|
|
940
|
+
"Others": "Others",
|
|
941
|
+
"Outlined": "Outlined",
|
|
942
|
+
"Override": "Override",
|
|
943
|
+
"Override field": "Override field",
|
|
944
|
+
"Oversized": "Oversized",
|
|
945
|
+
"Own records": "Own records",
|
|
946
|
+
"Owners": "Owners",
|
|
947
|
+
"PK & FK fields": "PK & FK fields",
|
|
948
|
+
"Package name": "Package name",
|
|
949
|
+
"PackageName": "PackageName",
|
|
950
|
+
"Page": "Page",
|
|
951
|
+
"Page (v2)": "Page (v2)",
|
|
952
|
+
"Page Title": "Page Title",
|
|
953
|
+
"Page number": "Page number",
|
|
954
|
+
"Page settings": "Page settings",
|
|
955
|
+
"Page size": "Page size",
|
|
956
|
+
"Parent": "Parent",
|
|
957
|
+
"Parent ID": "Parent ID",
|
|
958
|
+
"Parent collection fields": "Parent collection fields",
|
|
959
|
+
"Parent object": "Parent object",
|
|
960
|
+
"Parent popup": "Parent popup",
|
|
961
|
+
"Parent popup record": "Parent popup record",
|
|
962
|
+
"Parent record": "Parent record",
|
|
963
|
+
"Password": "Password",
|
|
964
|
+
"Password Options": "Password Options",
|
|
965
|
+
"Password mismatch": "Password mismatch",
|
|
966
|
+
"Past": "Past",
|
|
967
|
+
"Path": "Path",
|
|
968
|
+
"Pattern": "Pattern",
|
|
969
|
+
"Percent": "Percent",
|
|
970
|
+
"Perform the Custom request": "Perform the Custom request",
|
|
971
|
+
"Perform the Refresh": "Perform the Refresh",
|
|
972
|
+
"Perform the Submit": "Perform the Submit",
|
|
973
|
+
"Perform the Trigger workflow": "Perform the Trigger workflow",
|
|
974
|
+
"Perform the Update record": "Perform the Update record",
|
|
975
|
+
"Perform the {{title}}": "Perform the {{title}}",
|
|
976
|
+
"Permission deined": "Permission denied",
|
|
977
|
+
"Permission denied": "Permission denied",
|
|
978
|
+
"Permission policy": "Permission policy",
|
|
979
|
+
"Phone": "Phone",
|
|
980
|
+
"Phone device": "Phone device",
|
|
981
|
+
"Picker": "Picker",
|
|
982
|
+
"Pie chart": "Pie chart",
|
|
983
|
+
"Pin to left": "Pin to left",
|
|
984
|
+
"Pin to right": "Pin to right",
|
|
985
|
+
"Placeholder": "Placeholder",
|
|
986
|
+
"Placement": "Placement",
|
|
987
|
+
"Please add a data block on the page first": "Please add a data block on the page first",
|
|
988
|
+
"Please add or select record": "Please add or select record",
|
|
989
|
+
"Please configure the URL": "Please configure the URL",
|
|
990
|
+
"Please configure the duplicate fields": "Please configure the duplicate fields",
|
|
991
|
+
"Please confirm the SQL statement first": "Please confirm the SQL statement first",
|
|
992
|
+
"Please enter form uid": "Please enter form uid",
|
|
993
|
+
"Please enter the target block UID": "Please enter the target block UID",
|
|
994
|
+
"Please enter variable identifier": "Please enter variable identifier",
|
|
995
|
+
"Please enter variable title": "Please enter variable title",
|
|
996
|
+
"Please fill in the iframe URL": "Please fill in the iframe URL",
|
|
997
|
+
"Please input message content": "Please input message content",
|
|
998
|
+
"Please input notification description": "Please input notification description",
|
|
999
|
+
"Please input notification title": "Please input notification title",
|
|
1000
|
+
"Please input target action uid": "Please input target action uid",
|
|
1001
|
+
"Please input target block uid": "Please input target block uid",
|
|
1002
|
+
"Please input target form uid": "Please input target form uid",
|
|
1003
|
+
"Please select": "Please select",
|
|
1004
|
+
"Please select field": "Please select field",
|
|
1005
|
+
"Please select fields": "Please select fields",
|
|
1006
|
+
"Please select fields to filter": "Please select fields to filter",
|
|
1007
|
+
"Please select filterable fields": "Please select filterable fields",
|
|
1008
|
+
"Please select state": "Please select state",
|
|
1009
|
+
"Please select the records to be updated": "Please select the records to be updated",
|
|
1010
|
+
"Please select time or variable": "Please select time or variable",
|
|
1011
|
+
"Please use a valid SELECT or WITH AS statement": "Please use a valid SELECT or WITH AS statement",
|
|
1012
|
+
"Plugin": "Plugin",
|
|
1013
|
+
"Plugin Zip File": "Plugin Zip File",
|
|
1014
|
+
"Plugin dependencies check failed": "Plugin dependencies check failed",
|
|
1015
|
+
"Plugin dependencies check failed, you should change the dependent version to meet the version requirements.": "Plugin dependencies check failed, you should change the dependent version to meet the version requirements.",
|
|
1016
|
+
"Plugin dependency version mismatch": "Plugin dependency version mismatch",
|
|
1017
|
+
"Plugin loading failed. Please check the server logs.": "Plugin loading failed. Please check the server logs.",
|
|
1018
|
+
"Plugin manager": "Plugin manager",
|
|
1019
|
+
"Plugin name": "Plugin name",
|
|
1020
|
+
"Plugin settings": "Plugin settings",
|
|
1021
|
+
"Plugin settings permissions": "Plugin settings permissions",
|
|
1022
|
+
"Plugin source": "Plugin source",
|
|
1023
|
+
"Plugin starting...": "Plugin starting...",
|
|
1024
|
+
"Plugin stopping...": "Plugin stopping...",
|
|
1025
|
+
"Plugin tab name": "Plugin tab name",
|
|
1026
|
+
"Plugin's version": "Plugin's version",
|
|
1027
|
+
"Pop-up": "Pop-up",
|
|
1028
|
+
"Popup": "Popup",
|
|
1029
|
+
"Popup form": "Popup form",
|
|
1030
|
+
"Popup message": "Popup message",
|
|
1031
|
+
"Popup record": "Popup record",
|
|
1032
|
+
"Popup settings": "Popup settings",
|
|
1033
|
+
"Popup size": "Popup size",
|
|
1034
|
+
"Popup uid": "Popup UID",
|
|
1035
|
+
"Position": "Position",
|
|
1036
|
+
"Precision": "Precision",
|
|
1037
|
+
"Precision(UI)": "Precision(UI)",
|
|
1038
|
+
"Prefix": "Prefix",
|
|
1039
|
+
"Preset fields": "Preset fields",
|
|
1040
|
+
"Prettify": "Prettify",
|
|
1041
|
+
"Preview": "Preview",
|
|
1042
|
+
"Preview Settings": "Preview Settings",
|
|
1043
|
+
"Preview field component": "Preview field component",
|
|
1044
|
+
"Primary": "Primary",
|
|
1045
|
+
"Primary key, unique identifier": "Primary key, unique identifier",
|
|
1046
|
+
"Primary key, unique identifier, self growth": "Primary key, unique identifier, self growth",
|
|
1047
|
+
"Primary key, distributed uniqueness, time-ordering": "Primary key, distributed uniqueness, time-ordering",
|
|
1048
|
+
"Print": "Print",
|
|
1049
|
+
"Problematic": "Problematic",
|
|
1050
|
+
"Progress field": "Progress field",
|
|
1051
|
+
"Properties": "Properties",
|
|
1052
|
+
"Providing certain collections as options for users, typically used in polymorphic or inheritance scenarios": "Providing certain collections as options for users, typically used in polymorphic or inheritance scenarios",
|
|
1053
|
+
"Province": "Province",
|
|
1054
|
+
"Province/city/area name": "Province/city/area name",
|
|
1055
|
+
"Purple": "Purple",
|
|
1056
|
+
"Quarter": "Quarter",
|
|
1057
|
+
"Quarter of day": "Quarter of day",
|
|
1058
|
+
"QuarterYear": "QuarterYear",
|
|
1059
|
+
"Quick add": "Quick add",
|
|
1060
|
+
"Quick create": "Quick create",
|
|
1061
|
+
"Quick duplicate": "Quick duplicate",
|
|
1062
|
+
"Quick upload": "Quick upload",
|
|
1063
|
+
"Radio group": "Radio group",
|
|
1064
|
+
"Randomly generated and can be modified. Support letters, numbers and underscores, must start with an letter.": "Randomly generated and can be modified. Support letters, numbers and underscores, must start with an letter.",
|
|
1065
|
+
"Read only": "Read only",
|
|
1066
|
+
"ReadOnly": "ReadOnly",
|
|
1067
|
+
"ReadPretty": "ReadPretty",
|
|
1068
|
+
"Readme": "Readme",
|
|
1069
|
+
"Readonly": "Readonly",
|
|
1070
|
+
"Recommended": "Recommended",
|
|
1071
|
+
"Record ID": "Record ID",
|
|
1072
|
+
"Record deleted successfully": "Record deleted successfully",
|
|
1073
|
+
"Record picker": "Record picker",
|
|
1074
|
+
"Record unique key": "Record unique key",
|
|
1075
|
+
"RecordPicker settings": "RecordPicker settings",
|
|
1076
|
+
"Records can be sorted": "Records can be sorted",
|
|
1077
|
+
"Records per page": "Records per page",
|
|
1078
|
+
"Red": "Red",
|
|
1079
|
+
"Redirect to": "Redirect to",
|
|
1080
|
+
"Reference template": "Reference template",
|
|
1081
|
+
"References": "References",
|
|
1082
|
+
"Refresh": "Refresh",
|
|
1083
|
+
"Refresh data after execution": "Refresh data after execution",
|
|
1084
|
+
"Refresh data blocks": "Refresh data blocks",
|
|
1085
|
+
"Refresh data on action": "Refresh data on action",
|
|
1086
|
+
"Refresh data on close": "Refresh data on close",
|
|
1087
|
+
"Refresh target blocks": "Refresh target blocks",
|
|
1088
|
+
"Regular Expression": "Regular Expression",
|
|
1089
|
+
"Regular expression": "Pattern",
|
|
1090
|
+
"Related collection": "Related collection",
|
|
1091
|
+
"Relation": "Relation",
|
|
1092
|
+
"Relationship blocks": "Relationship blocks",
|
|
1093
|
+
"Relationship type": "Relationship type",
|
|
1094
|
+
"Reload application": "Reload application",
|
|
1095
|
+
"Remains the same": "Remains the same",
|
|
1096
|
+
"Remove": "Remove",
|
|
1097
|
+
"Render Failed": "Render Failed",
|
|
1098
|
+
"Render mode": "Render mode",
|
|
1099
|
+
"Repeats": "Repeats",
|
|
1100
|
+
"Request API": "Request API",
|
|
1101
|
+
"Request URL": "Request URL",
|
|
1102
|
+
"Request body": "Request body",
|
|
1103
|
+
"Request headers": "Request headers",
|
|
1104
|
+
"Request method": "Request method",
|
|
1105
|
+
"Request query parameters": "Request query parameters",
|
|
1106
|
+
"Request settings": "Request settings",
|
|
1107
|
+
"Request success": "Request success",
|
|
1108
|
+
"Required": "Required",
|
|
1109
|
+
"Reset": "Reset",
|
|
1110
|
+
"Reset link expiration": "Reset link expiration",
|
|
1111
|
+
"Response record": "Response record",
|
|
1112
|
+
"Response type": "Response type",
|
|
1113
|
+
"Restart": "Restart",
|
|
1114
|
+
"Restart application": "Restart application",
|
|
1115
|
+
"Restrict only relative URIs": "Restrict only relative URIs",
|
|
1116
|
+
"Result": "Result",
|
|
1117
|
+
"Retry after {{count}} seconds": "Retry after {{count}} seconds",
|
|
1118
|
+
"Return to the main application": "Return to the main application",
|
|
1119
|
+
"Return to the previous popup or page": "Return to the previous popup or page",
|
|
1120
|
+
"Rich Text": "Rich Text",
|
|
1121
|
+
"Right": "Right",
|
|
1122
|
+
"Right fixed": "Right fixed",
|
|
1123
|
+
"Role UID": "Role UID",
|
|
1124
|
+
"Role display name": "Role display name",
|
|
1125
|
+
"Role name": "Role name",
|
|
1126
|
+
"Roles": "Roles",
|
|
1127
|
+
"Roles & Permissions": "Roles & Permissions",
|
|
1128
|
+
"Route name": "Route name",
|
|
1129
|
+
"Route permissions": "Route permissions",
|
|
1130
|
+
"Routes": "Routes",
|
|
1131
|
+
"Row click": "Row click",
|
|
1132
|
+
"Rows": "Rows",
|
|
1133
|
+
"SQL collection": "SQL collection",
|
|
1134
|
+
"Save": "Save",
|
|
1135
|
+
"Save action": "Save action",
|
|
1136
|
+
"Save as block template": "Save as block template",
|
|
1137
|
+
"Save as inherited template": "Save as inherited template",
|
|
1138
|
+
"Save as reference template": "Save as reference template",
|
|
1139
|
+
"Save as template": "Save as template",
|
|
1140
|
+
"Save conditions": "Save conditions",
|
|
1141
|
+
"Save failed": "Save failed",
|
|
1142
|
+
"Save mode": "Save mode",
|
|
1143
|
+
"Save record": "Save record",
|
|
1144
|
+
"Saved successfully": "Saved successfully",
|
|
1145
|
+
"Scale": "Scale",
|
|
1146
|
+
"Scale Down": "Scale Down",
|
|
1147
|
+
"Scan to input": "Scan to input",
|
|
1148
|
+
"Scheme": "Scheme",
|
|
1149
|
+
"Scientifix notation": "Scientifix notation",
|
|
1150
|
+
"Scope name": "Scope name",
|
|
1151
|
+
"Screen size": "Screen size",
|
|
1152
|
+
"Search": "Search",
|
|
1153
|
+
"Search and select collection": "Search and select collection",
|
|
1154
|
+
"Search collections...": "Search collections...",
|
|
1155
|
+
"Search parameters": "Search parameters",
|
|
1156
|
+
"Search plugin": "Search plugin",
|
|
1157
|
+
"Search plugin...": "Search plugin...",
|
|
1158
|
+
"Second": "Second",
|
|
1159
|
+
"Secondary confirmation": "Secondary confirmation",
|
|
1160
|
+
"Security": "Security",
|
|
1161
|
+
"Select": "Select",
|
|
1162
|
+
"Select a source field to use metadata of the field": "Select a source field to use metadata of the field",
|
|
1163
|
+
"Select a variable": "Select a variable",
|
|
1164
|
+
"Select all": "Select all",
|
|
1165
|
+
"Select an existing piece of data as the initialization data for the form": "Select an existing piece of data as the initialization data for the form",
|
|
1166
|
+
"Select collection": "Select collection",
|
|
1167
|
+
"Select data blocks to refresh": "Select data blocks to refresh",
|
|
1168
|
+
"Select data source": "Select data source",
|
|
1169
|
+
"Select date": "Select date",
|
|
1170
|
+
"Select field": "Select field",
|
|
1171
|
+
"Select file": "Select file",
|
|
1172
|
+
"Select form fields": "Select form fields",
|
|
1173
|
+
"Select grouping field": "Select grouping field",
|
|
1174
|
+
"Select icon": "Select icon",
|
|
1175
|
+
"Select level": "Select level",
|
|
1176
|
+
"Select mode": "Select mode",
|
|
1177
|
+
"Select record": "Select record",
|
|
1178
|
+
"Select target action": "Select target action",
|
|
1179
|
+
"Select target block": "Select target block",
|
|
1180
|
+
"Select target form block": "Select target form block",
|
|
1181
|
+
"Select template": "Select template",
|
|
1182
|
+
"Select trigger event": "Select trigger event",
|
|
1183
|
+
"Select variable": "Select variable",
|
|
1184
|
+
"Select view": "Select view",
|
|
1185
|
+
"Selected": "Selected",
|
|
1186
|
+
"Selected Collections": "Selected Collections",
|
|
1187
|
+
"Selected records deleted successfully": "Selected records deleted successfully",
|
|
1188
|
+
"Selector": "Selector",
|
|
1189
|
+
"Selector mode": "Selector mode",
|
|
1190
|
+
"Selector setting": "Selector setting",
|
|
1191
|
+
"Send code": "Send code",
|
|
1192
|
+
"Separate multiple values with comma or Enter": "Separate multiple values with comma or Enter",
|
|
1193
|
+
"Separator": "Separator",
|
|
1194
|
+
"Set Template Engine": "Set Template Engine",
|
|
1195
|
+
"Set action state": "Set action state",
|
|
1196
|
+
"Set block height": "Set block height",
|
|
1197
|
+
"Set block layout": "Set block layout",
|
|
1198
|
+
"Set block state": "Set block state",
|
|
1199
|
+
"Set button state": "Set button state",
|
|
1200
|
+
"Set condition": "Set condition",
|
|
1201
|
+
"Set data loading mode": "Set data loading mode",
|
|
1202
|
+
"Set data scope": "Set data scope",
|
|
1203
|
+
"Set default sorting rules": "Set default sorting rules",
|
|
1204
|
+
"Set default value": "Set default value",
|
|
1205
|
+
"Set details field state": "Set details field state",
|
|
1206
|
+
"Set field state": "Set field state",
|
|
1207
|
+
"Set field value": "Set field value",
|
|
1208
|
+
"Set form field state": "Set form field state",
|
|
1209
|
+
"Set form field value": "Set form field value",
|
|
1210
|
+
"Set state": "Set state",
|
|
1211
|
+
"Set the count of columns displayed in a row": "Set the count of columns displayed in a row",
|
|
1212
|
+
"Set the data scope": "Set the data scope",
|
|
1213
|
+
"Set validation rules": "Set validation rules",
|
|
1214
|
+
"Set value": "Set value",
|
|
1215
|
+
"Setting": "Setting",
|
|
1216
|
+
"Settings": "Settings",
|
|
1217
|
+
"Set Primary Key": "Set Primary Key",
|
|
1218
|
+
"Show date range": "Show date range",
|
|
1219
|
+
"Show file name": "Show file name",
|
|
1220
|
+
"Show in menu": "Show in menu",
|
|
1221
|
+
"Show label": "Show label",
|
|
1222
|
+
"Show lunar": "Show lunar",
|
|
1223
|
+
"Show message": "Show message",
|
|
1224
|
+
"Show notification": "Show notification",
|
|
1225
|
+
"Show row numbers": "Show row numbers",
|
|
1226
|
+
"Show time": "Show time",
|
|
1227
|
+
"Sign in": "Sign in",
|
|
1228
|
+
"Sign in via account": "Sign in via account",
|
|
1229
|
+
"Sign in via phone": "Sign in via phone",
|
|
1230
|
+
"Sign in with another account": "Sign in with another account",
|
|
1231
|
+
"Sign out": "Sign out",
|
|
1232
|
+
"Sign up": "Sign up",
|
|
1233
|
+
"Sign up successfully, and automatically jump to the sign in page": "Sign up successfully, and automatically jump to the sign in page",
|
|
1234
|
+
"Signed up successfully. It will jump to the login page.": "Signed up successfully. It will jump to the login page.",
|
|
1235
|
+
"Simple string replacement, can be used to interpolate variables in a string.": "Simple string replacement, can be used to interpolate variables in a string.",
|
|
1236
|
+
"Single line text": "Single line text",
|
|
1237
|
+
"Single select": "Single select",
|
|
1238
|
+
"Single select and radio fields can be used as the grouping field": "Single select and radio fields can be used as the grouping field",
|
|
1239
|
+
"Size": "Size",
|
|
1240
|
+
"Sizes": "Sizes",
|
|
1241
|
+
"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",
|
|
1242
|
+
"Skip required validation": "Skip required validation",
|
|
1243
|
+
"Small": "Small",
|
|
1244
|
+
"Snowflake ID (53-bit)": "Snowflake ID (53-bit)",
|
|
1245
|
+
"SmartTv": "SmartTv",
|
|
1246
|
+
"Some files are not uploaded correctly, please check.": "Some files are not uploaded correctly, please check.",
|
|
1247
|
+
"Sorry, the page you visited does not exist.": "Sorry, the page you visited does not exist.",
|
|
1248
|
+
"Sort": "Sort",
|
|
1249
|
+
"Sortable": "Sortable",
|
|
1250
|
+
"Source collection": "Source collection",
|
|
1251
|
+
"Source collections": "Source collections",
|
|
1252
|
+
"Source key": "Source key",
|
|
1253
|
+
"Specific properties": "Specific properties",
|
|
1254
|
+
"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.",
|
|
1255
|
+
"Specify height": "Specify height",
|
|
1256
|
+
"Start": "Start",
|
|
1257
|
+
"Start accessor": "Start accessor",
|
|
1258
|
+
"Start date field": "Start date field",
|
|
1259
|
+
"State": "State",
|
|
1260
|
+
"Stay on current page": "Stay on current page",
|
|
1261
|
+
"Stay on the current popup or page": "Stay on the current popup or page",
|
|
1262
|
+
"Steps": "Steps",
|
|
1263
|
+
"Store the creation time of each record": "Store the creation time of each record",
|
|
1264
|
+
"Store the creation user of each record": "Store the creation user of each record",
|
|
1265
|
+
"Store the last update time of each record": "Store the last update time of each record",
|
|
1266
|
+
"Store the last update user of each record": "Store the last update user of each record",
|
|
1267
|
+
"Street": "Street",
|
|
1268
|
+
"String": "String",
|
|
1269
|
+
"String template": "String template",
|
|
1270
|
+
"Style": "Style",
|
|
1271
|
+
"Sub-detail": "Sub-detail",
|
|
1272
|
+
"Sub-details": "Sub-details",
|
|
1273
|
+
"Sub-form": "Sub-form",
|
|
1274
|
+
"Sub-form(Popover)": "Sub-form(Popover)",
|
|
1275
|
+
"Sub-table": "Sub-table",
|
|
1276
|
+
"Subform mode": "Sub-form mode",
|
|
1277
|
+
"Submit": "Submit",
|
|
1278
|
+
"Submit action settings": "Submit action settings",
|
|
1279
|
+
"Submit record": "Submit record",
|
|
1280
|
+
"Submitted successfully": "Submitted successfully",
|
|
1281
|
+
"Subtable": "Sub-table",
|
|
1282
|
+
"Subtable mode": "Sub-table mode",
|
|
1283
|
+
"Successfully": "Successfully",
|
|
1284
|
+
"Suffix": "Suffix",
|
|
1285
|
+
"Super admin": "Super admin",
|
|
1286
|
+
"Superior department": "Superior department",
|
|
1287
|
+
"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)",
|
|
1288
|
+
"Support for a single or bulk upload.": "Support for a single or bulk upload.",
|
|
1289
|
+
"Switch role": "Switch role",
|
|
1290
|
+
"Switching the picker, the value and default value will be cleared": "Switching the picker, the value and default value will be cleared",
|
|
1291
|
+
"Sync from database": "Sync from database",
|
|
1292
|
+
"Sync from form fields": "Sync from form fields",
|
|
1293
|
+
"Sync successfully": "Sync successfully",
|
|
1294
|
+
"Syntax references": "Syntax references",
|
|
1295
|
+
"System": "System",
|
|
1296
|
+
"System & security": "System & security",
|
|
1297
|
+
"System fields": "System fields",
|
|
1298
|
+
"System info": "System info",
|
|
1299
|
+
"System management": "System management",
|
|
1300
|
+
"System settings": "System settings",
|
|
1301
|
+
"System title": "System title",
|
|
1302
|
+
"System variables": "System variables",
|
|
1303
|
+
"Tab": "Tab",
|
|
1304
|
+
"Tab name": "Tab name",
|
|
1305
|
+
"Table": "Table",
|
|
1306
|
+
"Table OID(Inheritance)": "Table OID(Inheritance)",
|
|
1307
|
+
"Table column settings": "Table column settings",
|
|
1308
|
+
"Table density": "Table density",
|
|
1309
|
+
"Table selected records": "Table selected records",
|
|
1310
|
+
"Table settings": "Table settings",
|
|
1311
|
+
"Table size": "Table size",
|
|
1312
|
+
"Tablet": "Tablet",
|
|
1313
|
+
"Tablet device": "Tablet device",
|
|
1314
|
+
"Tag": "Tag",
|
|
1315
|
+
"Tag color field": "Tag color field",
|
|
1316
|
+
"Target": "Target",
|
|
1317
|
+
"Target block UID": "Target block UID",
|
|
1318
|
+
"Target block uid": "Target block uid",
|
|
1319
|
+
"Target collection": "Target collection",
|
|
1320
|
+
"Target form block": "Target form block",
|
|
1321
|
+
"Target key": "Target key",
|
|
1322
|
+
"Target position": "Target position",
|
|
1323
|
+
"Template": "Template",
|
|
1324
|
+
"Template Data": "Template Data",
|
|
1325
|
+
"Template engine": "Template engine",
|
|
1326
|
+
"Template fields": "Template fields",
|
|
1327
|
+
"Template name": "Template name",
|
|
1328
|
+
"Templates": "Templates",
|
|
1329
|
+
"Text": "Text",
|
|
1330
|
+
"Text Align": "Text Align",
|
|
1331
|
+
"Text input": "Text input",
|
|
1332
|
+
"Text only": "Text only",
|
|
1333
|
+
"The application is reloading, please do not close the page.": "The application is reloading, please do not close the page.",
|
|
1334
|
+
"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).",
|
|
1335
|
+
"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?",
|
|
1336
|
+
"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}}\"",
|
|
1337
|
+
"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}}\"",
|
|
1338
|
+
"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}}\"",
|
|
1339
|
+
"The deletion was successful.": "The deletion was successful.",
|
|
1340
|
+
"The field has been deleted": "The field has been deleted",
|
|
1341
|
+
"The field value cannot be greater than ": "The field value cannot be greater than ",
|
|
1342
|
+
"The field value cannot be less than ": "The field value cannot be less than ",
|
|
1343
|
+
"The field value is not a email format": "The field value is not a email format",
|
|
1344
|
+
"The field value is not an integer number": "The field value is not an integer number",
|
|
1345
|
+
"The field value is required": "The field value is required",
|
|
1346
|
+
"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",
|
|
1347
|
+
"The selected fields will automatically populate the form": "The selected fields will automatically populate the form",
|
|
1348
|
+
"The title field is used to identify the template record": "The title field is used to identify the template record",
|
|
1349
|
+
"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.": "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.",
|
|
1350
|
+
"The will interrupt service, it may take a few seconds to restart. Are you sure to continue?": "The will interrupt service, it may take a few seconds to restart. Are you sure to continue?",
|
|
1351
|
+
"The {{type}} \"{{name}}\" may have been deleted. Please remove this {{blockType}}.": "The {{type}} \"{{name}}\" may have been deleted. Please remove this {{blockType}}.",
|
|
1352
|
+
"Theme": "Theme",
|
|
1353
|
+
"Then": "Then",
|
|
1354
|
+
"Third party services": "Third party services",
|
|
1355
|
+
"This Month": "This Month",
|
|
1356
|
+
"This Quarter": "This Quarter",
|
|
1357
|
+
"This Week": "This Week",
|
|
1358
|
+
"This Year": "This Year",
|
|
1359
|
+
"This and following events": "This and following events",
|
|
1360
|
+
"This event": "This event",
|
|
1361
|
+
"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).",
|
|
1362
|
+
"This field is required": "This field is required",
|
|
1363
|
+
"This is a demo text, **supports Markdown syntax**.": "This is a demo text, **supports Markdown syntax**.",
|
|
1364
|
+
"This is likely a NocoBase internals bug. Please open an issue at <1>here</1>": "This is likely a NocoBase internals bug. Please open an issue at <1>here</1>",
|
|
1365
|
+
"This month": "This month",
|
|
1366
|
+
"This quarter": "This quarter",
|
|
1367
|
+
"This variable has been deprecated and can be replaced with \"Current form\"": "This variable has been deprecated and can be replaced with \"Current form\"",
|
|
1368
|
+
"This week": "This week",
|
|
1369
|
+
"This year": "This year",
|
|
1370
|
+
"Through collection": "Through collection",
|
|
1371
|
+
"Time": "Time",
|
|
1372
|
+
"Time format": "Time format",
|
|
1373
|
+
"Time scale": "Time scale",
|
|
1374
|
+
"Timeout config": "Timeout config",
|
|
1375
|
+
"Timestamp": "Timestamp",
|
|
1376
|
+
"Title": "Title",
|
|
1377
|
+
"Title & description": "Title & description",
|
|
1378
|
+
"Title accessor": "Title accessor",
|
|
1379
|
+
"Title field": "Title field",
|
|
1380
|
+
"Title field component": "Title field component",
|
|
1381
|
+
"Title position": "Title position",
|
|
1382
|
+
"Today": "Today",
|
|
1383
|
+
"Toggles the subfield mode": "Toggles the subfield mode",
|
|
1384
|
+
"Tomorrow": "Tomorrow",
|
|
1385
|
+
"Tooltip": "Tooltip",
|
|
1386
|
+
"Top left": "Top left",
|
|
1387
|
+
"Top right": "Top right",
|
|
1388
|
+
"Total {{count}} items": "Total {{count}} items",
|
|
1389
|
+
"Tree collection": "Tree collection",
|
|
1390
|
+
"Tree table": "Tree table",
|
|
1391
|
+
"Trigger condition": "Trigger condition",
|
|
1392
|
+
"Trigger event": "Trigger event",
|
|
1393
|
+
"Trigger workflow": "Trigger workflow",
|
|
1394
|
+
"Triggered when the row is clicked": "Triggered when the row is clicked",
|
|
1395
|
+
"True": "True",
|
|
1396
|
+
"Try again": "Try again",
|
|
1397
|
+
"Turn pages": "Turn pages",
|
|
1398
|
+
"Two tone": "Two tone",
|
|
1399
|
+
"Type": "Type",
|
|
1400
|
+
"UI Editor": "UI Editor",
|
|
1401
|
+
"UI editor": "UI editor",
|
|
1402
|
+
"URL": "URL",
|
|
1403
|
+
"URL search params": "URL search params",
|
|
1404
|
+
"UnSelect all": "UnSelect all",
|
|
1405
|
+
"Unauthenticated. Please sign in to continue.": "Unauthenticated. Please sign in to continue.",
|
|
1406
|
+
"Unconnected": "Unconnected",
|
|
1407
|
+
"Unicode characters are permitted": "Unicode characters are permitted",
|
|
1408
|
+
"Unique": "Unique",
|
|
1409
|
+
"Unit conversion": "Unit conversion",
|
|
1410
|
+
"Unix Timestamp": "Unix Timestamp",
|
|
1411
|
+
"Unknown field type": "Unknown field type",
|
|
1412
|
+
"Unnamed": "Unnamed",
|
|
1413
|
+
"Unpinned": "Unpinned",
|
|
1414
|
+
"Unsafe integer": "Unsafe integer",
|
|
1415
|
+
"Unsaved changes": "Unsaved changes",
|
|
1416
|
+
"Update": "Update",
|
|
1417
|
+
"Update all data?": "Update all data?",
|
|
1418
|
+
"Update or create": "Update or create",
|
|
1419
|
+
"Update plugin": "Update plugin",
|
|
1420
|
+
"Update record": "Update record",
|
|
1421
|
+
"Update record action": "Update record",
|
|
1422
|
+
"Update selected data?": "Update selected data?",
|
|
1423
|
+
"Updated successfully": "Updated successfully",
|
|
1424
|
+
"UpdatedAt": "UpdatedAt",
|
|
1425
|
+
"UpdatedBy": "UpdatedBy",
|
|
1426
|
+
"Upgrade": "Upgrade",
|
|
1427
|
+
"Upload": "Upload",
|
|
1428
|
+
"Upload file settings": "Upload file settings",
|
|
1429
|
+
"Upload new version": "Upload new version",
|
|
1430
|
+
"Upload plugin": "Upload plugin",
|
|
1431
|
+
"Uploading": "Uploading",
|
|
1432
|
+
"Use simple pagination mode": "Use simple pagination mode",
|
|
1433
|
+
"Use the same time zone (GMT) for all users": "Use the same time zone (GMT) for all users",
|
|
1434
|
+
"Used for drag and drop sorting scenarios, supporting grouping sorting": "Used for drag and drop sorting scenarios, supporting grouping sorting",
|
|
1435
|
+
"User": "User",
|
|
1436
|
+
"User not found. Please sign in again to continue.": "User not found. Please sign in again to continue.",
|
|
1437
|
+
"User password changed, please signin again.": "User password changed, please signin again.",
|
|
1438
|
+
"Username": "Username",
|
|
1439
|
+
"Users": "Users",
|
|
1440
|
+
"Users & permissions": "Users & permissions",
|
|
1441
|
+
"Valid range: 10-40": "Valid range: 10-40",
|
|
1442
|
+
"Valid range: 100-900": "Valid range: 100-900",
|
|
1443
|
+
"Validation": "Validation",
|
|
1444
|
+
"Validation rule": "Validation rule",
|
|
1445
|
+
"Value": "Value",
|
|
1446
|
+
"Variable identifier": "Variable identifier",
|
|
1447
|
+
"Variable title": "Variable title",
|
|
1448
|
+
"Verification code": "Verification code",
|
|
1449
|
+
"Version": "Version",
|
|
1450
|
+
"Version range": "Version range",
|
|
1451
|
+
"Vertical": "Vertical",
|
|
1452
|
+
"View": "View",
|
|
1453
|
+
"View all plugins": "View all plugins",
|
|
1454
|
+
"View record": "View record",
|
|
1455
|
+
"Village": "Village",
|
|
1456
|
+
"Visible": "Visible",
|
|
1457
|
+
"Volcano": "Volcano",
|
|
1458
|
+
"Wearable": "Wearable",
|
|
1459
|
+
"Week": "Week",
|
|
1460
|
+
"Weekly": "Weekly",
|
|
1461
|
+
"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.",
|
|
1462
|
+
"When condition is met": "When condition is met",
|
|
1463
|
+
"When condition is not met": "When condition is not met",
|
|
1464
|
+
"When submitting the following fields, the saved values are": "When submitting the following fields, the saved values are",
|
|
1465
|
+
"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",
|
|
1466
|
+
"When the Label exceeds the width": "When the Label exceeds the width",
|
|
1467
|
+
"With condition": "With condition",
|
|
1468
|
+
"Without condition": "Without condition",
|
|
1469
|
+
"Work week": "Work week",
|
|
1470
|
+
"Workflow": "Workflow",
|
|
1471
|
+
"Wrap": "Wrap",
|
|
1472
|
+
"Wysiwyg": "Wysiwyg",
|
|
1473
|
+
"Year": "Year",
|
|
1474
|
+
"Year-Month-Day": "Year-Month-Day",
|
|
1475
|
+
"Year/Month/Day": "Year/Month/Day",
|
|
1476
|
+
"Yearly": "Yearly",
|
|
1477
|
+
"Yes": "Yes",
|
|
1478
|
+
"Yesterday": "Yesterday",
|
|
1479
|
+
"Your session has expired. Please sign in again.": "Your session has expired. Please sign in again.",
|
|
1480
|
+
"conditions in the group": "conditions in the group",
|
|
1481
|
+
"contains": "contains",
|
|
1482
|
+
"data source": "data source",
|
|
1483
|
+
"does not contain": "does not contain",
|
|
1484
|
+
"edit title": "edit title",
|
|
1485
|
+
"ends with": "ends with",
|
|
1486
|
+
"exists": "exists",
|
|
1487
|
+
"is": "is",
|
|
1488
|
+
"is after": "is after",
|
|
1489
|
+
"is any of": "is any of",
|
|
1490
|
+
"is before": "is before",
|
|
1491
|
+
"is between": "is between",
|
|
1492
|
+
"is empty": "is empty",
|
|
1493
|
+
"is none of": "is none of",
|
|
1494
|
+
"is not": "is not",
|
|
1495
|
+
"is not empty": "is not empty",
|
|
1496
|
+
"is on or after": "is on or after",
|
|
1497
|
+
"is on or before": "is on or before",
|
|
1498
|
+
"item": "item",
|
|
1499
|
+
"items": "items",
|
|
1500
|
+
"loading": "loading",
|
|
1501
|
+
"name is required": "name is required",
|
|
1502
|
+
"not ends with": "not ends with",
|
|
1503
|
+
"not exists": "not exists",
|
|
1504
|
+
"not starts with": "not starts with",
|
|
1505
|
+
"pixels": "pixels",
|
|
1506
|
+
"re-download file": "re-download file",
|
|
1507
|
+
"starts with": "starts with",
|
|
1508
|
+
"tlds": "tlds",
|
|
1509
|
+
"visible": "visible",
|
|
1510
|
+
"{{#label}} email address doesn’t meet the required format": "{{#label}} email address doesn’t meet the required format",
|
|
1511
|
+
"{{#label}} is not allowed to be empty": "{{#label}} is not allowed to be empty",
|
|
1512
|
+
"{{#label}} is required": "{{#label}} is required",
|
|
1513
|
+
"{{#label}} length must be at least {{#limit}} characters long": "{{#label}} length must be at least {{#limit}} characters long",
|
|
1514
|
+
"{{#label}} length must be less than or equal to {{#limit}} characters long": "{{#label}} length must be less than or equal to {{#limit}} characters long",
|
|
1515
|
+
"{{#label}} length must be {{#limit}} characters long": "{{#label}} length must be {{#limit}} characters long",
|
|
1516
|
+
"{{#label}} must be a credit card": "{{#label}} must be a credit card",
|
|
1517
|
+
"{{#label}} must be a float or double": "{{#label}} must be a float or double",
|
|
1518
|
+
"{{#label}} must be a multiple of {{#multiple}}": "{{#label}} must be a multiple of {{#multiple}}",
|
|
1519
|
+
"{{#label}} must be a negative number": "{{#label}} must be a negative number",
|
|
1520
|
+
"{{#label}} must be a number": "{{#label}} must be a number",
|
|
1521
|
+
"{{#label}} must be a positive number": "{{#label}} must be a positive number",
|
|
1522
|
+
"{{#label}} must be a safe number": "{{#label}} must be a safe number",
|
|
1523
|
+
"{{#label}} must be a string": "{{#label}} must be a string",
|
|
1524
|
+
"{{#label}} must be a valid ISO 8601 date": "{{#label}} must be a valid ISO 8601 date",
|
|
1525
|
+
"{{#label}} must be a valid UUID": "{{#label}} must be a valid UUID",
|
|
1526
|
+
"{{#label}} must be a valid date": "{{#label}} must be a valid date",
|
|
1527
|
+
"{{#label}} must be a valid hostname": "{{#label}} must be a valid hostname",
|
|
1528
|
+
"{{#label}} must be a valid port": "{{#label}} must be a valid port",
|
|
1529
|
+
"{{#label}} must be a valid uri": "{{#label}} must be a valid uri",
|
|
1530
|
+
"{{#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",
|
|
1531
|
+
"{{#label}} must be an integer": "{{#label}} must be an integer",
|
|
1532
|
+
"{{#label}} must be greater than or equal to {{#limit}}": "{{#label}} must be greater than or equal to {{#limit}}",
|
|
1533
|
+
"{{#label}} must be greater than {{#limit}}": "{{#label}} must be greater than {{#limit}}",
|
|
1534
|
+
"{{#label}} must be in {{#format}} format": "{{#label}} must be in {{#format}} format",
|
|
1535
|
+
"{{#label}} must be less than or equal to {{#limit}}": "{{#label}} must be less than or equal to {{#limit}}",
|
|
1536
|
+
"{{#label}} must be less than {{#limit}}": "{{#label}} must be less than {{#limit}}",
|
|
1537
|
+
"{{#label}} must not have leading or trailing whitespace": "{{#label}} must not have leading or trailing whitespace",
|
|
1538
|
+
"{{#label}} must not have more than {{#limit}} decimal places": "{{#label}} must not have more than {{#limit}} decimal places",
|
|
1539
|
+
"{{#label}} must only contain alpha-numeric and underscore characters": "{{#label}} must only contain alpha-numeric and underscore characters",
|
|
1540
|
+
"{{#label}} must only contain alpha-numeric characters": "{{#label}} must only contain alpha-numeric characters",
|
|
1541
|
+
"{{#label}} must only contain hexadecimal characters": "{{#label}} must only contain hexadecimal characters",
|
|
1542
|
+
"{{#label}} must only contain lowercase characters": "{{#label}} must only contain lowercase characters",
|
|
1543
|
+
"{{#label}} must only contain uppercase characters": "{{#label}} must only contain uppercase characters",
|
|
1544
|
+
"{{#label}} with value \"{{#value}}\" fails to match the required pattern": "{{#label}} with value \"{{#value}}\" fails to match the required pattern",
|
|
1545
|
+
"{{#label}} with value \"{{#value}}\" fails to match the {{#name}} pattern": "{{#label}} with value \"{{#value}}\" fails to match the {{#name}} pattern",
|
|
1546
|
+
"{{#label}} with value \"{{#value}}\" matches the inverted pattern": "{{#label}} with value \"{{#value}}\" matches the inverted pattern",
|
|
1547
|
+
"{{#label}} with value \"{{#value}}\" matches the inverted {{#name}} pattern": "{{#label}} with value \"{{#value}}\" matches the inverted {{#name}} pattern",
|
|
1548
|
+
"{{count}} filter items": "{{count}} filter items",
|
|
1549
|
+
"{{count}} more items": "{{count}} more items",
|
|
1550
|
+
"≠": "≠",
|
|
1551
|
+
"≤": "≤",
|
|
1552
|
+
"≥": "≥"
|
|
1553
|
+
}
|