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