@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
package/lib/locale/en-US.js
DELETED
|
@@ -1,996 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
"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",
|
|
3
|
-
"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",
|
|
4
|
-
"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>",
|
|
5
|
-
"{{count}} filter items": "{{count}} filter items",
|
|
6
|
-
"{{count}} more items": "{{count}} more items",
|
|
7
|
-
"Total {{count}} items": "Total {{count}} items",
|
|
8
|
-
Today: "Today",
|
|
9
|
-
Yesterday: "Yesterday",
|
|
10
|
-
Tomorrow: "Tomorrow",
|
|
11
|
-
Month: "Month",
|
|
12
|
-
Week: "Week",
|
|
13
|
-
"This week": "This week",
|
|
14
|
-
"This month": "This month",
|
|
15
|
-
"This year": "This year",
|
|
16
|
-
"Next year": "Next year",
|
|
17
|
-
"Last week": "Last week",
|
|
18
|
-
"Next week": "Next week",
|
|
19
|
-
"Last month": "Last month",
|
|
20
|
-
"Next month": "Next month",
|
|
21
|
-
"Last quarter": "Last quarter",
|
|
22
|
-
"This quarter": "This quarter",
|
|
23
|
-
"Next quarter": "Next quarter",
|
|
24
|
-
"Last year": "Last year",
|
|
25
|
-
"Last 7 days": "Last 7 days",
|
|
26
|
-
"Last 30 days": "Last 30 days",
|
|
27
|
-
"Last 90 days": "Last 90 days",
|
|
28
|
-
"Next 7 days": "Next 7 days",
|
|
29
|
-
"Next 30 days": "Next 30 days",
|
|
30
|
-
"Next 90 days": "Next 90 days",
|
|
31
|
-
"Work week": "Work week",
|
|
32
|
-
Day: "Day",
|
|
33
|
-
Agenda: "Agenda",
|
|
34
|
-
Date: "Date",
|
|
35
|
-
Time: "Time",
|
|
36
|
-
Event: "Event",
|
|
37
|
-
None: "None",
|
|
38
|
-
Unconnected: "Unconnected",
|
|
39
|
-
"System settings": "System settings",
|
|
40
|
-
"System title": "System title",
|
|
41
|
-
Settings: "Settings",
|
|
42
|
-
Logo: "Logo",
|
|
43
|
-
"Add menu item": "Add menu item",
|
|
44
|
-
Page: "Page",
|
|
45
|
-
Name: "Name",
|
|
46
|
-
Icon: "Icon",
|
|
47
|
-
Group: "Group",
|
|
48
|
-
Link: "Link",
|
|
49
|
-
Tab: "Tab",
|
|
50
|
-
"Save conditions": "Save conditions",
|
|
51
|
-
"Edit menu item": "Edit menu item",
|
|
52
|
-
"Move to": "Move to",
|
|
53
|
-
"Insert left": "Insert left",
|
|
54
|
-
"Insert right": "Insert right",
|
|
55
|
-
"Insert inner": "Insert inner",
|
|
56
|
-
Delete: "Delete",
|
|
57
|
-
Disassociate: "Disassociate",
|
|
58
|
-
"Disassociate record": "Disassociate record",
|
|
59
|
-
"Are you sure you want to disassociate it?": "Are you sure you want to disassociate it?",
|
|
60
|
-
"UI editor": "UI editor",
|
|
61
|
-
Collection: "Collection",
|
|
62
|
-
"Collection selector": "Collection selector",
|
|
63
|
-
"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",
|
|
64
|
-
"Collections & Fields": "Collections & Fields",
|
|
65
|
-
"All collections": "All collections",
|
|
66
|
-
"Add category": "Add category",
|
|
67
|
-
"Enable child collections": "Enable child collections",
|
|
68
|
-
"Allow adding records to the current collection": "Allow adding records to the current collection",
|
|
69
|
-
"Delete category": "Delete category",
|
|
70
|
-
"Edit category": "Edit category",
|
|
71
|
-
"Collection category": "Collection category",
|
|
72
|
-
"Collection template": "Collection template",
|
|
73
|
-
Sort: "Sort",
|
|
74
|
-
Categories: "Categories",
|
|
75
|
-
Visible: "Visible",
|
|
76
|
-
"Read only": "Read only",
|
|
77
|
-
"Easy reading": "Easy reading",
|
|
78
|
-
Hidden: "Hidden",
|
|
79
|
-
"Hidden (reserved value)": "Hidden (reserved value)",
|
|
80
|
-
"Not required": "Not required",
|
|
81
|
-
Value: "Value",
|
|
82
|
-
Disabled: "Disabled",
|
|
83
|
-
Enabled: "Enabled",
|
|
84
|
-
Problematic: "Problematic",
|
|
85
|
-
Setting: "Setting",
|
|
86
|
-
On: "On",
|
|
87
|
-
Off: "Off",
|
|
88
|
-
Empty: "Empty",
|
|
89
|
-
"Linkage rule": "Linkage rule",
|
|
90
|
-
"Linkage rules": "Linkage rules",
|
|
91
|
-
Condition: "Condition",
|
|
92
|
-
Properties: "Properties",
|
|
93
|
-
"Add linkage rule": "Add linkage rule",
|
|
94
|
-
"Add property": "Add property",
|
|
95
|
-
"Category name": "Category name",
|
|
96
|
-
"Roles & Permissions": "Roles & Permissions",
|
|
97
|
-
"Edit profile": "Edit profile",
|
|
98
|
-
"Change password": "Change password",
|
|
99
|
-
"Old password": "Old password",
|
|
100
|
-
"New password": "New password",
|
|
101
|
-
"Switch role": "Switch role",
|
|
102
|
-
"Super admin": "Super admin",
|
|
103
|
-
Language: "Language",
|
|
104
|
-
"Allow sign up": "Allow sign up",
|
|
105
|
-
"Enable SMS authentication": "Enable SMS authentication",
|
|
106
|
-
"Sign out": "Sign out",
|
|
107
|
-
Cancel: "Cancel",
|
|
108
|
-
Submit: "Submit",
|
|
109
|
-
Close: "Close",
|
|
110
|
-
"Set the data scope": "Set the data scope",
|
|
111
|
-
"Set data loading mode": "Set data loading mode",
|
|
112
|
-
"Load all data when filter is empty": "Load all data when filter is empty",
|
|
113
|
-
"Do not load data when filter is empty": "Do not load data when filter is empty",
|
|
114
|
-
"Data loading mode": "Data loading mode",
|
|
115
|
-
"Data blocks": "Data blocks",
|
|
116
|
-
"Filter blocks": "Filter blocks",
|
|
117
|
-
Table: "Table",
|
|
118
|
-
"Table OID(Inheritance)": "Table OID(Inheritance)",
|
|
119
|
-
Form: "Form",
|
|
120
|
-
List: "List",
|
|
121
|
-
"Grid Card": "Grid Card",
|
|
122
|
-
pixels: "pixels",
|
|
123
|
-
"Screen size": "Screen size",
|
|
124
|
-
"Display title": "Display title",
|
|
125
|
-
"Set the count of columns displayed in a row": "Set the count of columns displayed in a row",
|
|
126
|
-
Column: "Column",
|
|
127
|
-
"Phone device": "Phone device",
|
|
128
|
-
"Tablet device": "Tablet device",
|
|
129
|
-
"Desktop device": "Desktop device",
|
|
130
|
-
"Large screen device": "Large screen device",
|
|
131
|
-
Collapse: "Collapse",
|
|
132
|
-
"Select data source": "Select data source",
|
|
133
|
-
Calendar: "Calendar",
|
|
134
|
-
"Delete events": "Delete events",
|
|
135
|
-
"This event": "This event",
|
|
136
|
-
"This and following events": "This and following events",
|
|
137
|
-
"All events": "All events",
|
|
138
|
-
"Delete this event?": "Delete this event?",
|
|
139
|
-
"Delete Event": "Delete Event",
|
|
140
|
-
Kanban: "Kanban",
|
|
141
|
-
Gantt: "Gantt",
|
|
142
|
-
"Create gantt block": "Create gantt block",
|
|
143
|
-
"Progress field": "Progress field",
|
|
144
|
-
"Time scale": "Time scale",
|
|
145
|
-
Hour: "Hour",
|
|
146
|
-
"Quarter of day": "Quarter of day",
|
|
147
|
-
"Half of day": "Half of day",
|
|
148
|
-
Year: "Year",
|
|
149
|
-
QuarterYear: "QuarterYear",
|
|
150
|
-
"Select grouping field": "Select grouping field",
|
|
151
|
-
Media: "Media",
|
|
152
|
-
Markdown: "Markdown",
|
|
153
|
-
Wysiwyg: "Wysiwyg",
|
|
154
|
-
"Chart blocks": "Chart blocks",
|
|
155
|
-
"Column chart": "Column chart",
|
|
156
|
-
"Bar chart": "Bar chart",
|
|
157
|
-
"Line chart": "Line chart",
|
|
158
|
-
"Pie chart": "Pie chart",
|
|
159
|
-
"Area chart": "Area chart",
|
|
160
|
-
"Other chart": "Other chart",
|
|
161
|
-
"Other blocks": "Other blocks",
|
|
162
|
-
"In configuration": "In configuration",
|
|
163
|
-
"Chart title": "Chart title",
|
|
164
|
-
"Chart type": "Chart type",
|
|
165
|
-
"Chart config": "Chart config",
|
|
166
|
-
Templates: "Templates",
|
|
167
|
-
Template: "Template",
|
|
168
|
-
"Select template": "Select template",
|
|
169
|
-
"Action logs": "Action logs",
|
|
170
|
-
"Create template": "Create template",
|
|
171
|
-
"Edit markdown": "Edit markdown",
|
|
172
|
-
"Add block": "Add block",
|
|
173
|
-
"Add new": "Add new",
|
|
174
|
-
"Add record": "Add record",
|
|
175
|
-
"Add child": "Add child",
|
|
176
|
-
"Collapse all": "Collapse all",
|
|
177
|
-
"Expand all": "Expand all",
|
|
178
|
-
"Expand/Collapse": "Expand/Collapse",
|
|
179
|
-
"Default collapse": "Default collapse",
|
|
180
|
-
"Tree table": "Tree table",
|
|
181
|
-
"Custom field display name": "Custom field display name",
|
|
182
|
-
"Display fields": "Display collection fields",
|
|
183
|
-
"Edit record": "Edit record",
|
|
184
|
-
"Delete menu item": "Delete menu item",
|
|
185
|
-
"Add page": "Add page",
|
|
186
|
-
"Please add a data block on the page first": "Please add a data block on the page first",
|
|
187
|
-
"Add group": "Add group",
|
|
188
|
-
"Add link": "Add link",
|
|
189
|
-
"Insert above": "Insert above",
|
|
190
|
-
"Insert below": "Insert below",
|
|
191
|
-
Save: "Save",
|
|
192
|
-
"Delete block": "Delete block",
|
|
193
|
-
"Are you sure you want to delete it?": "Are you sure you want to delete it?",
|
|
194
|
-
"This is a demo text, **supports Markdown syntax**.": "This is a demo text, **supports Markdown syntax**.",
|
|
195
|
-
Filter: "Filter",
|
|
196
|
-
"Connect data blocks": "Connect data blocks",
|
|
197
|
-
"Action type": "Action type",
|
|
198
|
-
Actions: "Actions",
|
|
199
|
-
Insert: "Insert",
|
|
200
|
-
"Insert if not exists": "Insert if not exists",
|
|
201
|
-
"Insert if not exists, or update": "Insert if not exists, or update",
|
|
202
|
-
"Determine whether a record exists by the following fields": "Determine whether a record exists by the following fields",
|
|
203
|
-
Update: "Update",
|
|
204
|
-
"Update record": "Update record",
|
|
205
|
-
View: "View",
|
|
206
|
-
"View record": "View record",
|
|
207
|
-
Refresh: "Refresh",
|
|
208
|
-
"Data changes": "Data changes",
|
|
209
|
-
"Field name": "Field name",
|
|
210
|
-
"Before change": "Before change",
|
|
211
|
-
"After change": "After change",
|
|
212
|
-
"Delete record": "Delete record",
|
|
213
|
-
"Delete collection": "Delete collection",
|
|
214
|
-
"Create collection": "Create collection",
|
|
215
|
-
"Collection display name": "Collection display name",
|
|
216
|
-
"Collection name": "Collection name",
|
|
217
|
-
Inherits: "Inherits",
|
|
218
|
-
"Primary key, unique identifier, self growth": "Primary key, unique identifier, self growth",
|
|
219
|
-
"Store the creation user of each record": "Store the creation user of each record",
|
|
220
|
-
"Store the last update user of each record": "Store the last update user of each record",
|
|
221
|
-
"Store the creation time of each record": "Store the creation time of each record",
|
|
222
|
-
"Store the last update time of each record": "Store the last update time of each record",
|
|
223
|
-
"More options": "More options",
|
|
224
|
-
"Records can be sorted": "Records can be sorted",
|
|
225
|
-
"Calendar collection": "Calendar collection",
|
|
226
|
-
"General collection": "General collection",
|
|
227
|
-
"Connect to database view": "Connect to database view",
|
|
228
|
-
"Sync from database": "Sync from database",
|
|
229
|
-
"Source collections": "Source collections",
|
|
230
|
-
"Field source": "Field source",
|
|
231
|
-
Preview: "Preview",
|
|
232
|
-
"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.",
|
|
233
|
-
Edit: "Edit",
|
|
234
|
-
"Edit collection": "Edit collection",
|
|
235
|
-
"Configure fields": "Configure fields",
|
|
236
|
-
"Configure columns": "Configure columns",
|
|
237
|
-
"Edit field": "Edit field",
|
|
238
|
-
Override: "Override",
|
|
239
|
-
"Override field": "Override field",
|
|
240
|
-
"Configure fields of {{title}}": "Configure fields of {{title}}",
|
|
241
|
-
"Association fields filter": "Association fields filter",
|
|
242
|
-
"PK & FK fields": "PK & FK fields",
|
|
243
|
-
"Association fields": "Association fields",
|
|
244
|
-
"Choices fields": "Choices fields",
|
|
245
|
-
"System fields": "System fields",
|
|
246
|
-
"General fields": "General fields",
|
|
247
|
-
"Inherited fields": "Inherited fields",
|
|
248
|
-
"Parent collection fields": "Parent collection fields",
|
|
249
|
-
Basic: "Basic",
|
|
250
|
-
"Single line text": "Single line text",
|
|
251
|
-
"Long text": "Long text",
|
|
252
|
-
Phone: "Phone",
|
|
253
|
-
Email: "Email",
|
|
254
|
-
Number: "Number",
|
|
255
|
-
Integer: "Integer",
|
|
256
|
-
Percent: "Percent",
|
|
257
|
-
Password: "Password",
|
|
258
|
-
"Advanced type": "Advanced",
|
|
259
|
-
Formula: "Formula",
|
|
260
|
-
"Formula description": "Compute a value in each record based on other fields in the same record.",
|
|
261
|
-
Choices: "Choices",
|
|
262
|
-
Checkbox: "Checkbox",
|
|
263
|
-
"Single select": "Single select",
|
|
264
|
-
"Multiple select": "Multiple select",
|
|
265
|
-
"Radio group": "Radio group",
|
|
266
|
-
"Checkbox group": "Checkbox group",
|
|
267
|
-
"China region": "China region",
|
|
268
|
-
"Date & Time": "Date & Time",
|
|
269
|
-
Datetime: "Datetime",
|
|
270
|
-
Relation: "Relation",
|
|
271
|
-
"Link to": "Link to",
|
|
272
|
-
"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.",
|
|
273
|
-
"Sub-table": "Sub-table",
|
|
274
|
-
"Sub-details": "Sub-details",
|
|
275
|
-
"Sub-form(Popover)": "Sub-form(Popover)",
|
|
276
|
-
"System info": "System info",
|
|
277
|
-
"Created at": "Created at",
|
|
278
|
-
"Last updated at": "Last updated at",
|
|
279
|
-
"Created by": "Created by",
|
|
280
|
-
"Last updated by": "Last updated by",
|
|
281
|
-
"Add field": "Add field",
|
|
282
|
-
"Field display name": "Field display name",
|
|
283
|
-
"Field type": "Field type",
|
|
284
|
-
"Field interface": "Field interface",
|
|
285
|
-
"Date format": "Date format",
|
|
286
|
-
"Year/Month/Day": "Year/Month/Day",
|
|
287
|
-
"Year-Month-Day": "Year-Month-Day",
|
|
288
|
-
"Day/Month/Year": "Day/Month/Year",
|
|
289
|
-
"Show time": "Show time",
|
|
290
|
-
"Time format": "Time format",
|
|
291
|
-
"12 hour": "12 hour",
|
|
292
|
-
"24 hour": "24 hour",
|
|
293
|
-
"Relationship type": "Relationship type",
|
|
294
|
-
"Inverse relationship type": "Inverse relationship type",
|
|
295
|
-
"Source collection": "Source collection",
|
|
296
|
-
"Source key": "Source key",
|
|
297
|
-
"Target collection": "Target collection",
|
|
298
|
-
"Through collection": "Through collection",
|
|
299
|
-
"Target key": "Target key",
|
|
300
|
-
"Foreign key": "Foreign key",
|
|
301
|
-
"One to one": "One to one",
|
|
302
|
-
"One to many": "One to many",
|
|
303
|
-
"Many to one": "Many to one",
|
|
304
|
-
"Many to many": "Many to many",
|
|
305
|
-
"Foreign key 1": "Foreign key 1",
|
|
306
|
-
"Foreign key 2": "Foreign key 2",
|
|
307
|
-
"One to one description": "Used to create one-to-one relationships. For example, a user has a profile.",
|
|
308
|
-
"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.",
|
|
309
|
-
"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.",
|
|
310
|
-
"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.",
|
|
311
|
-
"Generated automatically if left blank": "Generated automatically if left blank",
|
|
312
|
-
"Display association fields": "Display association fields",
|
|
313
|
-
"Display field title": "Display field title",
|
|
314
|
-
"Field component": "Field component",
|
|
315
|
-
"Allow multiple": "Allow multiple",
|
|
316
|
-
"Quick upload": "Quick upload",
|
|
317
|
-
"Select file": "Select file",
|
|
318
|
-
Subtable: "Sub-table",
|
|
319
|
-
"Sub-form": "Sub-form",
|
|
320
|
-
"Field mode": "Field mode",
|
|
321
|
-
"Allow add new data": "Allow add new data",
|
|
322
|
-
"Record picker": "Record picker",
|
|
323
|
-
"Toggles the subfield mode": "Toggles the subfield mode",
|
|
324
|
-
"Selector mode": "Selector mode",
|
|
325
|
-
"Subtable mode": "Sub-table mode",
|
|
326
|
-
"Subform mode": "Sub-form mode",
|
|
327
|
-
"Edit block title": "Edit block title",
|
|
328
|
-
"Block title": "Block title",
|
|
329
|
-
Pattern: "Pattern",
|
|
330
|
-
Operator: "Operator",
|
|
331
|
-
Editable: "Editable",
|
|
332
|
-
Readonly: "Readonly",
|
|
333
|
-
"Easy-reading": "Easy-reading",
|
|
334
|
-
"Add filter": "Add filter",
|
|
335
|
-
"Add filter group": "Add filter group",
|
|
336
|
-
Comparision: "Comparision",
|
|
337
|
-
is: "is",
|
|
338
|
-
"is not": "is not",
|
|
339
|
-
contains: "contains",
|
|
340
|
-
"does not contain": "does not contain",
|
|
341
|
-
"starts with": "starts with",
|
|
342
|
-
"not starts with": "not starts with",
|
|
343
|
-
"ends with": "ends with",
|
|
344
|
-
"not ends with": "not ends with",
|
|
345
|
-
"is empty": "is empty",
|
|
346
|
-
"is not empty": "is not empty",
|
|
347
|
-
"Edit chart": "Edit chart",
|
|
348
|
-
"Add text": "Add text",
|
|
349
|
-
"Filterable fields": "Filterable fields",
|
|
350
|
-
"Edit button": "Edit button",
|
|
351
|
-
Hide: "Hide",
|
|
352
|
-
"Enable actions": "Enable actions",
|
|
353
|
-
Import: "Import",
|
|
354
|
-
Export: "Export",
|
|
355
|
-
Customize: "Customize",
|
|
356
|
-
Custom: "Custom",
|
|
357
|
-
Function: "Function",
|
|
358
|
-
"Popup form": "Popup form",
|
|
359
|
-
"Flexible popup": "Flexible popup",
|
|
360
|
-
"Configure actions": "Configure actions",
|
|
361
|
-
"Display order number": "Display order number",
|
|
362
|
-
"Enable drag and drop sorting": "Enable drag and drop sorting",
|
|
363
|
-
"Triggered when the row is clicked": "Triggered when the row is clicked",
|
|
364
|
-
"Add tab": "Add tab",
|
|
365
|
-
"Disable tabs": "Disable tabs",
|
|
366
|
-
Details: "Details",
|
|
367
|
-
"Edit form": "Edit form",
|
|
368
|
-
"Create form": "Create form",
|
|
369
|
-
"Form (Edit)": "Form (Edit)",
|
|
370
|
-
"Form (Add new)": "Form (Add new)",
|
|
371
|
-
"Edit tab": "Edit tab",
|
|
372
|
-
"Relationship blocks": "Relationship blocks",
|
|
373
|
-
"Select record": "Select record",
|
|
374
|
-
"Display name": "Display name",
|
|
375
|
-
"Select icon": "Select icon",
|
|
376
|
-
"Custom column name": "Custom column name",
|
|
377
|
-
"Edit description": "Edit description",
|
|
378
|
-
Required: "Required",
|
|
379
|
-
Unique: "Unique",
|
|
380
|
-
Primary: "Primary",
|
|
381
|
-
"Auto increment": "Auto increment",
|
|
382
|
-
"Label field": "Label field",
|
|
383
|
-
"Default is the ID field": "Default is the ID field",
|
|
384
|
-
"Set default sorting rules": "Set default sorting rules",
|
|
385
|
-
"Set validation rules": "Set validation rules",
|
|
386
|
-
"Max length": "Max length",
|
|
387
|
-
"Min length": "Min length",
|
|
388
|
-
Maximum: "Maximum",
|
|
389
|
-
Minimum: "Minimum",
|
|
390
|
-
"Max length must greater than min length": "Max length must greater than min length",
|
|
391
|
-
"Min length must less than max length": "Min length must less than max length",
|
|
392
|
-
"Maximum must greater than minimum": "Maximum must greater than minimum",
|
|
393
|
-
"Minimum must less than maximum": "Minimum must less than maximum",
|
|
394
|
-
"Validation rule": "Validation rule",
|
|
395
|
-
"Add validation rule": "Add validation rule",
|
|
396
|
-
Format: "Format",
|
|
397
|
-
"Regular expression": "Pattern",
|
|
398
|
-
"Error message": "Error message",
|
|
399
|
-
Length: "Length",
|
|
400
|
-
"The field value cannot be greater than ": "The field value cannot be greater than ",
|
|
401
|
-
"The field value cannot be less than ": "The field value cannot be less than ",
|
|
402
|
-
"The field value is not an integer number": "The field value is not an integer number",
|
|
403
|
-
"Set default value": "Set default value",
|
|
404
|
-
"Default value": "Default value",
|
|
405
|
-
"is before": "is before",
|
|
406
|
-
"is after": "is after",
|
|
407
|
-
"is on or after": "is on or after",
|
|
408
|
-
"is on or before": "is on or before",
|
|
409
|
-
"is between": "is between",
|
|
410
|
-
Upload: "Upload",
|
|
411
|
-
"Select level": "Select level",
|
|
412
|
-
Province: "Province",
|
|
413
|
-
City: "City",
|
|
414
|
-
Area: "Area",
|
|
415
|
-
Street: "Street",
|
|
416
|
-
Village: "Village",
|
|
417
|
-
"Must select to the last level": "Must select to the last level",
|
|
418
|
-
"Move {{title}} to": "Move {{title}} to",
|
|
419
|
-
"Target position": "Target position",
|
|
420
|
-
After: "After",
|
|
421
|
-
Before: "Before",
|
|
422
|
-
'Add {{type}} before "{{title}}"': 'Add {{type}} before "{{title}}"',
|
|
423
|
-
'Add {{type}} after "{{title}}"': 'Add {{type}} after "{{title}}"',
|
|
424
|
-
'Add {{type}} in "{{title}}"': 'Add {{type}} in "{{title}}"',
|
|
425
|
-
"Original name": "Original name",
|
|
426
|
-
"Custom name": "Custom name",
|
|
427
|
-
"Custom Title": "Custom Title",
|
|
428
|
-
Options: "Options",
|
|
429
|
-
"Option value": "Option value",
|
|
430
|
-
"Option label": "Option label",
|
|
431
|
-
Color: "Color",
|
|
432
|
-
"Background Color": "Background Color",
|
|
433
|
-
"Text Align": "Text Align",
|
|
434
|
-
"Add option": "Add option",
|
|
435
|
-
"Related collection": "Related collection",
|
|
436
|
-
"Allow linking to multiple records": "Allow linking to multiple records",
|
|
437
|
-
"Allow uploading multiple files": "Allow uploading multiple files",
|
|
438
|
-
"Configure calendar": "Configure calendar",
|
|
439
|
-
"Title field": "Title field",
|
|
440
|
-
"Custom title": "Custom title",
|
|
441
|
-
Daily: "Daily",
|
|
442
|
-
Weekly: "Weekly",
|
|
443
|
-
Monthly: "Monthly",
|
|
444
|
-
Yearly: "Yearly",
|
|
445
|
-
Repeats: "Repeats",
|
|
446
|
-
"Show lunar": "Show lunar",
|
|
447
|
-
"Start date field": "Start date field",
|
|
448
|
-
"End date field": "End date field",
|
|
449
|
-
Navigate: "Navigate",
|
|
450
|
-
Title: "Title",
|
|
451
|
-
Description: "Description",
|
|
452
|
-
"Select view": "Select view",
|
|
453
|
-
Reset: "Reset",
|
|
454
|
-
"Importable fields": "Importable fields",
|
|
455
|
-
"Exportable fields": "Exportable fields",
|
|
456
|
-
"Saved successfully": "Saved successfully",
|
|
457
|
-
Nickname: "Nickname",
|
|
458
|
-
"Sign in": "Sign in",
|
|
459
|
-
"Sign in via account": "Sign in via account",
|
|
460
|
-
"Sign in via phone": "Sign in via phone",
|
|
461
|
-
"Create an account": "Create an account",
|
|
462
|
-
"Sign up": "Sign up",
|
|
463
|
-
"Confirm password": "Confirm password",
|
|
464
|
-
"Log in with an existing account": "Log in with an existing account",
|
|
465
|
-
"Signed up successfully. It will jump to the login page.": "Signed up successfully. It will jump to the login page.",
|
|
466
|
-
"Password mismatch": "Password mismatch",
|
|
467
|
-
Users: "Users",
|
|
468
|
-
"Verification code": "Verification code",
|
|
469
|
-
"Send code": "Send code",
|
|
470
|
-
"Retry after {{count}} seconds": "Retry after {{count}} seconds",
|
|
471
|
-
Roles: "Roles",
|
|
472
|
-
"Add role": "Add role",
|
|
473
|
-
"Role name": "Role name",
|
|
474
|
-
Configure: "Configure",
|
|
475
|
-
"Configure permissions": "Configure permissions",
|
|
476
|
-
"Edit role": "Edit role",
|
|
477
|
-
"Action permissions": "Action permissions",
|
|
478
|
-
"Menu permissions": "Menu permissions",
|
|
479
|
-
"Menu item name": "Menu item name",
|
|
480
|
-
"Allow access": "Allow access",
|
|
481
|
-
"Action name": "Action name",
|
|
482
|
-
"Allow action": "Allow action",
|
|
483
|
-
"Action scope": "Action scope",
|
|
484
|
-
"Operate on new data": "Operate on new data",
|
|
485
|
-
"Operate on existing data": "Operate on existing data",
|
|
486
|
-
Yes: "Yes",
|
|
487
|
-
No: "No",
|
|
488
|
-
Red: "Red",
|
|
489
|
-
Magenta: "Magenta",
|
|
490
|
-
Volcano: "Volcano",
|
|
491
|
-
Orange: "Orange",
|
|
492
|
-
Gold: "Gold",
|
|
493
|
-
Lime: "Lime",
|
|
494
|
-
Green: "Green",
|
|
495
|
-
Cyan: "Cyan",
|
|
496
|
-
Blue: "Blue",
|
|
497
|
-
"Geek blue": "Geek blue",
|
|
498
|
-
Purple: "Purple",
|
|
499
|
-
Default: "Default",
|
|
500
|
-
"Add card": "Add card",
|
|
501
|
-
"edit title": "edit title",
|
|
502
|
-
"Turn pages": "Turn pages",
|
|
503
|
-
Others: "Others",
|
|
504
|
-
"Other records": "Other records",
|
|
505
|
-
"Save as template": "Save as template",
|
|
506
|
-
"Save as block template": "Save as block template",
|
|
507
|
-
"Block templates": "Block templates",
|
|
508
|
-
"Block template": "Block template",
|
|
509
|
-
"Convert template to duplicate": "Convert template to duplicate",
|
|
510
|
-
"Template name": "Template name",
|
|
511
|
-
"Block type": "Block type",
|
|
512
|
-
"No blocks to connect": "No blocks to connect",
|
|
513
|
-
"Action column": "Action column",
|
|
514
|
-
"Records per page": "Records per page",
|
|
515
|
-
"(Fields only)": "(Fields only)",
|
|
516
|
-
"Button title": "Button title",
|
|
517
|
-
"Button icon": "Button icon",
|
|
518
|
-
"Submitted successfully": "Submitted successfully",
|
|
519
|
-
"Operation succeeded": "Operation succeeded",
|
|
520
|
-
"Operation failed": "Operation failed",
|
|
521
|
-
"Open mode": "Open mode",
|
|
522
|
-
"Popup size": "Popup size",
|
|
523
|
-
Small: "Small",
|
|
524
|
-
Middle: "Middle",
|
|
525
|
-
Large: "Large",
|
|
526
|
-
Size: "Size",
|
|
527
|
-
Oversized: "Oversized",
|
|
528
|
-
Auto: "Auto",
|
|
529
|
-
"Object Fit": "Object Fit",
|
|
530
|
-
Cover: "Cover",
|
|
531
|
-
Fill: "Fill",
|
|
532
|
-
Contain: "Contain",
|
|
533
|
-
"Scale Down": "Scale Down",
|
|
534
|
-
"Menu item title": "Menu item title",
|
|
535
|
-
"Menu item icon": "Menu item icon",
|
|
536
|
-
Target: "Target",
|
|
537
|
-
Position: "Position",
|
|
538
|
-
"Insert before": "Insert before",
|
|
539
|
-
"Insert after": "Insert after",
|
|
540
|
-
"UI Editor": "UI Editor",
|
|
541
|
-
ASC: "ASC",
|
|
542
|
-
DESC: "DESC",
|
|
543
|
-
"Add sort field": "Add sort field",
|
|
544
|
-
ID: "ID",
|
|
545
|
-
"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.",
|
|
546
|
-
Drawer: "Drawer",
|
|
547
|
-
Dialog: "Dialog",
|
|
548
|
-
"Delete action": "Delete action",
|
|
549
|
-
"Custom column title": "Custom column title",
|
|
550
|
-
"Column title": "Column title",
|
|
551
|
-
"Original title: ": "Original title: ",
|
|
552
|
-
"Delete table column": "Delete table column",
|
|
553
|
-
"Skip required validation": "Skip required validation",
|
|
554
|
-
"Form values": "Form values",
|
|
555
|
-
"Fields values": "Fields values",
|
|
556
|
-
"The field has been deleted": "The field has been deleted",
|
|
557
|
-
"When submitting the following fields, the saved values are": "When submitting the following fields, the saved values are",
|
|
558
|
-
"After successful submission": "After successful submission",
|
|
559
|
-
Then: "Then",
|
|
560
|
-
"Stay on current page": "Stay on current page",
|
|
561
|
-
"Redirect to": "Redirect to",
|
|
562
|
-
"Save action": "Save action",
|
|
563
|
-
Exists: "Exists",
|
|
564
|
-
"Add condition": "Add condition",
|
|
565
|
-
"Add condition group": "Add condition group",
|
|
566
|
-
Meet: "Meet",
|
|
567
|
-
"conditions in the group": "conditions in the group",
|
|
568
|
-
Comparison: "Comparison",
|
|
569
|
-
exists: "exists",
|
|
570
|
-
"not exists": "not exists",
|
|
571
|
-
Style: "Style",
|
|
572
|
-
"=": "=",
|
|
573
|
-
"\u2260": "\u2260",
|
|
574
|
-
">": ">",
|
|
575
|
-
"\u2265": "\u2265",
|
|
576
|
-
"<": "<",
|
|
577
|
-
"\u2264": "\u2264",
|
|
578
|
-
"Role UID": "Role UID",
|
|
579
|
-
Precision: "Precision",
|
|
580
|
-
"Formula mode": "Formula mode",
|
|
581
|
-
Expression: "Expression",
|
|
582
|
-
"Input +, -, *, /, ( ) to calculate, input @ to open field variables.": "Input +, -, *, /, ( ) to calculate, input @ to open field variables.",
|
|
583
|
-
"Formula error.": "Formula error.",
|
|
584
|
-
"Rich Text": "Rich Text",
|
|
585
|
-
"Junction collection": "Junction collection",
|
|
586
|
-
"Leave it blank, unless you need a custom intermediate table": "Leave it blank, unless you need a custom intermediate table",
|
|
587
|
-
Fields: "Fields",
|
|
588
|
-
"Edit field title": "Edit field title",
|
|
589
|
-
"Field title": "Field title",
|
|
590
|
-
"Original field title: ": "Original field title: ",
|
|
591
|
-
"Edit tooltip": "Edit tooltip",
|
|
592
|
-
"Delete field": "Delete field",
|
|
593
|
-
"Select collection": "Select collection",
|
|
594
|
-
"Blank block": "Blank block",
|
|
595
|
-
"Duplicate template": "Duplicate template",
|
|
596
|
-
"Reference template": "Reference template",
|
|
597
|
-
"Inherited template": "Inherited template",
|
|
598
|
-
"Create calendar block": "Create calendar block",
|
|
599
|
-
"Create kanban block": "Create kanban block",
|
|
600
|
-
"Grouping field": "Grouping field",
|
|
601
|
-
"Single select and radio fields can be used as the grouping field": "Single select and radio fields can be used as the grouping field",
|
|
602
|
-
"Tab name": "Tab name",
|
|
603
|
-
"Current record blocks": "Current record blocks",
|
|
604
|
-
"Popup message": "Popup message",
|
|
605
|
-
"Delete role": "Delete role",
|
|
606
|
-
"Role display name": "Role display name",
|
|
607
|
-
"Default role": "Default role",
|
|
608
|
-
"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.",
|
|
609
|
-
"Allows configuration of the whole system, including UI, collections, permissions, etc.": "Allows configuration of the whole system, including UI, collections, permissions, etc.",
|
|
610
|
-
"New menu items are allowed to be accessed by default.": "New menu items are allowed to be accessed by default.",
|
|
611
|
-
"Global permissions": "Global permissions",
|
|
612
|
-
"General permissions": "General permissions",
|
|
613
|
-
"Global action permissions": "Global action permissions",
|
|
614
|
-
"General action permissions": "General action permissions",
|
|
615
|
-
"Plugin settings permissions": "Plugin settings permissions",
|
|
616
|
-
"Allow to desgin pages": "Allow to desgin pages",
|
|
617
|
-
"Allow to manage plugins": "Allow to manage plugins",
|
|
618
|
-
"Allow to configure plugins": "Allow to configure plugins",
|
|
619
|
-
"Allows to configure interface": "Allows to configure interface",
|
|
620
|
-
"Allows to install, activate, disable plugins": "Allows to install, activate, disable plugins",
|
|
621
|
-
"Allows to configure plugins": "Allows to configure plugins",
|
|
622
|
-
"Action display name": "Action display name",
|
|
623
|
-
Allow: "Allow",
|
|
624
|
-
"Data scope": "Data scope",
|
|
625
|
-
"Action on new records": "Action on new records",
|
|
626
|
-
"Action on existing records": "Action on existing records",
|
|
627
|
-
"All records": "All records",
|
|
628
|
-
"Own records": "Own records",
|
|
629
|
-
"Permission policy": "Permission policy",
|
|
630
|
-
Individual: "Individual",
|
|
631
|
-
General: "General",
|
|
632
|
-
Accessible: "Accessible",
|
|
633
|
-
"Configure permission": "Configure permission",
|
|
634
|
-
"Action permission": "Action permission",
|
|
635
|
-
"Field permission": "Field permission",
|
|
636
|
-
"Scope name": "Scope name",
|
|
637
|
-
"Unsaved changes": "Unsaved changes",
|
|
638
|
-
"Are you sure you don't want to save?": "Are you sure you don't want to save?",
|
|
639
|
-
Dragging: "Dragging",
|
|
640
|
-
Popup: "Popup",
|
|
641
|
-
"Column Settings": "Column Settings",
|
|
642
|
-
visible: "visible",
|
|
643
|
-
"Pin to left": "Pin to left",
|
|
644
|
-
"Pin to right": "Pin to right",
|
|
645
|
-
Unpinned: "Unpinned",
|
|
646
|
-
"Fixed to the left": "Fixed to the left",
|
|
647
|
-
"Fixed to the right": "Fixed to the right",
|
|
648
|
-
"Not Fixed": "Not fixed",
|
|
649
|
-
"Trigger workflow": "Trigger workflow",
|
|
650
|
-
"Request API": "Request API",
|
|
651
|
-
"Assign field values": "Assign field values",
|
|
652
|
-
"Constant value": "Constant value",
|
|
653
|
-
"Dynamic value": "Dynamic value",
|
|
654
|
-
"Current user": "Current user",
|
|
655
|
-
"Current role": "Current role",
|
|
656
|
-
"Current record": "Current record",
|
|
657
|
-
"Current collection": "Current collection",
|
|
658
|
-
"Other collections": "Other collections",
|
|
659
|
-
"Current popup record": "Current popup record",
|
|
660
|
-
"Parent popup record": "Parent popup record",
|
|
661
|
-
"Associated records": "Associated records",
|
|
662
|
-
"Parent record": "Parent record",
|
|
663
|
-
"Current time": "Current time",
|
|
664
|
-
"System variables": "System variables",
|
|
665
|
-
"Date variables": "Date variables",
|
|
666
|
-
"Message popup close method": "Message popup close method",
|
|
667
|
-
"Automatic close": "Automatic close",
|
|
668
|
-
"Manually close": "Manually close",
|
|
669
|
-
"After successful update": "After successful update",
|
|
670
|
-
"Save record": "Save record",
|
|
671
|
-
"Updated successfully": "Updated successfully",
|
|
672
|
-
"After successful save": "After successful save",
|
|
673
|
-
"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.",
|
|
674
|
-
"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.",
|
|
675
|
-
"Button background color": "Button background color",
|
|
676
|
-
Highlight: "Highlight",
|
|
677
|
-
"Danger red": "Danger red",
|
|
678
|
-
"Custom request": "Custom request",
|
|
679
|
-
"Request settings": "Request settings",
|
|
680
|
-
"Request URL": "Request URL",
|
|
681
|
-
"Request method": "Request method",
|
|
682
|
-
"Request query parameters": "Request query parameters",
|
|
683
|
-
"Request headers": "Request headers",
|
|
684
|
-
"Request body": "Request body",
|
|
685
|
-
"Request success": "Request success",
|
|
686
|
-
"Invalid JSON format": "Invalid JSON format",
|
|
687
|
-
"After successful request": "After successful request",
|
|
688
|
-
"Add exportable field": "Add exportable field",
|
|
689
|
-
"Audit logs": "Audit logs",
|
|
690
|
-
"Record ID": "Record ID",
|
|
691
|
-
User: "User",
|
|
692
|
-
Field: "Field",
|
|
693
|
-
Select: "Select",
|
|
694
|
-
"Select field": "Select field",
|
|
695
|
-
"Field value changes": "Field value changes",
|
|
696
|
-
"One to one (has one)": "One to one (has one)",
|
|
697
|
-
"One to one (belongs to)": "One to one (belongs to)",
|
|
698
|
-
"Use the same time zone (GMT) for all users": "Use the same time zone (GMT) for all users",
|
|
699
|
-
"Province/city/area name": "Province/city/area name",
|
|
700
|
-
"Enabled languages": "Enabled languages",
|
|
701
|
-
"View all plugins": "View all plugins",
|
|
702
|
-
Print: "Print",
|
|
703
|
-
Done: "Done",
|
|
704
|
-
"Sign up successfully, and automatically jump to the sign in page": "Sign up successfully, and automatically jump to the sign in page",
|
|
705
|
-
"File manager": "File manager",
|
|
706
|
-
ACL: "ACL",
|
|
707
|
-
"Collection manager": "Collection manager",
|
|
708
|
-
"Plugin manager": "Plugin manager",
|
|
709
|
-
Local: "Local",
|
|
710
|
-
"Built-in": "Built-in",
|
|
711
|
-
Marketplace: "Marketplace",
|
|
712
|
-
"Add plugin": "Add plugin",
|
|
713
|
-
"Plugin source": "Plugin source",
|
|
714
|
-
Upgrade: "Upgrade",
|
|
715
|
-
"Plugin dependencies check failed": "Plugin dependencies check failed",
|
|
716
|
-
"More details": "More details",
|
|
717
|
-
"Upload new version": "Upload new version",
|
|
718
|
-
Version: "Version",
|
|
719
|
-
"Npm package": "Npm package",
|
|
720
|
-
"Npm package name": "Npm package name",
|
|
721
|
-
"Upload plugin": "Upload plugin",
|
|
722
|
-
"Official plugin": "Official plugin",
|
|
723
|
-
"Add type": "Add type",
|
|
724
|
-
Changelog: "Changelog",
|
|
725
|
-
"Dependencies check": "Dependencies check",
|
|
726
|
-
"Update plugin": "Update plugin",
|
|
727
|
-
Installing: "Installing",
|
|
728
|
-
"The deletion was successful.": "The deletion was successful.",
|
|
729
|
-
"Plugin Zip File": "Plugin Zip File",
|
|
730
|
-
"Compressed file url": "Compressed file url",
|
|
731
|
-
"Last updated": "Last updated",
|
|
732
|
-
PackageName: "PackageName",
|
|
733
|
-
DisplayName: "DisplayName",
|
|
734
|
-
Readme: "Readme",
|
|
735
|
-
"Dependencies compatibility check": "Dependencies compatibility check",
|
|
736
|
-
"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.",
|
|
737
|
-
"Version range": "Version range",
|
|
738
|
-
"Plugin's version": "Plugin's version",
|
|
739
|
-
Result: "Result",
|
|
740
|
-
"No CHANGELOG.md file": "No CHANGELOG.md file",
|
|
741
|
-
"No README.md file": "No README.md file",
|
|
742
|
-
Homepage: "Homepage",
|
|
743
|
-
"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",
|
|
744
|
-
"Dependencies check failed, can't enable.": "Dependencies check failed, can't enable.",
|
|
745
|
-
"Plugin starting...": "Plugin starting...",
|
|
746
|
-
"Plugin stopping...": "Plugin stopping...",
|
|
747
|
-
"Are you sure to delete this plugin?": "Are you sure to delete this plugin?",
|
|
748
|
-
"Are you sure to disable this plugin?": "Are you sure to disable this plugin?",
|
|
749
|
-
"re-download file": "re-download file",
|
|
750
|
-
"Not enabled": "Not enabled",
|
|
751
|
-
"Search plugin": "Search plugin",
|
|
752
|
-
Author: "Author",
|
|
753
|
-
"Plugin loading failed. Please check the server logs.": "Plugin loading failed. Please check the server logs.",
|
|
754
|
-
"Coming soon...": "Coming soon...",
|
|
755
|
-
"All plugin settings": "All plugin settings",
|
|
756
|
-
Bookmark: "Bookmark",
|
|
757
|
-
"Manage all settings": "Manage all settings",
|
|
758
|
-
"Create inverse field in the target collection": "Create inverse field in the target collection",
|
|
759
|
-
"Inverse field name": "Inverse field name",
|
|
760
|
-
"Inverse field display name": "Inverse field display name",
|
|
761
|
-
"Bulk update": "Bulk update",
|
|
762
|
-
"After successful bulk update": "After successful bulk update",
|
|
763
|
-
"Bulk edit": "Bulk edit",
|
|
764
|
-
"Data will be updated": "Data will be updated",
|
|
765
|
-
Selected: "Selected",
|
|
766
|
-
All: "All",
|
|
767
|
-
"Update selected data?": "Update selected data?",
|
|
768
|
-
"Update all data?": "Update all data?",
|
|
769
|
-
"Remains the same": "Remains the same",
|
|
770
|
-
"Changed to": "Changed to",
|
|
771
|
-
Clear: "Clear",
|
|
772
|
-
"Add attach": "Add attach",
|
|
773
|
-
"Please select the records to be updated": "Please select the records to be updated",
|
|
774
|
-
Selector: "Selector",
|
|
775
|
-
Inner: "Inner",
|
|
776
|
-
"Search and select collection": "Search and select collection",
|
|
777
|
-
"Please fill in the iframe URL": "Please fill in the iframe URL",
|
|
778
|
-
"Fix block": "Fix block",
|
|
779
|
-
"Plugin name": "Plugin name",
|
|
780
|
-
"Plugin tab name": "Plugin tab name",
|
|
781
|
-
AutoGenId: "Auto-generated ID field",
|
|
782
|
-
CreatedBy: "CreatedBy",
|
|
783
|
-
UpdatedBy: "UpdatedBy",
|
|
784
|
-
CreatedAt: "CreatedAt",
|
|
785
|
-
UpdatedAt: "UpdatedAt",
|
|
786
|
-
"Column width": "Column width",
|
|
787
|
-
Sortable: "Sortable",
|
|
788
|
-
"Enable link": "Enable link",
|
|
789
|
-
"Auto focus": "Auto focus",
|
|
790
|
-
"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>",
|
|
791
|
-
"Render Failed": "Render Failed",
|
|
792
|
-
"App error": "App error",
|
|
793
|
-
Feedback: "Feedback",
|
|
794
|
-
"Try again": "Try again",
|
|
795
|
-
"Download logs": "Download logs",
|
|
796
|
-
"Data template": "Data template",
|
|
797
|
-
Duplicate: "Duplicate",
|
|
798
|
-
Duplicating: "Duplicating",
|
|
799
|
-
"Duplicate mode": "Duplicate mode",
|
|
800
|
-
"Quick duplicate": "Quick duplicate",
|
|
801
|
-
"Duplicate and continue": "Duplicate and continue",
|
|
802
|
-
"Please configure the duplicate fields": "Please configure the duplicate fields",
|
|
803
|
-
Add: "Add",
|
|
804
|
-
"Add new mode": "Add new mode",
|
|
805
|
-
"Quick add": "Quick add",
|
|
806
|
-
"Modal add": "Modal add",
|
|
807
|
-
"Save mode": "Save mode",
|
|
808
|
-
"First or create": "First or create",
|
|
809
|
-
"Update or create": "Update or create",
|
|
810
|
-
"Find by the following fields": "Find by the following fields",
|
|
811
|
-
Create: "Create",
|
|
812
|
-
"Current form": "Current form",
|
|
813
|
-
"Current object": "Current object",
|
|
814
|
-
"Linkage with form fields": "Linkage with form fields",
|
|
815
|
-
"Allow add new, update and delete actions": "Allow add new, update and delete actions",
|
|
816
|
-
"Date display format": "Date display format",
|
|
817
|
-
"Assign data scope for the template": "Assign data scope for the template",
|
|
818
|
-
"Table selected records": "Table selected records",
|
|
819
|
-
Tag: "Tag",
|
|
820
|
-
"Tag color field": "Tag color field",
|
|
821
|
-
"Sync successfully": "Sync successfully",
|
|
822
|
-
"Sync from form fields": "Sync from form fields",
|
|
823
|
-
"Select all": "Select all",
|
|
824
|
-
Restart: "Restart",
|
|
825
|
-
"Restart application": "Restart application",
|
|
826
|
-
"Cascade Select": "Cascade Select",
|
|
827
|
-
Execute: "Execute",
|
|
828
|
-
"Please use a valid SELECT or WITH AS statement": "Please use a valid SELECT or WITH AS statement",
|
|
829
|
-
"Please confirm the SQL statement first": "Please confirm the SQL statement first",
|
|
830
|
-
"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",
|
|
831
|
-
"Sign in with another account": "Sign in with another account",
|
|
832
|
-
"Return to the main application": "Return to the main application",
|
|
833
|
-
"Permission deined": "Permission denied",
|
|
834
|
-
loading: "loading",
|
|
835
|
-
"name is required": "name is required",
|
|
836
|
-
"data source": "data source",
|
|
837
|
-
"Data source": "Data source",
|
|
838
|
-
DataSource: "DataSource",
|
|
839
|
-
'The {{type}} "{{name}}" may have been deleted. Please remove this {{blockType}}.': 'The {{type}} "{{name}}" may have been deleted. Please remove this {{blockType}}.',
|
|
840
|
-
"Preset fields": "Preset fields",
|
|
841
|
-
"Home page": "Home page",
|
|
842
|
-
Handbook: "Handbook",
|
|
843
|
-
License: "License",
|
|
844
|
-
"Generic properties": "Generic properties",
|
|
845
|
-
"Specific properties": "Specific properties",
|
|
846
|
-
"Used for drag and drop sorting scenarios, supporting grouping sorting": "Used for drag and drop sorting scenarios, supporting grouping sorting",
|
|
847
|
-
"Grouped sorting": "Grouped sorting",
|
|
848
|
-
"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.",
|
|
849
|
-
Departments: "Departments",
|
|
850
|
-
"Main department": "Main department",
|
|
851
|
-
"Department name": "Department name",
|
|
852
|
-
"Superior department": "Superior department",
|
|
853
|
-
Owners: "Owners",
|
|
854
|
-
"Plugin settings": "Plugin settings",
|
|
855
|
-
Menu: "Menu",
|
|
856
|
-
"Drag and drop sorting field": "Drag and drop sorting field",
|
|
857
|
-
'This variable has been deprecated and can be replaced with "Current form"': 'This variable has been deprecated and can be replaced with "Current form"',
|
|
858
|
-
"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.",
|
|
859
|
-
"URL search params": "URL search params",
|
|
860
|
-
"Expand All": "Expand All",
|
|
861
|
-
Search: "Search",
|
|
862
|
-
"Clear default value": "Clear default value",
|
|
863
|
-
"Open in new window": "Open in new window",
|
|
864
|
-
"Sorry, the page you visited does not exist.": "Sorry, the page you visited does not exist.",
|
|
865
|
-
"is none of": "is none of",
|
|
866
|
-
"is any of": "is any of",
|
|
867
|
-
"Plugin dependency version mismatch": "Plugin dependency version mismatch",
|
|
868
|
-
"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?",
|
|
869
|
-
"Allow multiple selection": "Allow multiple selection",
|
|
870
|
-
"Parent object": "Parent object",
|
|
871
|
-
"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",
|
|
872
|
-
"Enable secondary confirmation": "Enable secondary confirmation",
|
|
873
|
-
Notification: "Notification",
|
|
874
|
-
"Ellipsis overflow content": "Ellipsis overflow content",
|
|
875
|
-
"Hide column": "Hide column",
|
|
876
|
-
"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.",
|
|
877
|
-
"Unauthenticated. Please sign in to continue.": "Unauthenticated. Please sign in to continue.",
|
|
878
|
-
"User not found. Please sign in again to continue.": "User not found. Please sign in again to continue.",
|
|
879
|
-
"Your session has expired. Please sign in again.": "Your session has expired. Please sign in again.",
|
|
880
|
-
"User password changed, please signin again.": "User password changed, please signin again.",
|
|
881
|
-
"Desktop routes": "Desktop routes",
|
|
882
|
-
"Route permissions": "Route permissions",
|
|
883
|
-
"New routes are allowed to be accessed by default": "New routes are allowed to be accessed by default",
|
|
884
|
-
"Route name": "Route name",
|
|
885
|
-
"Mobile routes": "Mobile routes",
|
|
886
|
-
"Show in menu": "Show in menu",
|
|
887
|
-
"Hide in menu": "Hide in menu",
|
|
888
|
-
Path: "Path",
|
|
889
|
-
Type: "Type",
|
|
890
|
-
Access: "Access",
|
|
891
|
-
Routes: "Routes",
|
|
892
|
-
"Add child route": "Add child",
|
|
893
|
-
"Delete routes": "Delete routes",
|
|
894
|
-
"Delete route": "Delete route",
|
|
895
|
-
"Are you sure you want to hide these routes in menu?": "Are you sure you want to hide these routes in menu?",
|
|
896
|
-
"Are you sure you want to show these routes in menu?": "Are you sure you want to show these routes in menu?",
|
|
897
|
-
"Are you sure you want to hide this menu?": "Are you sure you want to hide this menu?",
|
|
898
|
-
"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.",
|
|
899
|
-
"If selected, the page will display Tab pages.": "If selected, the page will display Tab pages.",
|
|
900
|
-
"If selected, the route will be displayed in the menu.": "If selected, the route will be displayed in the menu.",
|
|
901
|
-
"Are you sure you want to hide this tab?": "Are you sure you want to hide this tab?",
|
|
902
|
-
"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.",
|
|
903
|
-
"No pages yet, please configure first": "No pages yet, please configure first",
|
|
904
|
-
'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',
|
|
905
|
-
"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.",
|
|
906
|
-
Deprecated: "Deprecated",
|
|
907
|
-
"Full permissions": "Full permissions",
|
|
908
|
-
"Refresh data blocks": "Refresh data blocks",
|
|
909
|
-
"Select data blocks to refresh": "Select data blocks to refresh",
|
|
910
|
-
"After successful submission, the selected data blocks will be automatically refreshed.": "After successful submission, the selected data blocks will be automatically refreshed.",
|
|
911
|
-
"Reset link expiration": "Reset link expiration",
|
|
912
|
-
"Imperative Drawer": "Imperative Drawer",
|
|
913
|
-
"Click event": "Click event",
|
|
914
|
-
"Form duplicate": "Form duplicate",
|
|
915
|
-
"Filter configuration": "Filter configuration",
|
|
916
|
-
"Default filter conditions": "Default filter conditions",
|
|
917
|
-
"No resource selected for deletion": "No resource selected for deletion",
|
|
918
|
-
"No records selected for deletion": "No records selected for deletion",
|
|
919
|
-
"Selected records deleted successfully": "Selected records deleted successfully",
|
|
920
|
-
"No resource selected for bulk edit": "No resource selected for bulk edit",
|
|
921
|
-
"No records selected for bulk edit": "No records selected for bulk edit",
|
|
922
|
-
Successfully: "Successfully",
|
|
923
|
-
"No resource selected for refresh": "No resource selected for refresh",
|
|
924
|
-
"No resource or record selected for deletion": "No resource or record selected for deletion",
|
|
925
|
-
"Record deleted successfully": "Record deleted successfully",
|
|
926
|
-
"Please select non-filterable fields": "Please select non-filterable fields",
|
|
927
|
-
"Update record action": "Update record",
|
|
928
|
-
"Basic configuration": "Basic configuration",
|
|
929
|
-
"Configure page": "Configure page",
|
|
930
|
-
"Page Title": "Page Title",
|
|
931
|
-
"Enter page title": "Enter page title",
|
|
932
|
-
"Enable tabs": "Enable tabs",
|
|
933
|
-
"HTML content": "HTML content",
|
|
934
|
-
Action: "Action",
|
|
935
|
-
"General configuration": "General configuration",
|
|
936
|
-
"Open mode configuration": "Open mode configuration",
|
|
937
|
-
Medium: "Medium",
|
|
938
|
-
"Refresh data after execution": "Refresh data after execution",
|
|
939
|
-
"Enable refresh": "Enable refresh",
|
|
940
|
-
"Data refreshed successfully": "Data refreshed successfully",
|
|
941
|
-
"Secondary confirmation": "Secondary confirmation",
|
|
942
|
-
Content: "Content",
|
|
943
|
-
"Edit link": "Edit link",
|
|
944
|
-
URL: "URL",
|
|
945
|
-
"Do not concatenate search params in the URL": "Do not concatenate search params in the URL",
|
|
946
|
-
"Search parameters": "Search parameters",
|
|
947
|
-
"Add parameter": "Add parameter",
|
|
948
|
-
"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",
|
|
949
|
-
'"Content-Type" only support "application/json", and no need to specify': '"Content-Type" only support "application/json", and no need to specify',
|
|
950
|
-
"Add request header": "Add request header",
|
|
951
|
-
"Input request data": "Input request data",
|
|
952
|
-
"Only support standard JSON data": "Only support standard JSON data",
|
|
953
|
-
"Timeout config": "Timeout config",
|
|
954
|
-
"Response type": "Response type",
|
|
955
|
-
"Action after successful submission": "Action after successful submission",
|
|
956
|
-
"Stay on the current popup or page": "Stay on the current popup or page",
|
|
957
|
-
"Return to the previous popup or page": "Return to the previous popup or page",
|
|
958
|
-
"Actions column": "Actions column",
|
|
959
|
-
"Data Source Key": "Data Source Key",
|
|
960
|
-
"Enter data source key": "Enter data source key",
|
|
961
|
-
"Collection Name": "Collection Name",
|
|
962
|
-
"Enter collection name": "Enter collection name",
|
|
963
|
-
"Edit page size": "Edit page size",
|
|
964
|
-
"Set data scope": "Set data scope",
|
|
965
|
-
"Edit Title": "Edit Title",
|
|
966
|
-
"Enter field title": "Enter field title",
|
|
967
|
-
"Display label": "Display label",
|
|
968
|
-
ReadOnly: "ReadOnly",
|
|
969
|
-
ReadPretty: "ReadPretty",
|
|
970
|
-
Modal: "Modal",
|
|
971
|
-
Rows: "Rows",
|
|
972
|
-
"Configure rows": "Configure rows",
|
|
973
|
-
Sizes: "Sizes",
|
|
974
|
-
"Configure the rows and columns of the grid.": "Configure the rows and columns of the grid.",
|
|
975
|
-
"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.",
|
|
976
|
-
"Event selected": "Event selected",
|
|
977
|
-
"Double click": "Double click",
|
|
978
|
-
Start: "Start",
|
|
979
|
-
End: "End",
|
|
980
|
-
"Title accessor": "Title accessor",
|
|
981
|
-
"Enter title accessor": "Enter title accessor",
|
|
982
|
-
"Start accessor": "Start accessor",
|
|
983
|
-
"Enter start accessor": "Enter start accessor",
|
|
984
|
-
"End accessor": "End accessor",
|
|
985
|
-
"Enter end accessor": "Enter end accessor",
|
|
986
|
-
Recommended: "Recommended",
|
|
987
|
-
"Password Options": "Password Options",
|
|
988
|
-
Placeholder: "Placeholder",
|
|
989
|
-
"Enter placeholder text": "Enter placeholder text",
|
|
990
|
-
"Check strength": "Check strength",
|
|
991
|
-
"N/A": "N/A",
|
|
992
|
-
"No form available for reset.": "No form available for reset.",
|
|
993
|
-
"No form available for submission.": "No form available for submission.",
|
|
994
|
-
"Collapse button": "Collapse",
|
|
995
|
-
"Expand button": "Expand"
|
|
996
|
-
};
|