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