@nocobase/client 2.0.0-alpha.6 → 2.0.0-alpha.60

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