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

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 +25990 -18545
  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-MGQtxS4n.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
@@ -1,1072 +1,1547 @@
1
- module.exports = {
2
- "Display <1><0>10</0><1>20</1><2>50</2><3>100</3></1> items per page": "Toon <1><0>10</0><1>20</1><2>50</2><3>100</3></1> items per pagina",
3
- "Page number": "Paginanummer",
4
- "Page size": "Paginagrootte",
5
- "Meet <1><0>All</0><1>Any</1></1> conditions in the group": "Voldoe aan <1><0>Alle</0><1>Een</1></1> voorwaarde(n) in de groep",
6
- "Open in<1><0>Modal</0><1>Drawer</1><2>Window</2></1>": "Open in<1><0>Modal</0><1>Drawer</1><2>Venster</2></1>",
7
- "{{count}} filter items": "{{count}} filter items",
8
- "{{count}} more items": "{{count}} meer items",
9
- "Total {{count}} items": "Totaal {{count}} items",
10
- Today: "Vandaag",
11
- Yesterday: "Gisteren",
12
- Tomorrow: "Morgen",
13
- Month: "Maand",
14
- Week: "Week",
15
- "This week": "Deze week",
16
- "This month": "Deze maand",
17
- "This year": "Dit jaar",
18
- "Next year": "Volgend jaar",
19
- "Last week": "Vorige week",
20
- "Next week": "Volgende week",
21
- "Last month": "Vorige maand",
22
- "Next month": "Volgende maand",
23
- "Last quarter": "Vorig kwartaal",
24
- "This quarter": "Dit kwartaal",
25
- "Next quarter": "Volgend kwartaal",
26
- "Last year": "Vorig jaar",
27
- "Last 7 days": "Laatste 7 dagen",
28
- "Last 30 days": "Laatste 30 dagen",
29
- "Last 90 days": "Laatste 90 dagen",
30
- "Next 7 days": "Volgende 7 dagen",
31
- "Next 30 days": "Volgende 30 dagen",
32
- "Next 90 days": "Volgende 90 dagen",
33
- "Work week": "Werkweek",
34
- Day: "Dag",
35
- Agenda: "Agenda",
36
- Date: "Datum",
37
- Time: "Tijd",
38
- Event: "Gebeurtenis",
39
- None: "Geen",
40
- Unconnected: "Niet verbonden",
41
- "System settings": "Systeeminstellingen",
42
- "System title": "Systeemtitel",
43
- Setting: "Instelling",
44
- Settings: "Instellingen",
45
- Enable: "Inschakelen",
46
- Disable: "Uitschakelen",
47
- On: "Aan",
48
- Off: "Uit",
49
- Logo: "Logo",
50
- "Add menu item": "Menu-item toevoegen",
51
- Page: "Pagina",
52
- Tab: "Tab",
53
- Name: "Naam",
54
- Icon: "Icoon",
55
- Group: "Groep",
56
- Link: "Link",
57
- "Save conditions": "Voorwaarden opslaan",
58
- "Edit menu item": "Menu-item bewerken",
59
- "Move to": "Verplaats naar",
60
- "Insert left": "Links invoegen",
61
- "Insert right": "Rechts invoegen",
62
- "Insert inner": "Binnenkant invoegen",
63
- Delete: "Verwijder",
64
- Disassociate: "Loskoppelen",
65
- "Disassociate record": "Record loskoppelen",
66
- "Are you sure you want to disassociate it?": "Weet je zeker dat je het wil loskoppelen?",
67
- "UI editor": "UI-editor",
68
- Collection: "Collectie",
69
- "Collection selector": "Collectie selector",
70
- "Providing certain collections as options for users, typically used in polymorphic or inheritance scenarios": "Bepaalde collecties aanbieden als opties voor gebruikers, meestal gebruikt in polymorfe of erfelijkheidsscenario's",
71
- "Collections & Fields": "Collecties & Velden",
72
- "All collections": "Alle collecties",
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)": "(Alleen velden)",
4
+ "(currently not effective in sub-forms/sub-tables)": "(currently not effective in sub-forms/sub-tables)",
5
+ "12 hour": "12 uur",
6
+ "24 hour": "24 uur",
7
+ "<": "<",
8
+ "=": "=",
9
+ ">": ">",
10
+ "ACL": "Toegangscontrolelijst",
11
+ "ASC": "Oplopend",
12
+ "Access": "Toegang",
13
+ "Access control": "Toegangscontrole",
14
+ "Accessible": "Toegankelijk",
15
+ "Accuracy": "Nauwkeurigheid",
16
+ "Action": "Actie",
17
+ "Action after successful submission": "Action after successful submission",
18
+ "Action column": "Actiekolom",
19
+ "Action display name": "Actieweergavenaam",
20
+ "Action logs": "Actielogs",
21
+ "Action name": "Actienaam",
22
+ "Action on existing records": "Actie op bestaande records",
23
+ "Action on new records": "Actie op nieuwe records",
24
+ "Action permission": "Actierecht",
25
+ "Action permissions": "Actierechten",
26
+ "Action scope": "Actieomvang",
27
+ "Action type": "Actietype",
28
+ "Actions": "Acties",
29
+ "Actions column": "Actions column",
30
+ "Add": "Toevoegen",
31
+ "Add & Update": "Add & Update",
32
+ "Add Markdown": "Markdown toevoegen",
33
+ "Add action": "Add action",
34
+ "Add attach": "Bijlage toevoegen",
35
+ "Add block": "Blok toevoegen",
36
+ "Add card": "Kaart toevoegen",
73
37
  "Add category": "Categorie toevoegen",
74
- "Enable child collections": "Onderliggende collecties inschakelen",
75
- "Allow adding records to the current collection": "Toestaan \u200B\u200Bdat records aan de huidige collectie worden toegevoegd",
76
- "Delete category": "Categorie verwijderen",
77
- "Edit category": "Categorie bewerken",
78
- "Collection category": "Collectie categorie",
79
- "Collection template": "Collectie sjabloon",
80
- Sort: "Sorteren",
81
- Categories: "Categorie\xEBn",
82
- Visible: "Zichtbaar",
83
- "Read only": "Alleen-lezen",
84
- "Easy reading": "Gemakkelijk te lezen",
85
- Hidden: "Verborgen",
86
- "Hidden (reserved value)": "Verborgen (gereserveerde waarde)",
87
- "Not required": "Niet vereist",
88
- Value: "Waarde",
89
- Disabled: "Uitgeschakeld",
90
- Enabled: "Ingeschakeld",
91
- Problematic: "Problematisch",
92
- Empty: "Leeg",
93
- "Linkage rule": "Koppelingregel",
94
- "Linkage rules": "Koppelingregels",
95
- Condition: "Voorwaarde",
96
- Properties: "Eigenschappen",
38
+ "Add child": "Onderliggend toevoegen",
39
+ "Add child route": "Subroute toevoegen",
40
+ "Add condition": "Voorwaarde toevoegen",
41
+ "Add condition group": "Voorwaardengroep toevoegen",
42
+ "Add event flow": "Add event flow",
43
+ "Add exportable field": "Exporteerbaar veld toevoegen",
44
+ "Add field": "Veld toevoegen",
45
+ "Add filter": "Filter toevoegen",
46
+ "Add filter group": "Filtergroep toevoegen",
47
+ "Add group": "Groep toevoegen",
48
+ "Add link": "Link toevoegen",
97
49
  "Add linkage rule": "Koppelingregel toevoegen",
50
+ "Add menu item": "Menu-item toevoegen",
51
+ "Add new": "Nieuw toevoegen",
52
+ "Add new mode": "Nieuwe modus toevoegen",
53
+ "Add option": "Optie toevoegen",
54
+ "Add page": "Pagina toevoegen",
55
+ "Add parameter": "Parameter toevoegen",
56
+ "Add plugin": "Plugin toevoegen",
98
57
  "Add property": "Eigenschap toevoegen",
58
+ "Add record": "Record toevoegen",
59
+ "Add request header": "Add request header",
60
+ "Add role": "Rol toevoegen",
61
+ "Add rule": "Add rule",
62
+ "Add sort field": "Sorteerveld toevoegen",
63
+ "Add step": "Add step",
64
+ "Add tab": "Voeg tabblad toe",
65
+ "Add target block": "Add target block",
66
+ "Add template": "Sjabloon toevoegen",
67
+ "Add text": "Voeg tekst toe",
68
+ "Add type": "Type toevoegen",
69
+ "Add validation rule": "Voeg validatieregel toe",
70
+ "Add variable": "Add variable",
71
+ "Add {{type}} after \"{{title}}\"": "Voeg {{type}} toe na \"{{title}}\"",
72
+ "Add {{type}} before \"{{title}}\"": "Voeg {{type}} toe voor \"{{title}}\"",
73
+ "Add {{type}} in \"{{title}}\"": "Voeg {{type}} toe in \"{{title}}\"",
74
+ "Advanced type": "Geavanceerd",
75
+ "After": "Na",
76
+ "After change": "Na wijziging",
77
+ "After clicking the custom button, the following field values will be assigned according to the following form.": "Na het klikken op de aangepaste knop worden de volgende veldwaarden toegewezen volgens het onderstaande formulier.",
78
+ "After clicking the custom button, the following fields of the current record will be saved according to the following form.": "Na het klikken op de aangepaste knop worden de volgende velden van het huidige record opgeslagen volgens het onderstaande formulier.",
79
+ "After hiding, this menu will no longer appear in the menu bar. To show it again, you need to go to the route management page to configure it.": "Na verbergen wordt dit menu niet meer weergegeven in de menubalk. Om het opnieuw te tonen, moet je naar de routebeheerpagina gaan om het in te stellen.",
80
+ "After hiding, this tab will no longer appear in the tab bar. To show it again, you need to go to the route management page to set it.": "Na verbergen wordt dit tabblad niet meer weergegeven in de tabbalk. Om het opnieuw te tonen, moet je naar de routebeheerpagina gaan om het in te stellen.",
81
+ "After successful bulk update": "Na succesvolle update in bulk",
82
+ "After successful request": "Na succesvolle aanvraag",
83
+ "After successful save": "Na succesvol opslaan",
84
+ "After successful submission": "Na succesvolle indiening",
85
+ "After successful submission, the selected data blocks will be automatically refreshed.": "Na succesvolle indiening worden de geselecteerde gegevensblokken automatisch vernieuwd.",
86
+ "After successful update": "Na succesvolle update",
87
+ "Agenda": "Agenda",
88
+ "All": "Alles",
89
+ "All collections": "Alle collecties",
90
+ "All collections use general action permissions by default; permission configured individually will override the default one.": "Alle collecties gebruiken standaard algemene actierechten; individueel geconfigureerde rechten overschrijven de standaardinstellingen.",
91
+ "All events": "Alle gebeurtenissen",
92
+ "All plugin settings": "Alle plugininstellingen",
93
+ "All records": "Alle records",
94
+ "Allow": "Toestaan",
95
+ "Allow access": "Toegang toestaan",
96
+ "Allow action": "Actie toestaan",
97
+ "Allow add new": "Sta toe om nieuw toe te voegen.",
98
+ "Allow add new data": "Sta toe nieuwe data toe te voegen",
99
+ "Allow add new, update and delete actions": "Toestaan om toe te voegen, bijwerken en verwijderen",
100
+ "Allow adding records to the current collection": "Toestaan ​​dat records aan de huidige collectie worden toegevoegd",
101
+ "Allow disassociation": "Allow disassociation",
102
+ "Allow dissociate": "Loskoppelen toestaan",
103
+ "Allow linking to multiple records": "Koppelen aan meerdere records toestaan",
104
+ "Allow list": "Allow list",
105
+ "Allow multiple": "Meerdere toestaan",
106
+ "Allow multiple selection": "Meerdere selecties toestaan",
107
+ "Allow relative URIs": "Allow relative URIs",
108
+ "Allow selection of existing file": "Allow selection of existing file",
109
+ "Allow selection of existing records": "Sta selectie van bestaande records toe.",
110
+ "Allow sign up": "Registratie toestaan",
111
+ "Allow to configure plugins": "Toestaan om plugins te configureren",
112
+ "Allow to desgin pages": "Toestaan om pagina's te ontwerpen",
113
+ "Allow to manage plugins": "Toestaan om plugins te beheren",
114
+ "Allow uploading multiple files": "Meerdere bestanden uploaden toestaan",
115
+ "Allows configuration of the whole system, including UI, collections, permissions, etc.": "Maakt configuratie van het hele systeem mogelijk, inclusief gebruikersinterface, collecties, rechten, enz.",
116
+ "Allows to clear cache, reboot application": "Sta toe om cache te wissen en applicatie te herstarten.",
117
+ "Allows to configure interface": "Toestemming om de interface te configureren",
118
+ "Allows to configure plugins": "Toestemming om plugins te configureren",
119
+ "Allows to install, activate, disable plugins": "Toestemming om plugins te installeren, activeren of uitschakelen",
120
+ "Allows unencoded square brackets inside the query string": "Allows unencoded square brackets inside the query string",
121
+ "Alphabet": "Alfabet",
122
+ "Any": "Any",
123
+ "App error": "App-fout",
124
+ "Application reloading": "Applicatie wordt opnieuw geladen",
125
+ "Are you sure to delete this plugin?": "Weet je zeker dat je deze plugin wil verwijderen?",
126
+ "Are you sure to disable this plugin?": "Weet je zeker dat je deze plugin wil uitschakelen?",
127
+ "Are you sure you don't want to save?": "Weet je zeker dat je niet wil opslaan?",
128
+ "Are you sure you want to clear cache ?": "Weet je zeker dat je de cache wilt wissen?",
129
+ "Are you sure you want to delete it?": "Weet je zeker dat je het wil verwijderen?",
130
+ "Are you sure you want to delete this variable?": "Are you sure you want to delete this variable?",
131
+ "Are you sure you want to disassociate it?": "Weet je zeker dat je het wil loskoppelen?",
132
+ "Are you sure you want to hide these routes in menu?": "Weet je zeker dat je deze routes in het menu wil verbergen?",
133
+ "Are you sure you want to hide this menu?": "Weet je zeker dat je dit menu wil verbergen?",
134
+ "Are you sure you want to hide this tab?": "Weet je zeker dat je dit tabblad wil verbergen?",
135
+ "Are you sure you want to load {{count}} collection(s)?": "Are you sure you want to load {{count}} collection(s)?",
136
+ "Are you sure you want to perform the Custom request action": "Are you sure you want to perform the Custom request action",
137
+ "Are you sure you want to perform the Refresh action?": "Are you sure you want to perform the Refresh action?",
138
+ "Are you sure you want to perform the Submit action?": "Are you sure you want to perform the Submit action?",
139
+ "Are you sure you want to perform the Trigger workflow action?": "Are you sure you want to perform the Trigger workflow action?",
140
+ "Are you sure you want to perform the Update record action?": "Are you sure you want to perform the Update record action?",
141
+ "Are you sure you want to perform the {{title}} action?": "Weet je zeker dat je de actie {{title}} wilt uitvoeren?",
142
+ "Are you sure you want to save it?": "Are you sure you want to save it?",
143
+ "Are you sure you want to show these routes in menu?": "Weet je zeker dat je deze routes in het menu wil weergeven?",
144
+ "Area": "Gebied",
145
+ "Area chart": "Oppervlaktegrafiek",
146
+ "Assign data scope for the template": "Gegevensbereik toewijzen aan sjabloon",
147
+ "Assign field values": "Veldwaarden toewijzen",
148
+ "Assign value": "Assign value",
149
+ "Assignment mode": "Assignment mode",
150
+ "Associate": "Associate",
151
+ "Associated records": "Gekoppelde records",
152
+ "Association field settings": "Association field settings",
153
+ "Association fields": "Associatievelden",
154
+ "Association fields filter": "Filter voor associatievelden",
155
+ "Association select settings": "Association select settings",
156
+ "Association table settings": "Association table settings",
157
+ "Association tag settings": "Association tag settings",
158
+ "AssociationField component": "AssociationField component",
159
+ "Attempts to encode the URI using encodeURI before validating it again": "Attempts to encode the URI using encodeURI before validating it again",
160
+ "Audit logs": "Auditlogboeken",
161
+ "Authentication": "Authenticatie",
162
+ "Author": "Auteur",
163
+ "Auto": "Automatisch",
164
+ "Auto focus": "Auto focus",
165
+ "Auto increment": "Auto-increment",
166
+ "AutoGenId": "Automatisch gegenereerd ID veld",
167
+ "Automatic close": "Automatisch sluiten",
168
+ "Automatically drop objects that depend on the collection (such as views), and in turn all objects that depend on those objects": "Automatisch objecten verwijderen die afhankelijk zijn van de collectie (zoals weergaven) en ook alle objecten die daarvan afhankelijk zijn",
169
+ "Automatically generate default values": "Automatisch standaardwaarden genereren.",
170
+ "Automatically remove heading and tailing spaces": "Automatically remove heading and tailing spaces",
171
+ "Automatically update timestamp on update": "Automatically update timestamp on update",
172
+ "Automatically update timestamp to the current server time on update": "Automatically update timestamp to the current server time on update",
173
+ "Available \"target blocks\" are all data blocks on the current page": "Available \"target blocks\" are all data blocks on the current page",
174
+ "Available Collections": "Available Collections",
175
+ "Background Color": "Achtergrondkleur",
176
+ "Bar chart": "Staafgrafiek",
177
+ "Base": "Base",
178
+ "Basic": "Basis",
179
+ "Basic configuration": "Basic configuration",
180
+ "Before": "Voor",
181
+ "Before change": "Voor wijziging",
182
+ "Before render": "Before render",
183
+ "Blank block": "Leeg blok",
184
+ "Block": "Blok",
185
+ "Block Linkage rules": "Block Linkage rules",
186
+ "Block linkage rules": "Block linkage rules",
187
+ "Block list": "Block list",
188
+ "Block template": "Bloksjabloon",
189
+ "Block templates": "Bloksjablonen",
190
+ "Block title": "Bloktitel",
191
+ "Block type": "Bloktype",
192
+ "Blocks": "Blokken",
193
+ "Blue": "Blauw",
194
+ "Bookmark": "Bladwijzer",
195
+ "Boolean": "Boolean",
196
+ "Bottom left": "Bottom left",
197
+ "Bottom right": "Bottom right",
198
+ "Built-in": "Ingebouwd",
199
+ "Bulk edit": "Bewerken in bulk",
200
+ "Bulk enable": "Bulk enable",
201
+ "Bulk update": "Updaten in bulk",
202
+ "Button background color": "Knopachtergrondkleur",
203
+ "Button icon": "Knoppictogram",
204
+ "Button settings": "Button settings",
205
+ "Button title": "Knoptekst",
206
+ "Button type": "Button type",
207
+ "Calculation engine": "Berekeningsengine",
208
+ "Calendar": "Kalender",
209
+ "Calendar Month": "Calendar Month",
210
+ "Calendar Year": "Calendar Year",
211
+ "Calendar collection": "Kalendercollectie",
212
+ "Calendar week": "Calendar week",
213
+ "Cancel": "Annuleren",
214
+ "Cannot find the model instance with UID": "Cannot find the model instance with UID",
215
+ "Card settings": "Card settings",
216
+ "Cascade Select": "Cascade selectie",
217
+ "Cascade select": "Cascade select",
218
+ "Cascade select settings": "Cascade select settings",
219
+ "Categories": "Categorieën",
99
220
  "Category name": "Categorie naam",
100
- "Roles & Permissions": "Rollen & Machtigingen",
101
- "Edit profile": "Profiel bewerken",
221
+ "Center": "Center",
102
222
  "Change password": "Wachtwoord wijzigen",
103
- "Old password": "Oud wachtwoord",
104
- "New password": "Nieuw wachtwoord",
105
- "Switch role": "Rol wisselen",
106
- "Super admin": "Superbeheerder",
107
- Language: "Taal",
108
- "Allow sign up": "Registratie toestaan",
109
- "Enable SMS authentication": "SMS-authenticatie inschakelen",
110
- "Sign out": "Afmelden",
111
- Cancel: "Annuleren",
112
- Submit: "Indienen",
113
- Close: "Sluiten",
114
- "Set the data scope": "Stel de gegevensomvang in",
115
- "Set data loading mode": "Stel de gegevenslaadmodus in",
116
- "Load all data when filter is empty": "Laad alle gegevens wanneer filter leeg is",
117
- "Do not load data when filter is empty": "Laad geen gegevens wanneer filter leeg is",
118
- "Data loading mode": "Gegevenslaadmodus",
119
- "Data blocks": "Gegevensblokken",
120
- "Filter blocks": "Filterblokken",
121
- Table: "Tabel",
122
- "Table OID(Inheritance)": "Tabel OID (Erfelijkheid)",
123
- Form: "Formulier",
124
- List: "Lijst",
125
- "Grid Card": "Rasterkaart",
126
- pixels: "pixels",
127
- "Screen size": "Schermgrootte",
128
- "Display title": "Titel weergeven",
129
- "Set the count of columns displayed in a row": "Stel het aantal kolommen in dat in een rij wordt weergegeven",
130
- Column: "Kolom",
131
- "Phone device": "Telefoonapparaat",
132
- "Tablet device": "Tabletapparaat",
133
- "Desktop device": "Desktopapparaat",
134
- "Large screen device": "Groot schermapparaat",
135
- Collapse: "Inklappen",
136
- "Select data source": "Gegevensbron selecteren",
137
- Calendar: "Kalender",
138
- "Delete events": "Gebeurtenissen verwijderen",
139
- "This event": "Deze gebeurtenis",
140
- "This and following events": "Deze en volgende gebeurtenissen",
141
- "All events": "Alle gebeurtenissen",
142
- "Delete this event?": "Deze gebeurtenis verwijderen?",
143
- "Delete Event": "Verwijder gebeurtenis",
144
- Kanban: "Kanban",
145
- Gantt: "Gantt",
146
- "Create gantt block": "Maak Gantt-blok",
147
- "Progress field": "Voortgangsveld",
148
- "Time scale": "Tijdschaal",
149
- Hour: "Uur",
150
- "Quarter of day": "Kwartaal van de dag",
151
- "Half of day": "Helft van de dag",
152
- Year: "Jaar",
153
- QuarterYear: "Kwartaaljaar",
154
- "Select grouping field": "Selecteer groeperingsveld",
155
- Media: "Media",
156
- Markdown: "Markdown",
157
- Wysiwyg: "Wysiwyg",
223
+ "Changed to": "Veranderd in",
224
+ "Changelog": "Wijzigingslogboek",
158
225
  "Chart blocks": "Grafiekblokken",
159
- "Column chart": "Kolomgrafiek",
160
- "Bar chart": "Staafgrafiek",
161
- "Line chart": "Lijngrafiek",
162
- "Pie chart": "Taartgrafiek",
163
- "Area chart": "Oppervlaktegrafiek",
164
- "Other chart": "Andere grafiek",
165
- "Other blocks": "Andere blokken",
166
- "In configuration": "In configuratie",
226
+ "Chart config": "Grafiekconfiguratie",
167
227
  "Chart title": "Grafiektitel",
168
228
  "Chart type": "Grafiektype",
169
- "Chart config": "Grafiekconfiguratie",
170
- Templates: "Sjablonen",
171
- "Select template": "Selecteer sjabloon",
172
- "Action logs": "Actielogs",
173
- "Create template": "Sjabloon maken",
174
- "Edit markdown": "Bewerk markdown",
175
- "Add block": "Blok toevoegen",
176
- "Add new": "Nieuw toevoegen",
177
- "Add record": "Record toevoegen",
178
- "Add child": "Onderliggend toevoegen",
229
+ "Check strength": "Check strength",
230
+ "Checkbox": "Selectievak",
231
+ "Checkbox group": "Checkboxgroep",
232
+ "Children": "Kinderen",
233
+ "China region": "China regio",
234
+ "Choices": "Keuzes",
235
+ "Choices fields": "Keuzevelden",
236
+ "City": "Stad",
237
+ "Classic page (v1)": "Classic page (v1)",
238
+ "Clear": "Wissen",
239
+ "Clear cache": "Cache wissen",
240
+ "Clear default value": "Standaardwaarde wissen",
241
+ "Click": "Click",
242
+ "Click event": "Click event",
243
+ "Click or drag file to this area to upload": "Klik of sleep een bestand naar dit gebied om te uploaden.",
244
+ "Click the \"UI Editor\" icon in the upper right corner to enter the UI Editor mode": "Click the \"UI Editor\" icon in the upper right corner to enter the UI Editor mode",
245
+ "Clicked row record": "Clicked row record",
246
+ "Close": "Sluiten",
247
+ "Collapse": "Inklappen",
179
248
  "Collapse all": "Alles inklappen",
180
- "Expand all": "Alles uitbreiden",
181
- "Expand/Collapse": "Uitbreiden/Inklappen",
182
- "Default collapse": "Standaard inklappen",
183
- "Tree table": "Boomtabel",
184
- "Custom field display name": "Aangepaste veldweergavenaam",
185
- "Display fields": "Toon collectie velden",
186
- "Edit record": "Record bewerken",
187
- "Delete menu item": "Menu-item verwijderen",
188
- "Add page": "Pagina toevoegen",
189
- "Add group": "Groep toevoegen",
190
- "Add link": "Link toevoegen",
191
- "Insert above": "Boven invoegen",
192
- "Insert below": "Onder invoegen",
193
- Save: "Opslaan",
194
- "Delete block": "Blok verwijderen",
195
- "Are you sure you want to delete it?": "Weet je zeker dat je het wil verwijderen?",
196
- "This is a demo text, **supports Markdown syntax**.": "Dit is een demo tekst, **ondersteunt Markdown syntax**.",
197
- Filter: "Filter",
198
- "Connect data blocks": "Verbind gegevensblokken",
199
- "Action type": "Actietype",
200
- Actions: "Acties",
201
- Insert: "Invoegen",
202
- "Insert if not exists": "Invoegen als het niet bestaat",
203
- "Insert if not exists, or update": "Invoegen als het niet bestaat, of bijwerken",
204
- "Determine whether a record exists by the following fields": "Bepaal of een record bestaat op basis van de volgende velden",
205
- Update: "Bijwerken",
206
- "Update record": "Record bijwerken",
207
- View: "Bekijken",
208
- "View record": "Record bekijken",
209
- Refresh: "Vernieuwen",
210
- "Data changes": "Gegevenswijzigingen",
211
- "Field name": "Veldnaam",
212
- "Before change": "Voor wijziging",
213
- "After change": "Na wijziging",
214
- "Delete record": "Record verwijderen",
215
- "Delete collection": "Collectie verwijderen",
216
- "Create collection": "Collectie maken",
249
+ "Collapse button": "Collapse",
250
+ "Collapse settings": "Collapse settings",
251
+ "Collapsed rows": "Collapsed rows",
252
+ "Collection": "Collectie",
253
+ "Collection category": "Collectie categorie",
217
254
  "Collection display name": "Weergavenaam collectie",
255
+ "Collection fields": "Collectievelden",
256
+ "Collection manager": "Collectiebeheerder",
218
257
  "Collection name": "Naam collectie",
219
- Inherits: "Erft",
220
- "Primary key, unique identifier, self growth": "Primaire sleutel, unieke identifier, zelfgroei",
221
- "Store the creation user of each record": "Sla de gebruiker die de record aanmaakte op",
222
- "Store the last update user of each record": "Sla de gebruiker van de laatste update op",
223
- "Store the creation time of each record": "Sla de creatietijd van elke record op",
224
- "Store the last update time of each record": "Sla de laatste update tijd van elke record op",
225
- "More options": "Meer opties",
226
- "Records can be sorted": "Records kunnen worden gesorteerd",
227
- "Calendar collection": "Kalendercollectie",
228
- "General collection": "Algemene collectie",
229
- "Connect to database view": "Verbind met databaseweergave",
230
- "Sync from database": "Synchroniseren vanuit database",
231
- "Source collections": "Broncollecties",
232
- "Field source": "Veldbron",
233
- Preview: "Voorbeeld",
234
- "Randomly generated and can be modified. Support letters, numbers and underscores, must start with an letter.": "Willekeurig gegenereerd en kan worden aangepast. Ondersteunt letters, cijfers en onderstrepingstekens, moet beginnen met een letter.",
235
- Edit: "Bewerken",
236
- "Edit collection": "Collectie bewerken",
237
- "Configure fields": "Velden configureren",
258
+ "Collection selector": "Collectie selector",
259
+ "Collection template": "Collectie sjabloon",
260
+ "Collections": "Collecties",
261
+ "Collections & Fields": "Collecties & Velden",
262
+ "Colon": "Colon",
263
+ "Color": "Kleur",
264
+ "Column": "Kolom",
265
+ "Column Settings": "Kolominstellingen",
266
+ "Column chart": "Kolomgrafiek",
267
+ "Column title": "kolomtitel",
268
+ "Column width": "Kolombreedte",
269
+ "Coming soon...": "Binnenkort beschikbaar...",
270
+ "Compact theme": "Compact thema",
271
+ "Comparision": "Vergelijking",
272
+ "Comparison": "Comparison",
273
+ "Component properties": "Component properties",
274
+ "Compressed file url": "URL van gecomprimeerd bestand",
275
+ "Computer": "Computer",
276
+ "Condition": "Voorwaarde",
277
+ "Conditional assignment": "Conditional assignment",
278
+ "Configuration saved": "Configuration saved",
279
+ "Configuration:": "Configuration:",
280
+ "Configure": "Configureren",
281
+ "Configure actions": "Configureer acties",
282
+ "Configure calendar": "Kalender configureren",
238
283
  "Configure columns": "Kolommen configureren",
239
- "Edit field": "Veld bewerken",
240
- Override: "Overschrijven",
241
- "Override field": "Veld overschrijven",
284
+ "Configure field": "Veld configureren",
285
+ "Configure fields": "Velden configureren",
242
286
  "Configure fields of {{title}}": "Configureer velden van {{title}}",
243
- "Association fields filter": "Filter voor associatievelden",
244
- "PK & FK fields": "PK & FK velden",
245
- "Association fields": "Associatievelden",
246
- "Choices fields": "Keuzevelden",
247
- "System fields": "Systeemvelden",
248
- "General fields": "Algemene velden",
249
- "Inherited fields": "Ge\xEBrfde velden",
250
- "Parent collection fields": "Velden van bovenliggende collectie",
251
- Basic: "Basis",
252
- "Single line text": "Enkele regel tekst",
253
- "Long text": "Lange tekst",
254
- Phone: "Telefoon",
255
- Email: "E-mail",
256
- Number: "Nummer",
257
- Integer: "Geheel getal",
258
- Percent: "Percentage",
259
- Password: "Wachtwoord",
260
- "Advanced type": "Geavanceerd",
261
- Formula: "Formule",
262
- "Formula description": "Bereken een waarde in elk record op basis van andere velden in hetzelfde record.",
263
- Choices: "Keuzes",
264
- Checkbox: "Selectievak",
265
- "Single select": "Enkele selectie",
266
- "Multiple select": "Meerdere selecteren",
267
- "Radio group": "Radiogroep",
268
- "Checkbox group": "Checkboxgroep",
269
- "China region": "China regio",
270
- "Date & Time": "Datum & Tijd",
271
- Datetime: "Datumtijd",
272
- Relation: "Relatie",
273
- "Link to": "Koppel aan",
274
- "Link to description": "Gebruikt om snel collectie-relaties te maken en compatibel met de meest voorkomende scenario's. Geschikt voor niet-ontwikkelaars. Wanneer aanwezig als veld, is het een keuzelijst die wordt gebruikt om records uit de doelcollectie te selecteren. Eenmaal aangemaakt, genereert het tegelijkertijd de bijbehorende velden van de huidige collectie in de doelcollectie.",
275
- "Sub-table": "Subtabel",
276
- "Sub-details": "Subdetails",
277
- "Sub-form(Popover)": "Subformulier (Popover)",
278
- "System info": "Systeeminfo",
287
+ "Configure page": "Configure page",
288
+ "Configure permission": "Rechten configureren",
289
+ "Configure permissions": "Rechten configureren",
290
+ "Configure rows": "Configure rows",
291
+ "Configure the rows and columns of the grid.": "Configure the rows and columns of the grid.",
292
+ "Configure the sizes of each row. The value is an array of numbers representing the width of each column in the row.": "Configure the sizes of each row. The value is an array of numbers representing the width of each column in the row.",
293
+ "Confirm": "Bevestigen",
294
+ "Confirm Load Collections": "Confirm Load Collections",
295
+ "Confirm password": "Wachtwoord bevestigen",
296
+ "Confirmation": "Confirmation",
297
+ "Connect data blocks": "Verbind gegevensblokken",
298
+ "Connect fields": "Connect fields",
299
+ "Connect to database view": "Verbind met databaseweergave",
300
+ "Console": "Console",
301
+ "Constant": "Constant",
302
+ "Constant value": "Constante waarde",
303
+ "Contain": "Bevatten",
304
+ "Content": "Content",
305
+ "Content overflow display mode": "Content overflow display mode",
306
+ "Content settings": "Content settings",
307
+ "Controls whether the current document is allowed to autoplay media requested through the HTMLMediaElement interface. When this policy is disabled and there were no user gestures, the Promise returned by HTMLMediaElement.play() will reject with a NotAllowedError DOMException. The autoplay attribute on <audio> and <video> elements will be ignored.": "Controls whether the current document is allowed to autoplay media requested through the HTMLMediaElement interface. When this policy is disabled and there were no user gestures, the Promise returned by HTMLMediaElement.play() will reject with a NotAllowedError DOMException. The autoplay attribute on <audio> and <video> elements will be ignored.",
308
+ "Controls whether the current document is allowed to set document.domain. When this policy is disabled, attempting to set document.domain will fail and cause a SecurityError DOMException to be thrown.": "Controls whether the current document is allowed to set document.domain. When this policy is disabled, attempting to set document.domain will fail and cause a SecurityError DOMException to be thrown.",
309
+ "Controls whether the current document is allowed to use Element.requestFullscreen(). When this policy is disabled, the returned Promise rejects with a TypeError.": "Controls whether the current document is allowed to use Element.requestFullscreen(). When this policy is disabled, the returned Promise rejects with a TypeError.",
310
+ "Controls whether the current document is allowed to use audio input devices. When this policy is disabled, the Promise returned by MediaDevices.getUserMedia() will reject with a NotAllowedError DOMException.": "Controls whether the current document is allowed to use audio input devices. When this policy is disabled, the Promise returned by MediaDevices.getUserMedia() will reject with a NotAllowedError DOMException.",
311
+ "Controls whether the current document is allowed to use the Encrypted Media Extensions API (EME). When this policy is disabled, the Promise returned by Navigator.requestMediaKeySystemAccess() will reject with a SecurityError DOMException.": "Controls whether the current document is allowed to use the Encrypted Media Extensions API (EME). When this policy is disabled, the Promise returned by Navigator.requestMediaKeySystemAccess() will reject with a SecurityError DOMException.",
312
+ "Controls whether the current document is allowed to use the Geolocation Interface. When this policy is disabled, calls to getCurrentPosition() and watchPosition() will cause those functions callbacks to be invoked with a GeolocationPositionError code of PERMISSION_DENIED.": "Controls whether the current document is allowed to use the Geolocation Interface. When this policy is disabled, calls to getCurrentPosition() and watchPosition() will cause those functions callbacks to be invoked with a GeolocationPositionError code of PERMISSION_DENIED.",
313
+ "Controls whether the current document is allowed to use the Payment Request API. When this policy is enabled, the PaymentRequest() constructor will throw a SecurityError DOMException.": "Controls whether the current document is allowed to use the Payment Request API. When this policy is enabled, the PaymentRequest() constructor will throw a SecurityError DOMException.",
314
+ "Controls whether the current document is allowed to use the Web MIDI API. When this policy is disabled, the Promise returned by Navigator.requestMIDIAccess() will reject with a SecurityError DOMException.": "Controls whether the current document is allowed to use the Web MIDI API. When this policy is disabled, the Promise returned by Navigator.requestMIDIAccess() will reject with a SecurityError DOMException.",
315
+ "Controls whether the current document is allowed to use video input devices. When this policy is disabled, the Promise returned by getUserMedia() will reject with a NotAllowedError DOMException.": "Controls whether the current document is allowed to use video input devices. When this policy is disabled, the Promise returned by getUserMedia() will reject with a NotAllowedError DOMException.",
316
+ "Convert reference to duplicate": "Referentie omzetten naar duplicaat",
317
+ "Convert template to duplicate": "Convert template to duplicate",
318
+ "Copy": "Copy",
319
+ "Copy into the form and continue to fill in": "Kopieer in het formulier en vul verder in.",
320
+ "Cover": "Bedekken",
321
+ "Create": "Aanmaken",
322
+ "Create an account": "Account aanmaken",
323
+ "Create calendar block": "Kalenderblok maken",
324
+ "Create collection": "Collectie maken",
325
+ "Create form": "Maak formulier",
326
+ "Create gantt block": "Maak Gantt-blok",
327
+ "Create inverse field in the target collection": "Creëer een omgekeerd veld in de doelcollectie",
328
+ "Create kanban block": "Kanbanblok maken",
329
+ "Create template": "Sjabloon maken",
279
330
  "Created at": "Aangemaakt op",
280
- "Last updated at": "Laatst bijgewerkt op",
281
331
  "Created by": "Aangemaakt door",
282
- "Last updated by": "Laatst bijgewerkt door",
283
- "Add field": "Veld toevoegen",
284
- "Field display name": "Weergavenaam veld",
285
- "Field type": "Veldtype",
286
- "Field interface": "Veldinterface",
332
+ "CreatedAt": "Aangemaakt op",
333
+ "CreatedBy": "Aangemaakt door",
334
+ "Current action": "Current action",
335
+ "Current block": "Current block",
336
+ "Current collection": "Huidige collectie",
337
+ "Current device type": "Current device type",
338
+ "Current form": "Huidig formulier",
339
+ "Current object": "Huidig object",
340
+ "Current popup": "Current popup",
341
+ "Current popup parent record": "Current popup parent record",
342
+ "Current popup record": "Huidig popup-record",
343
+ "Current record": "Huidig record",
344
+ "Current record blocks": "Huidige recordblokken",
345
+ "Current role": "Huidige rol",
346
+ "Current time": "Huidige tijd",
347
+ "Current user": "Huidige gebruiker",
348
+ "Custom": "Aangepast",
349
+ "Custom Title": "Aangepaste titel",
350
+ "Custom column name": "Aangepaste kolomnaam",
351
+ "Custom column title": "Aangepaste kolomtitel",
352
+ "Custom field": "Custom field",
353
+ "Custom field display name": "Aangepaste veldweergavenaam",
354
+ "Custom name": "Aangepaste naam",
355
+ "Custom request": "Aangepaste aanvraag",
356
+ "Custom title": "Aangepaste titel",
357
+ "Custom variable": "Custom variable",
358
+ "Customize": "Pas aan",
359
+ "Cyan": "Cyaan",
360
+ "DESC": "Aflopend",
361
+ "Daily": "Dagelijks",
362
+ "Danger action": "Danger action",
363
+ "Danger red": "Waarschuwing rood",
364
+ "Dashed": "Dashed",
365
+ "Data Model": "Gegevensmodel",
366
+ "Data blocks": "Gegevensblokken",
367
+ "Data changes": "Gegevenswijzigingen",
368
+ "Data fields": "Gegevensvelden",
369
+ "Data loading mode": "Gegevenslaadmodus",
370
+ "Data model": "Gegevensmodel",
371
+ "Data model tools": "Gegevensmodeltools",
372
+ "Data refreshed successfully": "Data refreshed successfully",
373
+ "Data scope": "Databereik",
374
+ "Data source": "Gegevensbron",
375
+ "Data source key": "Data source key",
376
+ "Data source permissions": "Datatoegangsrechten",
377
+ "Data sources": "Gegevensbronnen",
378
+ "Data template": "Gegevenssjabloon",
379
+ "Data will be updated": "Gegevens worden bijgewerkt",
380
+ "DataSource": "Gegevensbron",
381
+ "Date": "Datum",
382
+ "Date & Time": "Datum & Tijd",
383
+ "Date display format": "Weergaveformaat datum",
287
384
  "Date format": "Datumformaat",
288
- "Year/Month/Day": "Jaar/Maand/Dag",
289
- "Year-Month-Day": "Jaar-Maand-Dag",
385
+ "Date range limit": "Datumbereiklimiet",
386
+ "Date scope": "Date scope",
387
+ "Date variables": "Datumvariabelen",
388
+ "Date variables(Deprecated)": "Date variables(Deprecated)",
389
+ "DateOnly": "DateOnly",
390
+ "Datetime": "Datumtijd",
391
+ "Datetime (with time zone)": "Datetime (with time zone)",
392
+ "Datetime (without time zone)": "Datetime (without time zone)",
393
+ "Datetime settings": "Datetime settings",
394
+ "Day": "Dag",
395
+ "Day before yesterday": "Day before yesterday",
290
396
  "Day/Month/Year": "Dag/Maand/Jaar",
291
- "Show time": "Toon tijd",
292
- "Time format": "Tijdformaat",
293
- "12 hour": "12 uur",
294
- "24 hour": "24 uur",
295
- "Relationship type": "Relatietype",
296
- "Inverse relationship type": "Omgekeerd relatietype",
297
- "Source collection": "Broncollectie",
298
- "Source key": "Bron sleutel",
299
- "Target collection": "Doelcollectie",
300
- "Through collection": "Via collectie",
301
- "Target key": "Doel sleutel",
302
- "Foreign key": "Buitenlandse sleutel",
303
- "One to one": "Een-op-een",
304
- "One to many": "Een-op-veel",
305
- "Many to one": "Veel-op-een",
306
- "Many to many": "Veel-op-veel",
307
- "Foreign key 1": "Buitenlandse sleutel 1",
308
- "Foreign key 2": "Buitenlandse sleutel 2",
309
- "One to one description": "Gebruikt om een-op-een relaties te maken. For example, a user has a profile.",
310
- "One to many description": "Gebruikt om een een-op-veel-relatie te maken. Bijvoorbeeld, een land heeft veel steden en een stad kan slechts in \xE9\xE9n land zijn. Wanneer aanwezig als veld, is het een sub-tabel die de records van de geassocieerde collectie weergeeft. Wanneer aangemaakt, wordt automatisch een Veel-op-een veld gegenereerd in de geassocieerde collectie.",
311
- "Many to one description": "Gebruikt om een veel-op-een-relatie te maken. Bijvoorbeeld, een stad kan slechts tot \xE9\xE9n land behoren en een land kan veel steden hebben. Wanneer aanwezig als veld, is het een keuzelijst die wordt gebruikt om records uit de geassocieerde collectie te selecteren. Eenmaal aangemaakt, wordt automatisch een Een-op-veel veld gegenereerd in de geassocieerde collectie.",
312
- "Many to many description": "Gebruikt om veel-op-veel-relaties te maken. Bijvoorbeeld, een student heeft veel leraren en een leraar heeft veel studenten. Wanneer aanwezig als veld, is het een keuzelijst die wordt gebruikt om records uit de geassocieerde collectie te selecteren.",
313
- "Generated automatically if left blank": "Wordt automatisch gegenereerd als het leeg wordt gelaten",
397
+ "Default": "Standaard",
398
+ "Default collapse": "Standaard inklappen",
399
+ "Default collapsed": "Default collapsed",
400
+ "Default expand all": "Default expand all",
401
+ "Default filter conditions": "Default filter conditions",
402
+ "Default is the ID field": "Standaard is het ID-veld",
403
+ "Default operator": "Default operator",
404
+ "Default role": "Standaardrol",
405
+ "Default sorting": "Default sorting",
406
+ "Default theme": "Standaardthema",
407
+ "Default title for each record": "Standaardtitel voor elk record.",
408
+ "Default value": "Standaardwaarde",
409
+ "Default value to current server time": "Default value to current server time",
410
+ "Default value to current time": "Default value to current time",
411
+ "Delete": "Verwijder",
412
+ "Delete Event": "Verwijder gebeurtenis",
413
+ "Delete action": "Actie verwijderen",
414
+ "Delete block": "Blok verwijderen",
415
+ "Delete category": "Categorie verwijderen",
416
+ "Delete collection": "Collectie verwijderen",
417
+ "Delete events": "Gebeurtenissen verwijderen",
418
+ "Delete field": "Veld verwijderen",
419
+ "Delete menu item": "Menu-item verwijderen",
420
+ "Delete record": "Record verwijderen",
421
+ "Delete role": "Rol verwijderen",
422
+ "Delete route": "Route verwijderen",
423
+ "Delete routes": "Routes verwijderen",
424
+ "Delete settings": "Delete settings",
425
+ "Delete step": "Delete step",
426
+ "Delete table column": "Tabelkolom verwijderen",
427
+ "Delete this event?": "Deze gebeurtenis verwijderen?",
428
+ "Delete this target block": "Delete this target block",
429
+ "Delete variable": "Delete variable",
430
+ "Deny list": "Deny list",
431
+ "Department name": "Afdelingsnaam",
432
+ "Departments": "Afdelingen",
433
+ "Dependencies check": "Afhankelijkhedencontrole",
434
+ "Dependencies check failed, can't enable.": "Controle van afhankelijkheden mislukt, inschakelen niet mogelijk.",
435
+ "Dependencies compatibility check": "Compatibiliteitscontrole afhankelijkheden",
436
+ "Deprecated": "Deprecated",
437
+ "Description": "Beschrijving",
438
+ "Desktop device": "Desktopapparaat",
439
+ "Desktop routes": "Desktop-routes",
440
+ "Detail item settings": "Detail item settings",
441
+ "Details": "Details",
442
+ "Details settings": "Details settings",
443
+ "Determine whether a record exists by the following fields": "Bepaal of een record bestaat op basis van de volgende velden",
444
+ "Dialog": "Dialoog",
445
+ "Direct assignment": "Direct assignment",
446
+ "Direct duplicate": "Direct dupliceren",
447
+ "Disable": "Uitschakelen",
448
+ "Disable manual input": "Disable manual input",
449
+ "Disable tabs": "Schakel tabbladen uit",
450
+ "Disable validation": "Disable validation",
451
+ "Disabled": "Uitgeschakeld",
452
+ "Disassociate": "Loskoppelen",
453
+ "Disassociate record": "Record loskoppelen",
454
+ "Display <1><0>10</0><1>20</1><2>50</2><3>100</3></1> items per page": "Toon <1><0>10</0><1>20</1><2>50</2><3>100</3></1> items per pagina",
455
+ "Display <icon></icon> when unchecked": "Toon <icon></icon> wanneer niet aangevinkt",
456
+ "Display Field settings": "Display Field settings",
314
457
  "Display association fields": "Associatievelden tonen",
315
458
  "Display field title": "Veldtitel tonen",
316
- "Field component": "Veldcomponent",
317
- "Allow multiple": "Meerdere toestaan",
318
- "Quick upload": "Snelle upload",
319
- "Select file": "Bestand selecteren",
320
- Subtable: "Subtabel",
321
- "Sub-form": "Subformulier",
322
- "Field mode": "Veldmodus",
323
- "Allow add new data": "Sta toe nieuwe data toe te voegen",
324
- "Record picker": "Selecteer record",
325
- "Toggles the subfield mode": "Wisselt de subveldmodus",
326
- "Selector mode": "Selectormodus",
327
- "Subtable mode": "Subtabel modus",
328
- "Subform mode": "Subformulier modus",
329
- "Edit block title": "Bloktitel bewerken",
330
- "Block title": "Bloktitel",
331
- Pattern: "Patroon",
332
- Operator: "Operator",
333
- Editable: "Bewerkbaar",
334
- Readonly: "Alleen-lezen",
459
+ "Display fields": "Toon collectie velden",
460
+ "Display label": "Display label",
461
+ "Display mode": "Display mode",
462
+ "Display name": "Weergavenaam",
463
+ "Display only": "Display only",
464
+ "Display order number": "Toon volgnummer",
465
+ "Display page title": "Paginatitel weergeven",
466
+ "Display style": "Display style",
467
+ "Display title": "Titel weergeven",
468
+ "DisplayName": "Weergavenaam",
469
+ "Divide by": "Delen door",
470
+ "Divider line color": "Divider line color",
471
+ "Do not concatenate search params in the URL": "Voeg zoekparameters niet samen in de URL.",
472
+ "Do not load data when filter is empty": "Laad geen gegevens wanneer filter leeg is",
473
+ "Docs": "Documentatie",
474
+ "Domains ending with a . character are permitted": "Domains ending with a . character are permitted",
475
+ "Done": "Klaar",
476
+ "Double click": "Double click",
477
+ "Double click to choose entire object": "Dubbelklik om het hele object te kiezen",
478
+ "Download": "Downloaden",
479
+ "Download logs": "Logs downloaden",
480
+ "Drag and drop sorting field": "Sorteren via drag and drop",
481
+ "Drag and drop the file here or click to upload, file size should not exceed 30M": "Sleep het bestand hierheen of klik om te uploaden, bestandsgrootte mag niet groter zijn dan 30 MB",
482
+ "Dragging": "Slepen",
483
+ "Drawer": "Lade",
484
+ "Dropdown": "Keuzelijst",
485
+ "Dropdown select": "Dropdown select",
486
+ "Duplicate": "Dupliceren",
487
+ "Duplicate and continue": "Dupliceren en doorgaan",
488
+ "Duplicate mode": "Dupliceermodus",
489
+ "Duplicate template": "Sjabloon dupliceren",
490
+ "Duplicating": "Dupliceren",
491
+ "Duration (seconds, 0 = no auto close)": "Duration (seconds, 0 = no auto close)",
492
+ "Dynamic value": "Dynamische waarde",
493
+ "Easy reading": "Gemakkelijk te lezen",
335
494
  "Easy-reading": "Gemakkelijk te lezen",
336
- "Add filter": "Filter toevoegen",
337
- "Add filter group": "Filtergroep toevoegen",
338
- Comparision: "Vergelijking",
339
- is: "is",
340
- "is not": "is niet",
341
- contains: "bevat",
342
- "does not contain": "bevat niet",
343
- "starts with": "begint met",
344
- "not starts with": "begint niet met",
345
- "ends with": "eindigt met",
346
- "not ends with": "eindigt niet met",
347
- "is empty": "is leeg",
348
- "is not empty": "is niet leeg",
349
- "Edit chart": "Bewerk grafiek",
350
- "Add text": "Voeg tekst toe",
351
- "Filterable fields": "Filterbare velden",
495
+ "Edit": "Bewerken",
496
+ "Edit Title": "Edit Title",
497
+ "Edit block title": "Bloktitel bewerken",
498
+ "Edit block title & description": "Blok titel & beschrijving bewerken",
352
499
  "Edit button": "Bewerk knop",
353
- Hide: "Verbergen",
354
- "Enable actions": "Zet acties aan",
355
- Import: "Importeer",
356
- Export: "Exporteer",
357
- Customize: "Pas aan",
358
- Custom: "Aangepast",
359
- Function: "Functie",
360
- "Popup form": "Pop-up formulier",
361
- "Flexible popup": "Flexibele pop-up",
362
- "Configure actions": "Configureer acties",
363
- "Display order number": "Toon volgnummer",
364
- "Enable drag and drop sorting": "Zet drag and drop sorteren aan",
365
- "Triggered when the row is clicked": "Geactiveerd wanneer de rij wordt aangeklikt",
366
- "Add tab": "Voeg tabblad toe",
367
- "Disable tabs": "Schakel tabbladen uit",
368
- Details: "Details",
500
+ "Edit category": "Categorie bewerken",
501
+ "Edit chart": "Bewerk grafiek",
502
+ "Edit collection": "Collectie bewerken",
503
+ "Edit description": "Bewerk beschrijving",
504
+ "Edit event flows": "Edit event flows",
505
+ "Edit field": "Veld bewerken",
506
+ "Edit field title": "Veldtitel bewerken",
369
507
  "Edit form": "Bewerk formulier",
370
- "Create form": "Maak formulier",
371
- "Form (Edit)": "Formulier (Bewerken)",
372
- "Form (Add new)": "Formulier (Nieuw toevoegen)",
508
+ "Edit group title": "Edit group title",
509
+ "Edit link": "Link bewerken",
510
+ "Edit markdown": "Bewerk markdown",
511
+ "Edit menu item": "Menu-item bewerken",
512
+ "Edit page size": "Edit page size",
513
+ "Edit page title": "Paginatitel bewerken",
514
+ "Edit popup": "Edit popup",
515
+ "Edit profile": "Profiel bewerken",
516
+ "Edit record": "Record bewerken",
517
+ "Edit role": "Rol bewerken",
373
518
  "Edit tab": "Bewerk tabblad",
374
- "Relationship blocks": "Relatieblokken",
375
- "Select record": "Selecteer record",
376
- "Display name": "Weergavenaam",
377
- "Select icon": "Selecteer icoon",
378
- "Custom column name": "Aangepaste kolomnaam",
379
- "Edit description": "Bewerk beschrijving",
380
- Required: "Verplicht",
381
- Unique: "Uniek",
382
- Primary: "Primaire",
383
- "Auto increment": "Auto-increment",
384
- "Label field": "Label veld",
385
- "Default is the ID field": "Standaard is het ID-veld",
386
- "Set default sorting rules": "Stel standaard sorteerrregels in",
387
- "Set validation rules": "Stel validatieregels in",
388
- "Max length": "Maximale lengte",
389
- "Min length": "Minimale lengte",
390
- Maximum: "Maximum",
391
- Minimum: "Minimum",
392
- "Max length must greater than min length": "Maximale lengte moet groter zijn dan minimale lengte",
393
- "Min length must less than max length": "Minimale lengte moet kleiner zijn dan maximale lengte",
394
- "Maximum must greater than minimum": "Maximum moet groter zijn dan minimum",
395
- "Minimum must less than maximum": "Minimum moet kleiner zijn dan maximum",
396
- "Validation rule": "Validatieregel",
397
- "Add validation rule": "Voeg validatieregel toe",
398
- Format: "Formaat",
399
- "Regular expression": "Patroon",
400
- "Error message": "Foutmelding",
401
- Length: "Lengte",
402
- "The field value cannot be greater than ": "De veldwaarde mag niet groter zijn dan ",
403
- "The field value cannot be less than ": "De veldwaarde mag niet kleiner zijn dan ",
404
- "The field value is not an integer number": "De veldwaarde is geen geheel getal",
405
- "Set default value": "Stel standaardwaarde in",
406
- "Default value": "Standaardwaarde",
407
- "is before": "is voor",
408
- "is after": "is na",
409
- "is on or after": "is op of na",
410
- "is on or before": "is op of voor",
411
- "is between": "is tussen",
412
- Upload: "Uploaden",
413
- "Select level": "Selecteer niveau",
414
- Province: "Provincie",
415
- City: "Stad",
416
- Area: "Gebied",
417
- Street: "Straat",
418
- Village: "Dorp",
419
- "Must select to the last level": "Moet tot het laatste niveau selecteren",
420
- "Move {{title}} to": "Verplaats {{title}} naar",
421
- "Target position": "Doelpositie",
422
- After: "Na",
423
- Before: "Voor",
424
- 'Add {{type}} before "{{title}}"': 'Voeg {{type}} toe voor "{{title}}"',
425
- 'Add {{type}} after "{{title}}"': 'Voeg {{type}} toe na "{{title}}"',
426
- 'Add {{type}} in "{{title}}"': 'Voeg {{type}} toe in "{{title}}"',
427
- "Original name": "Originele naam",
428
- "Custom name": "Aangepaste naam",
429
- "Custom Title": "Aangepaste titel",
430
- Options: "Opties",
431
- "Option value": "Optiewaarde",
432
- "Option label": "Optielabel",
433
- Color: "Kleur",
434
- "Background Color": "Achtergrondkleur",
435
- "Text Align": "Tekstuitlijning",
436
- "Add option": "Optie toevoegen",
437
- "Related collection": "Gerelateerde collectie",
438
- "Allow linking to multiple records": "Koppelen aan meerdere records toestaan",
439
- "Allow uploading multiple files": "Meerdere bestanden uploaden toestaan",
440
- "Configure calendar": "Kalender configureren",
441
- "Title field": "Titelveld",
442
- "Custom title": "Aangepaste titel",
443
- Daily: "Dagelijks",
444
- Weekly: "Wekelijks",
445
- Monthly: "Maandelijks",
446
- Yearly: "Jaarlijks",
447
- Repeats: "Herhalingen",
448
- "Show lunar": "Maankalender tonen",
449
- "Start date field": "Begindatumveld",
519
+ "Edit tooltip": "Tooltip bewerken",
520
+ "Edit variable": "Edit variable",
521
+ "Editable": "Bewerkbaar",
522
+ "Ellipsis": "Ellipsis",
523
+ "Ellipsis overflow content": "Inhoud afkorten met ellips",
524
+ "Email": "E-mail",
525
+ "Embedded": "Embedded",
526
+ "Empty": "Leeg",
527
+ "Enable": "Inschakelen",
528
+ "Enable SMS authentication": "SMS-authenticatie inschakelen",
529
+ "Enable Scan": "Enable Scan",
530
+ "Enable actions": "Zet acties aan",
531
+ "Enable child collections": "Onderliggende collecties inschakelen",
532
+ "Enable click-to-open": "Enable click-to-open",
533
+ "Enable drag and drop sorting": "Zet drag and drop sorteren aan",
534
+ "Enable form data template": "Formuliersjabloon inschakelen",
535
+ "Enable index column": "Indexkolom inschakelen",
536
+ "Enable link": "Link inschakelen",
537
+ "Enable page header": "Paginahoofd inschakelen",
538
+ "Enable page tabs": "Pagina-tabbladen inschakelen",
539
+ "Enable quick edit": "Enable quick edit",
540
+ "Enable refresh": "Enable refresh",
541
+ "Enable secondary confirmation": "Tweede bevestiging inschakelen",
542
+ "Enable tabs": "Enable tabs",
543
+ "Enable tree table": "Enable tree table",
544
+ "Enable virtual scrolling": "Enable virtual scrolling",
545
+ "Enabled": "Ingeschakeld",
546
+ "Enabled languages": "Ingeschakelde talen",
547
+ "End": "End",
548
+ "End accessor": "End accessor",
450
549
  "End date field": "Einddatumveld",
451
- Navigate: "Navigeren",
452
- Title: "Titel",
453
- Description: "Beschrijving",
454
- "Select view": "Weergave selecteren",
455
- Reset: "Resetten",
456
- "Importable fields": "Importeerbare velden",
550
+ "Enter collection name": "Enter collection name",
551
+ "Enter end accessor": "Enter end accessor",
552
+ "Enter field title": "Enter field title",
553
+ "Enter number of rows to display": "Enter number of rows to display",
554
+ "Enter page title": "Enter page title",
555
+ "Enter placeholder text": "Enter placeholder text",
556
+ "Enter start accessor": "Enter start accessor",
557
+ "Enter title accessor": "Enter title accessor",
558
+ "Enter value": "Enter value",
559
+ "Error message": "Foutmelding",
560
+ "Event": "Gebeurtenis",
561
+ "Event flow": "Event flow",
562
+ "Event selected": "Event selected",
563
+ "Event settings": "Event settings",
564
+ "Exact day": "Exact day",
565
+ "Execute": "Uitvoeren",
566
+ "Execute JavaScript": "Execute JavaScript",
567
+ "Exists": "Bestaat",
568
+ "Expand All": "Alles uitvouwen",
569
+ "Expand all": "Alles uitbreiden",
570
+ "Expand all rows by default": "Expand all rows by default",
571
+ "Expand button": "Expand",
572
+ "Expand/Collapse": "Uitbreiden/Inklappen",
573
+ "Export": "Exporteer",
457
574
  "Exportable fields": "Exporteerbare velden",
458
- "Saved successfully": "Succesvol opgeslagen",
459
- Nickname: "Bijnaam",
460
- "Sign in": "Inloggen",
461
- "Sign in via account": "Inloggen via account",
462
- "Sign in via phone": "Inloggen via telefoon",
463
- "Create an account": "Account aanmaken",
464
- "Sign up": "Registreren",
465
- "Confirm password": "Wachtwoord bevestigen",
466
- "Log in with an existing account": "Inloggen met een bestaand account",
467
- "Signed up successfully. It will jump to the login page.": "Succesvol geregistreerd. Je wordt doorgestuurd naar de inlogpagina.",
468
- "Password mismatch": "Wachtwoorden komen niet overeen",
469
- Users: "Gebruikers",
470
- "Verification code": "Verificatiecode",
471
- "Send code": "Code verzenden",
472
- "Retry after {{count}} seconds": "Probeer opnieuw over {{count}} seconden",
473
- Roles: "Rollen",
474
- "Add role": "Rol toevoegen",
475
- "Role name": "Rolnaam",
476
- Configure: "Configureren",
477
- "Configure permissions": "Rechten configureren",
478
- "Edit role": "Rol bewerken",
479
- "Action permissions": "Actierechten",
480
- "Menu permissions": "Menurechten",
481
- "Menu item name": "Menunaam",
482
- "Allow access": "Toegang toestaan",
483
- "Action name": "Actienaam",
484
- "Allow action": "Actie toestaan",
485
- "Action scope": "Actieomvang",
486
- "Operate on new data": "Werken met nieuwe data",
487
- "Operate on existing data": "Werken met bestaande data",
488
- Yes: "Ja",
489
- No: "Nee",
490
- Red: "Rood",
491
- Magenta: "Magenta",
492
- Volcano: "Vulkaan",
493
- Orange: "Oranje",
494
- Gold: "Goud",
495
- Lime: "Limoen",
496
- Green: "Groen",
497
- Cyan: "Cyaan",
498
- Blue: "Blauw",
499
- "Geek blue": "Geek blauw",
500
- Purple: "Paars",
501
- Default: "Standaard",
502
- "Add card": "Kaart toevoegen",
503
- "edit title": "titel bewerken",
504
- "Turn pages": "Pagina's omslaan",
505
- Others: "Overigen",
506
- "Other records": "Andere records",
507
- "Save as reference template": "Opslaan als referentiesjabloon",
508
- "Save as inherited template": "Opslaan als overerfde sjabloon",
509
- "Save as block template": "Opslaan als bloksjabloon",
510
- "Block templates": "Bloksjablonen",
511
- "Block template": "Bloksjabloon",
512
- "Convert reference to duplicate": "Referentie omzetten naar duplicaat",
513
- "Template name": "Sjabloonnaam",
514
- "Block type": "Bloktype",
515
- "No blocks to connect": "Geen blokken om te verbinden",
516
- "Action column": "Actiekolom",
517
- "Records per page": "Records per pagina",
518
- "(Fields only)": "(Alleen velden)",
519
- "Button title": "Knoptekst",
520
- "Button icon": "Knoppictogram",
521
- "Submitted successfully": "Succesvol ingediend",
522
- "Operation succeeded": "Bewerking geslaagd",
523
- "Operation failed": "Bewerking mislukt",
524
- "Open mode": "Openingsmodus",
525
- "Popup size": "Popupgrootte",
526
- Small: "Klein",
527
- Middle: "Middel",
528
- Large: "Groot",
529
- Size: "Grootte",
530
- Oversized: "Te groot",
531
- Auto: "Automatisch",
532
- "Object Fit": "Objectaanpassing",
533
- Cover: "Bedekken",
534
- Fill: "Vullen",
535
- Contain: "Bevatten",
536
- "Scale Down": "Schalen naar beneden",
537
- "Menu item title": "Menutitel",
538
- "Menu item icon": "Menupictogram",
539
- Target: "Doel",
540
- Position: "Positie",
541
- "Insert before": "Invoegen voor",
542
- "Insert after": "Invoegen na",
543
- "UI Editor": "UI Bewerker",
544
- ASC: "Oplopend",
545
- DESC: "Aflopend",
546
- "Add sort field": "Sorteerveld toevoegen",
547
- ID: "ID",
548
- "Identifier for program usage. Support letters, numbers and underscores, must start with an letter.": "Identificator voor programma gebruik. Ondersteunt letters, cijfers en underscores, moet met een letter beginnen.",
549
- Drawer: "Lade",
550
- Dialog: "Dialoog",
551
- "Delete action": "Actie verwijderen",
552
- "Custom column title": "Aangepaste kolomtitel",
553
- "Column title": "kolomtitel",
554
- "Original title: ": "Originele titel: ",
555
- "Delete table column": "Tabelkolom verwijderen",
556
- "Skip required validation": "Vereiste validatie overslaan",
575
+ "Expression": "Expressie",
576
+ "Expression collection": "Expressiecollectie",
577
+ "FALSE": "ONWAAR",
578
+ "FORMULAJS_DOC_URL": "https://v2.docs.nocobase.com/calculation-engine/formula",
579
+ "Failed to load plugin": "Kan plug-in niet laden.",
580
+ "False": "False",
581
+ "Feedback": "Feedback",
582
+ "Field": "Veld",
583
+ "Field Linkage rules": "Field Linkage rules",
584
+ "Field assignment": "Field assignment",
585
+ "Field component": "Veldcomponent",
586
+ "Field display name": "Weergavenaam veld",
587
+ "Field interface": "Veldinterface",
588
+ "Field linkage rules": "Field linkage rules",
589
+ "Field mode": "Veldmodus",
590
+ "Field model": "Field model",
591
+ "Field name": "Veldnaam",
592
+ "Field permission": "Veldrecht",
593
+ "Field settings": "Field settings",
594
+ "Field source": "Veldbron",
595
+ "Field title": "Veldtitel",
596
+ "Field type": "Veldtype",
597
+ "Field value changes": "Wijzigingen in veldwaarden",
598
+ "Field value do not meet the requirements": "Veldwaarde voldoet niet aan de vereisten.",
599
+ "Field value size is": "Veldwaardegrootte is",
600
+ "Field values must be unique.": "Veldwaarden moeten uniek zijn.",
601
+ "Fields": "Velden",
602
+ "Fields can only be used correctly if they are defined with an interface.": "Fields can only be used correctly if they are defined with an interface.",
603
+ "Fields values": "Veldenwaarden",
604
+ "File manager": "Bestandsbeheer",
605
+ "File size exceeds the limit": "Bestandsgrootte overschrijdt de limiet.",
606
+ "File size should not exceed {{size}}.": "Bestandsgrootte mag {{size}} niet overschrijden.",
607
+ "File type is not allowed": "Bestandstype is niet toegestaan.",
608
+ "File type is not supported for previewing, please download it to preview.": "Bestandstype wordt niet ondersteund voor voorbeeldweergave, download het om te bekijken.",
609
+ "Fill": "Vullen",
610
+ "Filled": "Gevuld",
611
+ "Filter": "Filter",
612
+ "Filter blocks": "Filterblokken",
613
+ "Filter configuration": "Filter configuration",
614
+ "Filter data based on the specific field, with the requirement that the field value must be unique.": "Filter gegevens op basis van een specifiek veld, waarbij de veldwaarde uniek moet zijn.",
615
+ "Filter out a single piece or a group of records as a template": "Filter een enkel item of een groep records als sjabloon.",
616
+ "Filter target key": "Filterdoelsleutel",
617
+ "Filterable fields": "Filterbare velden",
618
+ "Find by the following fields": "Zoek op de volgende velden",
619
+ "First or create": "Eerste of aanmaken",
620
+ "Fix block": "Blok vastzetten",
621
+ "Fixed": "Vastgezet",
622
+ "Fixed to the left": "Links vastgehaald",
623
+ "Fixed to the right": "Rechts vastgehaald",
624
+ "Flexible popup": "Flexibele pop-up",
625
+ "Flow Page": "Modern page (v2)",
626
+ "Font Size(px)": "Lettergrootte(px)",
627
+ "Font Style": "Letterstijl",
628
+ "Font Weight": "Letterdikte",
629
+ "Foreign key": "Buitenlandse sleutel",
630
+ "Foreign key 1": "Buitenlandse sleutel 1",
631
+ "Foreign key 2": "Buitenlandse sleutel 2",
632
+ "Form": "Formulier",
633
+ "Form (Add new)": "Formulier (Nieuw toevoegen)",
634
+ "Form (Edit)": "Formulier (Bewerken)",
635
+ "Form UID": "Form UID",
636
+ "Form data templates": "Formuliersjablonen",
637
+ "Form duplicate": "Form duplicate",
638
+ "Form field assignment": "Form field assignment",
639
+ "Form item settings": "Form item settings",
640
+ "Form settings": "Form settings",
557
641
  "Form values": "Formuliervelden",
558
- "Fields values": "Veldenwaarden",
559
- "The field has been deleted": "Het veld is verwijderd",
560
- "When submitting the following fields, the saved values are": "Bij het indienen van de volgende velden worden de waarden opgeslagen als",
561
- "After successful submission": "Na succesvolle indiening",
562
- Then: "Dan",
563
- "Stay on current page": "Blijf op de huidige pagina",
564
- "Redirect to": "Omleiden naar",
565
- "Save action": "Actie opslaan",
566
- Exists: "Bestaat",
567
- "Add condition": "Voorwaarde toevoegen",
568
- "Add condition group": "Voorwaardengroep toevoegen",
569
- exists: "bestaat",
570
- "not exists": "bestaat niet",
571
- Style: "Stijl",
572
- "=": "=",
573
- "\u2260": "\u2260",
574
- ">": ">",
575
- "\u2265": "\u2265",
576
- "<": "<",
577
- "\u2264": "\u2264",
578
- "Role UID": "Rol-ID",
579
- Precision: "Precisie",
642
+ "Form values change": "Form values change",
643
+ "Form variable": "Form variable",
644
+ "Format": "Formaat",
645
+ "Formula": "Formule",
646
+ "Formula description": "Bereken een waarde in elk record op basis van andere velden in hetzelfde record.",
647
+ "Formula error.": "Formulefout.",
580
648
  "Formula mode": "Formulemodus",
581
- Expression: "Expressie",
649
+ "Formula.js supports most Microsoft Excel formula functions.": "Formula.js ondersteunt de meeste Microsoft Excel-formulefuncties.",
650
+ "Full height": "Volledige hoogte",
651
+ "Full permissions": "Full permissions",
652
+ "Function": "Functie",
653
+ "Gantt": "Gantt",
654
+ "Geek blue": "Geek blauw",
655
+ "General": "Algemeen",
656
+ "General action permissions": "Algemene actierechten",
657
+ "General collection": "Algemene collectie",
658
+ "General configuration": "General configuration",
659
+ "General fields": "Algemene velden",
660
+ "General permissions": "Algemene rechten",
661
+ "Generated automatically if left blank": "Wordt automatisch gegenereerd als het leeg wordt gelaten",
662
+ "Generic properties": "Algemene eigenschappen",
663
+ "Global action permissions": "Globale actierechten",
664
+ "Global permissions": "Globale rechten",
665
+ "Gold": "Goud",
666
+ "Greater than": "Greater than",
667
+ "Green": "Groen",
668
+ "Grid Card": "Rasterkaart",
669
+ "Group": "Groep",
670
+ "Grouped sorting": "Gegroepeerd sorteren",
671
+ "Grouping field": "Groepeer veld",
672
+ "HTML content": "HTML content",
673
+ "Half of day": "Helft van de dag",
674
+ "Handbook": "Handleiding",
675
+ "Hidden": "Verborgen",
676
+ "Hidden (reserved value)": "Verborgen (gereserveerde waarde)",
677
+ "Hidden text": "Hidden text",
678
+ "Hidden(reserved value)": "Hidden(reserved value)",
679
+ "Hide": "Verbergen",
680
+ "Hide column": "Kolom verbergen",
681
+ "Hide in menu": "Verbergen in menu",
682
+ "Highlight": "Markeren",
683
+ "Home page": "Startpagina",
684
+ "Homepage": "Homepage",
685
+ "Horizontal": "Horizontal",
686
+ "Hour": "Uur",
687
+ "Html settings": "Html settings",
688
+ "IANA registry": "IANA registry",
689
+ "ID": "ID",
690
+ "Icon": "Icoon",
691
+ "Icon only": "Enkel icoon",
692
+ "Identifier for program usage. Support letters, numbers and underscores, must start with an letter.": "Identificator voor programma gebruik. Ondersteunt letters, cijfers en underscores, moet met een letter beginnen.",
693
+ "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.": "Als een collectie geen primaire sleutel heeft, moet je een unieke recordsleutel configureren om rijen binnen een blok te lokaliseren. Anders kunnen er geen gegevensblokken worden aangemaakt.",
694
+ "If collection inherits, choose inherited collections as templates": "Als de collectie overerft, kies geërfde collecties als sjablonen.",
695
+ "If selected, the page will display Tab pages.": "Indien geselecteerd, worden tabbladen op de pagina weergegeven.",
696
+ "If selected, the route will be displayed in the menu.": "Indien geselecteerd, wordt de route weergegeven in het menu.",
697
+ "Ignore invalid email length errors": "Ignore invalid email length errors",
698
+ "Imperative Drawer": "Imperative Drawer",
699
+ "Import": "Importeer",
700
+ "Importable fields": "Importeerbare velden",
701
+ "In configuration": "In configuratie",
702
+ "In configuration mode, the entire column becomes transparent. In non-configuration mode, the entire column will be hidden. Even if the entire column is hidden, its configured default values and other settings will still take effect.": "In configuratiemodus wordt de hele kolom transparant. In niet-configuratiemodus wordt de hele kolom verborgen. Zelfs als de hele kolom verborgen is, blijven de geconfigureerde standaardwaarden en andere instellingen van kracht.",
703
+ "Incomplete uploading files need to be resolved": "Onvolledig geüploade bestanden moeten worden opgelost.",
704
+ "Index": "Index",
705
+ "Individual": "Individueel",
706
+ "Inherited fields": "Geërfde velden",
707
+ "Inherited template": "Overerfde sjabloon",
708
+ "Inherits": "Erft",
709
+ "Inner": "Intern",
710
+ "Input": "Input",
582
711
  "Input +, -, *, /, ( ) to calculate, input @ to open field variables.": "Voer +, -, *, /, ( ) in om te berekenen, voer @ in om veldvariabelen te openen.",
583
- "Formula error.": "Formulefout.",
584
- "Rich Text": "Opgemaakte tekst",
712
+ "Input request data": "Input request data",
713
+ "Insert": "Invoegen",
714
+ "Insert above": "Boven invoegen",
715
+ "Insert after": "Invoegen na",
716
+ "Insert before": "Invoegen voor",
717
+ "Insert below": "Onder invoegen",
718
+ "Insert if not exists": "Invoegen als het niet bestaat",
719
+ "Insert if not exists, or update": "Invoegen als het niet bestaat, of bijwerken",
720
+ "Insert inner": "Binnenkant invoegen",
721
+ "Insert left": "Links invoegen",
722
+ "Insert right": "Rechts invoegen",
723
+ "Installing": "Installeren",
724
+ "Integer": "Geheel getal",
725
+ "Invalid JSON format": "Ongeldig JSON-formaat",
726
+ "Inverse field display name": "Weergavenaam omgekeerd veld",
727
+ "Inverse field name": "Omgekeerde veldnaam",
728
+ "Inverse relationship type": "Omgekeerd relatietype",
729
+ "Italic": "Cursief",
585
730
  "Junction collection": "Koppelingstabel",
731
+ "Kanban": "Kanban",
732
+ "Label": "Label",
733
+ "Label align": "Label align",
734
+ "Label field": "Label veld",
735
+ "Label width": "Label width",
736
+ "Language": "Taal",
737
+ "Large": "Groot",
738
+ "Large screen device": "Groot schermapparaat",
739
+ "Last 30 days": "Laatste 30 dagen",
740
+ "Last 7 days": "Laatste 7 dagen",
741
+ "Last 90 days": "Laatste 90 dagen",
742
+ "Last Month": "Last Month",
743
+ "Last Quarter": "Last Quarter",
744
+ "Last Week": "Last Week",
745
+ "Last Year": "Last Year",
746
+ "Last month": "Vorige maand",
747
+ "Last quarter": "Vorig kwartaal",
748
+ "Last updated": "Laatst bijgewerkt",
749
+ "Last updated at": "Laatst bijgewerkt op",
750
+ "Last updated by": "Laatst bijgewerkt door",
751
+ "Last week": "Vorige week",
752
+ "Last year": "Vorig jaar",
753
+ "Layout": "Layout",
586
754
  "Leave it blank, unless you need a custom intermediate table": "Laat leeg, tenzij je een aangepaste tussenliggende tabel nodig hebt",
587
- Fields: "Velden",
588
- "Edit field title": "Veldtitel bewerken",
589
- "Field title": "Veldtitel",
590
- "Original field title: ": "Originele veldtitel: ",
591
- "Edit tooltip": "Tooltip bewerken",
592
- "Delete field": "Veld verwijderen",
593
- "Select collection": "Selecteer collectie",
594
- "Blank block": "Leeg blok",
595
- "Duplicate template": "Sjabloon dupliceren",
596
- "Reference template": "Sjabloon refereren",
597
- "Inherited template": "Overerfde sjabloon",
598
- "Create calendar block": "Kalenderblok maken",
599
- "Create kanban block": "Kanbanblok maken",
600
- "Grouping field": "Groepeer veld",
601
- "Single select and radio fields can be used as the grouping field": "Enkelvoudige selecteer- en keuzerondjevelden kunnen worden gebruikt als groepeerveld",
602
- "Tab name": "Tabbladnaam",
603
- "Current record blocks": "Huidige recordblokken",
604
- "Popup message": "Popupbericht",
605
- "Delete role": "Rol verwijderen",
606
- "Role display name": "Rolweergavenaam",
607
- "Default role": "Standaardrol",
608
- "All collections use general action permissions by default; permission configured individually will override the default one.": "Alle collecties gebruiken standaard algemene actierechten; individueel geconfigureerde rechten overschrijven de standaardinstellingen.",
609
- "Allows configuration of the whole system, including UI, collections, permissions, etc.": "Maakt configuratie van het hele systeem mogelijk, inclusief gebruikersinterface, collecties, rechten, enz.",
610
- "New menu items are allowed to be accessed by default.": "Nieuwe menu-items zijn standaard toegankelijk.",
611
- "Global permissions": "Globale rechten",
612
- "General permissions": "Algemene rechten",
613
- "Global action permissions": "Globale actierechten",
614
- "General action permissions": "Algemene actierechten",
615
- "Plugin settings permissions": "Rechten voor plugin-instellingen",
616
- "Allow to desgin pages": "Toestaan om pagina's te ontwerpen",
617
- "Allow to manage plugins": "Toestaan om plugins te beheren",
618
- "Allow to configure plugins": "Toestaan om plugins te configureren",
619
- "Allows to configure interface": "Toestemming om de interface te configureren",
620
- "Allows to install, activate, disable plugins": "Toestemming om plugins te installeren, activeren of uitschakelen",
621
- "Allows to configure plugins": "Toestemming om plugins te configureren",
622
- "Action display name": "Actieweergavenaam",
623
- Allow: "Toestaan",
624
- "Data scope": "Databereik",
625
- "Action on new records": "Actie op nieuwe records",
626
- "Action on existing records": "Actie op bestaande records",
627
- "All records": "Alle records",
628
- "Own records": "Eigen records",
629
- "Permission policy": "Rechtenbeleid",
630
- Individual: "Individueel",
631
- General: "Algemeen",
632
- Accessible: "Toegankelijk",
633
- "Configure permission": "Rechten configureren",
634
- "Action permission": "Actierecht",
635
- "Field permission": "Veldrecht",
636
- "Scope name": "Bereiksnaam",
637
- "Unsaved changes": "Niet-opgeslagen wijzigingen",
638
- "Are you sure you don't want to save?": "Weet je zeker dat je niet wil opslaan?",
639
- Dragging: "Slepen",
640
- Popup: "Popup",
641
- "Column Settings": "Kolominstellingen",
642
- visible: "zichtbaar",
643
- "Pin to left": "Links vasthaal",
644
- "Pin to right": "Rechts vasthaal",
645
- Unpinned: "Losgehaald",
646
- "Fixed to the left": "Links vastgehaald",
647
- "Fixed to the right": "Rechts vastgehaald",
648
- "Not Fixed": "Losgehaald",
649
- "Trigger workflow": "Workflow activeren",
650
- "Request API": "API-aanvraag",
651
- "Assign field values": "Veldwaarden toewijzen",
652
- "Constant value": "Constante waarde",
653
- "Dynamic value": "Dynamische waarde",
654
- "Current user": "Huidige gebruiker",
655
- "Current role": "Huidige rol",
656
- "Current record": "Huidig record",
657
- "Current collection": "Huidige collectie",
658
- "Other collections": "Andere collecties",
659
- "Current popup record": "Huidig popup-record",
660
- "Parent popup record": "Ouder-popuprecord",
661
- "Associated records": "Gekoppelde records",
662
- "Parent record": "Hoofdrecord",
663
- "Current time": "Huidige tijd",
664
- "System variables": "Systeemvariabelen",
665
- "Date variables": "Datumvariabelen",
666
- "Message popup close method": "Bericht-popup sluitmethode",
667
- "Automatic close": "Automatisch sluiten",
755
+ "Left": "Left",
756
+ "Left fixed": "Links vastgezet",
757
+ "Length": "Lengte",
758
+ "Less than": "Less than",
759
+ "License": "Licentie",
760
+ "Lime": "Limoen",
761
+ "Limit": "Limit",
762
+ "Line break": "Line break",
763
+ "Line chart": "Lijngrafiek",
764
+ "Link": "Link",
765
+ "Link action settings": "Link action settings",
766
+ "Link to": "Koppel aan",
767
+ "Link to description": "Gebruikt om snel collectie-relaties te maken en compatibel met de meest voorkomende scenario's. Geschikt voor niet-ontwikkelaars. Wanneer aanwezig als veld, is het een keuzelijst die wordt gebruikt om records uit de doelcollectie te selecteren. Eenmaal aangemaakt, genereert het tegelijkertijd de bijbehorende velden van de huidige collectie in de doelcollectie.",
768
+ "Linkage rule": "Koppelingregel",
769
+ "Linkage rules": "Koppelingregels",
770
+ "Linkage with form fields": "Koppeling met formulier velden",
771
+ "List": "Lijst",
772
+ "Load all data when filter is empty": "Laad alle gegevens wanneer filter leeg is",
773
+ "Load collections": "Load collections",
774
+ "Local": "Lokaal",
775
+ "Log in with an existing account": "Inloggen met een bestaand account",
776
+ "Logging and monitoring": "Logging en monitoring",
777
+ "Logo": "Logo",
778
+ "Long text": "Lange tekst",
779
+ "MATHJS_DOC_URL": "https://v2.docs.nocobase.com/calculation-engine/math",
780
+ "Magenta": "Magenta",
781
+ "Main": "Hoofd",
782
+ "Main department": "Hoofdafdeling",
783
+ "Manage all settings": "Beheer alle instellingen",
668
784
  "Manually close": "Handmatig sluiten",
669
- "After successful update": "Na succesvolle update",
670
- "Save record": "Record opslaan",
671
- "Updated successfully": "Succesvol bijgewerkt",
672
- "After successful save": "Na succesvol opslaan",
673
- "After clicking the custom button, the following field values will be assigned according to the following form.": "Na het klikken op de aangepaste knop worden de volgende veldwaarden toegewezen volgens het onderstaande formulier.",
674
- "After clicking the custom button, the following fields of the current record will be saved according to the following form.": "Na het klikken op de aangepaste knop worden de volgende velden van het huidige record opgeslagen volgens het onderstaande formulier.",
675
- "Button background color": "Knopachtergrondkleur",
676
- Highlight: "Markeren",
677
- "Danger red": "Waarschuwing rood",
678
- "Custom request": "Aangepaste aanvraag",
679
- "Request settings": "Aanvraaginstellingen",
680
- "Request URL": "Aanvraag-URL",
681
- "Request method": "Aanvraagmethode",
682
- "Request query parameters": "Aanvraagqueryparameters",
683
- "Request headers": "Aanvraagheaders",
684
- "Request body": "Aanvraaginhoud",
685
- "Request success": "Aanvraag geslaagd",
686
- "Invalid JSON format": "Ongeldig JSON-formaat",
687
- "After successful request": "Na succesvolle aanvraag",
688
- "Add exportable field": "Exporteerbaar veld toevoegen",
689
- "Audit logs": "Auditlogboeken",
690
- "Record ID": "Record-ID",
691
- User: "Gebruiker",
692
- Field: "Veld",
693
- Select: "Selecteren",
694
- "Select field": "Veld selecteren",
695
- "Field value changes": "Wijzigingen in veldwaarden",
696
- "One to one (has one)": "E\xE9n op \xE9\xE9n (heeft \xE9\xE9n)",
697
- "One to one (belongs to)": "E\xE9n op \xE9\xE9n (behoort tot)",
698
- "Use the same time zone (GMT) for all users": "Gebruik dezelfde tijdzone (GMT) voor alle gebruikers",
699
- "Province/city/area name": "Provincie/stad/gebiedsnaam",
700
- "Enabled languages": "Ingeschakelde talen",
701
- "View all plugins": "Alle plugins bekijken",
702
- Print: "Afdrukken",
703
- Done: "Klaar",
704
- "Sign up successfully, and automatically jump to the sign in page": "Succesvol geregistreerd, springt automatisch naar de inlogpagina",
705
- "File manager": "Bestandsbeheer",
706
- ACL: "Toegangscontrolelijst",
707
- "Collection manager": "Collectiebeheerder",
708
- "Plugin manager": "Pluginbeheerder",
709
- Local: "Lokaal",
710
- "Built-in": "Ingebouwd",
711
- Marketplace: "Marktplaats",
712
- "Add plugin": "Plugin toevoegen",
713
- "Plugin source": "Pluginbron",
714
- Upgrade: "Upgrade",
715
- "Plugin dependencies check failed": "Controle van plug-in afhankelijkheden mislukt",
785
+ "Many to many": "Veel-op-veel",
786
+ "Many to many description": "Gebruikt om veel-op-veel-relaties te maken. Bijvoorbeeld, een student heeft veel leraren en een leraar heeft veel studenten. Wanneer aanwezig als veld, is het een keuzelijst die wordt gebruikt om records uit de geassocieerde collectie te selecteren.",
787
+ "Many to one": "Veel-op-een",
788
+ "Many to one description": "Gebruikt om een veel-op-een-relatie te maken. Bijvoorbeeld, een stad kan slechts tot één land behoren en een land kan veel steden hebben. Wanneer aanwezig als veld, is het een keuzelijst die wordt gebruikt om records uit de geassocieerde collectie te selecteren. Eenmaal aangemaakt, wordt automatisch een Een-op-veel veld gegenereerd in de geassocieerde collectie.",
789
+ "Markdown": "Markdown",
790
+ "Marketplace": "Marktplaats",
791
+ "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 wordt geleverd met een groot aantal ingebouwde functies en constanten en biedt een geïntegreerde oplossing om met verschillende gegevenstypen te werken.",
792
+ "Max Domain Segments": "Max Domain Segments",
793
+ "Max length": "Maximale lengte",
794
+ "Max length must greater than min length": "Maximale lengte moet groter zijn dan minimale lengte",
795
+ "Max value": "Max value",
796
+ "MaxDate": "Maximale datum",
797
+ "Maximum": "Maximum",
798
+ "Maximum must greater than minimum": "Maximum moet groter zijn dan minimum",
799
+ "Media": "Media",
800
+ "Medium": "Medium",
801
+ "Meet": "Meet",
802
+ "Meet <1><0>All</0><1>Any</1></1> conditions in the group": "Voldoe aan <1><0>Alle</0><1>Een</1></1> voorwaarde(n) in de groep",
803
+ "Menu": "Menu",
804
+ "Menu item icon": "Menupictogram",
805
+ "Menu item name": "Menunaam",
806
+ "Menu item title": "Menutitel",
807
+ "Menu permissions": "Menurechten",
808
+ "Message content": "Message content",
809
+ "Message popup close method": "Bericht-popup sluitmethode",
810
+ "Message type": "Message type",
811
+ "Middle": "Middel",
812
+ "Millisecond": "Milliseconde",
813
+ "Min Domain Segments": "Min Domain Segments",
814
+ "Min length": "Minimale lengte",
815
+ "Min length must less than max length": "Minimale lengte moet kleiner zijn dan maximale lengte",
816
+ "Min value": "Min value",
817
+ "MinDate": "Minimale datum",
818
+ "Minimum": "Minimum",
819
+ "Minimum must less than maximum": "Minimum moet kleiner zijn dan maximum",
820
+ "Mobile": "Mobile",
821
+ "Mobile routes": "Mobiele routes",
822
+ "Modal": "Modal",
823
+ "Modal add": "Toevoegen via venster",
824
+ "Mode": "Mode",
825
+ "Modern page (v2)": "Modern page (v2)",
826
+ "Month": "Maand",
827
+ "Monthly": "Maandelijks",
716
828
  "More details": "Meer details",
717
- "Upload new version": "Nieuwe versie uploaden",
718
- Version: "Versie",
829
+ "More options": "Meer opties",
830
+ "Move down": "Move down",
831
+ "Move to": "Verplaats naar",
832
+ "Move up": "Move up",
833
+ "Move {{title}} to": "Verplaats {{title}} naar",
834
+ "Multiple": "Multiple",
835
+ "Multiple select": "Meerdere selecteren",
836
+ "Multiply by": "Vermenigvuldigen met",
837
+ "Must be 1-50 characters in length (excluding @.<>\"'/)": "Moet 1-50 tekens lang zijn (exclusief @.<>\"'/)",
838
+ "Must select to the last level": "Moet tot het laatste niveau selecteren",
839
+ "Must use `-` and `:`": "Must use `-` and `:`",
840
+ "N/A": "N/A",
841
+ "Name": "Naam",
842
+ "Navigate": "Navigeren",
843
+ "Navigate to URL": "Navigate to URL",
844
+ "New menu items are allowed to be accessed by default.": "Nieuwe menu-items zijn standaard toegankelijk.",
845
+ "New password": "Nieuw wachtwoord",
846
+ "New routes are allowed to be accessed by default": "Nieuwe routes zijn standaard toegankelijk",
847
+ "Next": "Next",
848
+ "Next 30 days": "Volgende 30 dagen",
849
+ "Next 7 days": "Volgende 7 dagen",
850
+ "Next 90 days": "Volgende 90 dagen",
851
+ "Next Month": "Next Month",
852
+ "Next Quarter": "Next Quarter",
853
+ "Next Week": "Next Week",
854
+ "Next Year": "Next Year",
855
+ "Next month": "Volgende maand",
856
+ "Next quarter": "Volgend kwartaal",
857
+ "Next week": "Volgende week",
858
+ "Next year": "Volgend jaar",
859
+ "Nickname": "Bijnaam",
860
+ "No": "Nee",
861
+ "No CHANGELOG.md file": "Geen CHANGELOG.md-bestand",
862
+ "No README.md file": "Geen README.md-bestand",
863
+ "No allow `-` and `:`": "No allow `-` and `:`",
864
+ "No assigned fields configured": "No assigned fields configured",
865
+ "No blocks to connect": "Geen blokken om te verbinden",
866
+ "No configuration available.": "Geen configuratie beschikbaar.",
867
+ "No data": "Geen data",
868
+ "No event flows": "No event flows",
869
+ "No form available for reset.": "No form available for reset.",
870
+ "No form available for submission.": "No form available for submission.",
871
+ "No linkage rules": "No linkage rules",
872
+ "No pages yet, please configure first": "No pages yet, please configure first",
873
+ "No parent popup": "No parent popup",
874
+ "No records selected for bulk edit": "No records selected for bulk edit",
875
+ "No records selected for deletion": "No records selected for deletion",
876
+ "No resource or record selected for deletion": "No resource or record selected for deletion",
877
+ "No resource selected for bulk edit": "No resource selected for bulk edit",
878
+ "No resource selected for deletion": "No resource selected for deletion",
879
+ "No resource selected for refresh": "No resource selected for refresh",
880
+ "None": "Geen",
881
+ "Normal": "Normaal",
882
+ "Not Fixed": "Losgehaald",
883
+ "Not enabled": "Niet ingeschakeld",
884
+ "Not fixed": "Niet vastgezet",
885
+ "Not required": "Niet vereist",
886
+ "Notification": "Melding",
887
+ "Notification description": "Notification description",
888
+ "Notification title": "Notification title",
889
+ "Notification type": "Notification type",
890
+ "Now": "Nu",
719
891
  "Npm package": "Npm-pakket",
720
892
  "Npm package name": "Naam van npm-pakket",
721
- "Upload plugin": "Plugin uploaden",
722
- "Official plugin": "Offici\xEBle plugin",
723
- "Add type": "Type toevoegen",
724
- Changelog: "Wijzigingslogboek",
725
- "Dependencies check": "Afhankelijkhedencontrole",
726
- "Update plugin": "Plugin bijwerken",
727
- Installing: "Installeren",
728
- "The deletion was successful.": "De verwijdering is succesvol.",
893
+ "Null": "Leeg",
894
+ "Number": "Nummer",
895
+ "Number settings": "Number settings",
896
+ "Object Fit": "Objectaanpassing",
897
+ "Off": "Uit",
898
+ "Official plugin": "Officiële plugin",
899
+ "Old password": "Oud wachtwoord",
900
+ "On": "Aan",
901
+ "One to many": "Een-op-veel",
902
+ "One to many description": "Gebruikt om een een-op-veel-relatie te maken. Bijvoorbeeld, een land heeft veel steden en een stad kan slechts in één land zijn. Wanneer aanwezig als veld, is het een sub-tabel die de records van de geassocieerde collectie weergeeft. Wanneer aangemaakt, wordt automatisch een Veel-op-een veld gegenereerd in de geassocieerde collectie.",
903
+ "One to one": "Een-op-een",
904
+ "One to one (belongs to)": "Eén op één (behoort tot)",
905
+ "One to one (has one)": "Eén op één (heeft één)",
906
+ "One to one description": "Gebruikt om een-op-een relaties te maken. For example, a user has a profile.",
907
+ "Only support standard JSON data": "Only support standard JSON data",
908
+ "Only the selected fields will be used as the initialization data for the form": "Alleen de geselecteerde velden worden gebruikt als initiële data voor het formulier.",
909
+ "Only use `-`": "Only use `-`",
910
+ "Only use `.`": "Only use `.`",
911
+ "Only use `_`": "Only use `_`",
912
+ "Open in new window": "Openen in nieuw venster",
913
+ "Open in<1><0>Modal</0><1>Drawer</1><2>Window</2></1>": "Open in<1><0>Modal</0><1>Drawer</1><2>Venster</2></1>",
914
+ "Open mode": "Openingsmodus",
915
+ "Open mode configuration": "Open mode configuration",
916
+ "Operate on existing data": "Werken met bestaande data",
917
+ "Operate on new data": "Werken met nieuwe data",
918
+ "Operation failed": "Bewerking mislukt",
919
+ "Operation succeeded": "Bewerking geslaagd",
920
+ "Operator": "Operator",
921
+ "Option label": "Optielabel",
922
+ "Option value": "Optiewaarde",
923
+ "Options": "Opties",
924
+ "Orange": "Oranje",
925
+ "Original field title: ": "Originele veldtitel: ",
926
+ "Original name": "Originele naam",
927
+ "Original title: ": "Originele titel: ",
928
+ "Other": "Overige",
929
+ "Other action": "Other action",
930
+ "Other block": "Other block",
931
+ "Other blocks": "Andere blokken",
932
+ "Other chart": "Andere grafiek",
933
+ "Other collections": "Andere collecties",
934
+ "Other column": "Other column",
935
+ "Other form": "Other form",
936
+ "Other records": "Andere records",
937
+ "Others": "Overigen",
938
+ "Outlined": "Outlined",
939
+ "Override": "Overschrijven",
940
+ "Override field": "Veld overschrijven",
941
+ "Oversized": "Te groot",
942
+ "Own records": "Eigen records",
943
+ "Owners": "Eigenaren",
944
+ "PK & FK fields": "PK & FK velden",
945
+ "Package name": "Package name",
946
+ "PackageName": "Pakketnaam",
947
+ "Page": "Pagina",
948
+ "Page (v2)": "Page (v2)",
949
+ "Page Title": "Page Title",
950
+ "Page number": "Paginanummer",
951
+ "Page settings": "Page settings",
952
+ "Page size": "Paginagrootte",
953
+ "Parent": "Ouder",
954
+ "Parent ID": "Ouder-ID",
955
+ "Parent collection fields": "Velden van bovenliggende collectie",
956
+ "Parent object": "Bovenliggend object",
957
+ "Parent popup": "Parent popup",
958
+ "Parent popup record": "Ouder-popuprecord",
959
+ "Parent record": "Hoofdrecord",
960
+ "Password": "Wachtwoord",
961
+ "Password Options": "Password Options",
962
+ "Password mismatch": "Wachtwoorden komen niet overeen",
963
+ "Past": "Past",
964
+ "Path": "Pad",
965
+ "Pattern": "Patroon",
966
+ "Percent": "Percentage",
967
+ "Perform the Custom request": "Perform the Custom request",
968
+ "Perform the Refresh": "Perform the Refresh",
969
+ "Perform the Submit": "Perform the Submit",
970
+ "Perform the Trigger workflow": "Perform the Trigger workflow",
971
+ "Perform the Update record": "Perform the Update record",
972
+ "Perform the {{title}}": "Voer {{title}} uit.",
973
+ "Permission deined": "Toegang geweigerd",
974
+ "Permission denied": "Toestemming geweigerd.",
975
+ "Permission policy": "Rechtenbeleid",
976
+ "Phone": "Telefoon",
977
+ "Phone device": "Telefoonapparaat",
978
+ "Picker": "Picker",
979
+ "Pie chart": "Taartgrafiek",
980
+ "Pin to left": "Links vasthaal",
981
+ "Pin to right": "Rechts vasthaal",
982
+ "Placeholder": "Placeholder",
983
+ "Placement": "Placement",
984
+ "Please add a data block on the page first": "Please add a data block on the page first",
985
+ "Please add or select record": "Please add or select record",
986
+ "Please configure the URL": "Configureer de URL.",
987
+ "Please configure the duplicate fields": "Configureer de te dupliceren velden",
988
+ "Please confirm the SQL statement first": "Bevestig eerst de SQL-verklaring",
989
+ "Please enter form uid": "Please enter form uid",
990
+ "Please enter the target block UID": "Please enter the target block UID",
991
+ "Please enter variable identifier": "Please enter variable identifier",
992
+ "Please enter variable title": "Please enter variable title",
993
+ "Please fill in the iframe URL": "Vul de iframe-URL in",
994
+ "Please input message content": "Please input message content",
995
+ "Please input notification description": "Please input notification description",
996
+ "Please input notification title": "Please input notification title",
997
+ "Please input target action uid": "Please input target action uid",
998
+ "Please input target block uid": "Please input target block uid",
999
+ "Please input target form uid": "Please input target form uid",
1000
+ "Please select": "Please select",
1001
+ "Please select field": "Please select field",
1002
+ "Please select fields": "Please select fields",
1003
+ "Please select fields to filter": "Please select fields to filter",
1004
+ "Please select filterable fields": "Please select filterable fields",
1005
+ "Please select state": "Please select state",
1006
+ "Please select the records to be updated": "Selecteer de records die moeten worden bijgewerkt",
1007
+ "Please select time or variable": "Selecteer een tijd of variabele.",
1008
+ "Please use a valid SELECT or WITH AS statement": "Gebruik een geldige SELECT of WITH AS-verklaring",
1009
+ "Plugin": "Plugin",
729
1010
  "Plugin Zip File": "Plugin-zipbestand",
730
- "Compressed file url": "URL van gecomprimeerd bestand",
731
- "Last updated": "Laatst bijgewerkt",
732
- PackageName: "Pakketnaam",
733
- DisplayName: "Weergavenaam",
734
- Readme: "Lees mij",
735
- "Dependencies compatibility check": "Compatibiliteitscontrole afhankelijkheden",
1011
+ "Plugin dependencies check failed": "Controle van plug-in afhankelijkheden mislukt",
736
1012
  "Plugin dependencies check failed, you should change the dependent version to meet the version requirements.": "Controle van plug-in afhankelijkheden mislukt. Je moet de afhankelijke versie aanpassen aan de versievereisten.",
737
- "Version range": "Versiebereik",
738
- "Plugin's version": "Plug-in versie",
739
- Result: "Resultaat",
740
- "No CHANGELOG.md file": "Geen CHANGELOG.md-bestand",
741
- "No README.md file": "Geen README.md-bestand",
742
- Homepage: "Homepage",
743
- "Drag and drop the file here or click to upload, file size should not exceed 30M": "Sleep het bestand hierheen of klik om te uploaden, bestandsgrootte mag niet groter zijn dan 30 MB",
744
- "Dependencies check failed, can't enable.": "Controle van afhankelijkheden mislukt, inschakelen niet mogelijk.",
745
- "Plugin starting...": "Plugin wordt gestart...",
746
- "Plugin stopping...": "Plugin wordt gestopt...",
747
- "Are you sure to delete this plugin?": "Weet je zeker dat je deze plugin wil verwijderen?",
748
- "Are you sure to disable this plugin?": "Weet je zeker dat je deze plugin wil uitschakelen?",
749
- "re-download file": "bestand opnieuw downloaden",
750
- "Not enabled": "Niet ingeschakeld",
751
- "Search plugin": "Plugin zoeken",
752
- Author: "Auteur",
1013
+ "Plugin dependency version mismatch": "Versieafhankelijkheid van plugin komt niet overeen",
753
1014
  "Plugin loading failed. Please check the server logs.": "Het laden van de plugin is mislukt. Controleer de serverlogs.",
754
- "Coming soon...": "Binnenkort beschikbaar...",
755
- "All plugin settings": "Alle plugininstellingen",
756
- Bookmark: "Bladwijzer",
757
- "Manage all settings": "Beheer alle instellingen",
758
- "Create inverse field in the target collection": "Cre\xEBer een omgekeerd veld in de doelcollectie",
759
- "Inverse field name": "Omgekeerde veldnaam",
760
- "Inverse field display name": "Weergavenaam omgekeerd veld",
761
- "Bulk update": "Updaten in bulk",
762
- "After successful bulk update": "Na succesvolle update in bulk",
763
- "Bulk edit": "Bewerken in bulk",
764
- "Data will be updated": "Gegevens worden bijgewerkt",
765
- Selected: "Geselecteerd",
766
- All: "Alles",
767
- "Update selected data?": "Geselecteerde gegevens bijwerken?",
768
- "Update all data?": "Alle gegevens bijwerken?",
769
- "Remains the same": "Blijft hetzelfde",
770
- "Changed to": "Veranderd in",
771
- Clear: "Wissen",
772
- "Add attach": "Bijlage toevoegen",
773
- "Please select the records to be updated": "Selecteer de records die moeten worden bijgewerkt",
774
- Selector: "Selector",
775
- Inner: "Intern",
776
- "Search and select collection": "Zoek en selecteer collectie",
777
- "Please fill in the iframe URL": "Vul de iframe-URL in",
778
- "Fix block": "Blok vastzetten",
1015
+ "Plugin manager": "Pluginbeheerder",
779
1016
  "Plugin name": "Pluginnaam",
1017
+ "Plugin settings": "Plugin-instellingen",
1018
+ "Plugin settings permissions": "Rechten voor plugin-instellingen",
1019
+ "Plugin source": "Pluginbron",
1020
+ "Plugin starting...": "Plugin wordt gestart...",
1021
+ "Plugin stopping...": "Plugin wordt gestopt...",
780
1022
  "Plugin tab name": "Naam plugintabblad",
781
- AutoGenId: "Automatisch gegenereerd ID veld",
782
- CreatedBy: "Aangemaakt door",
783
- UpdatedBy: "Bijgewerkt door",
784
- CreatedAt: "Aangemaakt op",
785
- UpdatedAt: "Bijgewerkt op",
786
- "Column width": "Kolombreedte",
787
- Sortable: "Sorteerbaar",
788
- "Enable link": "Link inschakelen",
789
- "This is likely a NocoBase internals bug. Please open an issue at <1>here</1>": "Dit is waarschijnlijk een interne bug in NocoBase. Open een issue via <1>hier</1>",
790
- "Render Failed": "Renderen mislukt",
791
- "App error": "App-fout",
792
- Feedback: "Feedback",
793
- "Try again": "Probeer opnieuw",
794
- "Download logs": "Logs downloaden",
795
- "Data template": "Gegevenssjabloon",
796
- Duplicate: "Dupliceren",
797
- Duplicating: "Dupliceren",
798
- "Duplicate mode": "Dupliceermodus",
799
- "Quick duplicate": "Snel dupliceren",
800
- "Duplicate and continue": "Dupliceren en doorgaan",
801
- "Please configure the duplicate fields": "Configureer de te dupliceren velden",
802
- Add: "Toevoegen",
803
- "Add new mode": "Nieuwe modus toevoegen",
1023
+ "Plugin's version": "Plug-in versie",
1024
+ "Pop-up": "Pop-up",
1025
+ "Popup": "Popup",
1026
+ "Popup form": "Pop-up formulier",
1027
+ "Popup message": "Popupbericht",
1028
+ "Popup record": "Popup record",
1029
+ "Popup settings": "Popup settings",
1030
+ "Popup size": "Popupgrootte",
1031
+ "Popup uid": "Popup UID",
1032
+ "Position": "Positie",
1033
+ "Precision": "Precisie",
1034
+ "Precision(UI)": "Precision(UI)",
1035
+ "Prefix": "Voorvoegsel",
1036
+ "Preset fields": "Voorinstellingen",
1037
+ "Prettify": "Opknappen",
1038
+ "Preview": "Voorbeeld",
1039
+ "Preview Settings": "Preview Settings",
1040
+ "Preview field component": "Preview field component",
1041
+ "Primary": "Primaire",
1042
+ "Primary key, unique identifier, self growth": "Primaire sleutel, unieke identifier, zelfgroei",
1043
+ "Print": "Afdrukken",
1044
+ "Problematic": "Problematisch",
1045
+ "Progress field": "Voortgangsveld",
1046
+ "Properties": "Eigenschappen",
1047
+ "Providing certain collections as options for users, typically used in polymorphic or inheritance scenarios": "Bepaalde collecties aanbieden als opties voor gebruikers, meestal gebruikt in polymorfe of erfelijkheidsscenario's",
1048
+ "Province": "Provincie",
1049
+ "Province/city/area name": "Provincie/stad/gebiedsnaam",
1050
+ "Purple": "Paars",
1051
+ "Quarter": "Quarter",
1052
+ "Quarter of day": "Kwartaal van de dag",
1053
+ "QuarterYear": "Kwartaaljaar",
804
1054
  "Quick add": "Snel toevoegen",
805
- "Modal add": "Toevoegen via venster",
806
- "Save mode": "Opslagmodus",
807
- "First or create": "Eerste of aanmaken",
808
- "Update or create": "Bijwerken of aanmaken",
809
- "Find by the following fields": "Zoek op de volgende velden",
810
- Create: "Aanmaken",
811
- "Current form": "Huidig formulier",
812
- "Current object": "Huidig object",
813
- "Linkage with form fields": "Koppeling met formulier velden",
814
- "Allow add new, update and delete actions": "Toestaan om toe te voegen, bijwerken en verwijderen",
815
- "Date display format": "Weergaveformaat datum",
816
- "Assign data scope for the template": "Gegevensbereik toewijzen aan sjabloon",
817
- "Table selected records": "Tabel geselecteerde records",
818
- Tag: "Label",
819
- "Tag color field": "Labelkleurveld",
820
- "Sync successfully": "Succesvol gesynchroniseerd",
821
- "Sync from form fields": "Synchroniseren vanaf formulier velden",
822
- "Select all": "Alles selecteren",
823
- Restart: "Herstarten",
1055
+ "Quick create": "Snel aanmaken",
1056
+ "Quick duplicate": "Snel dupliceren",
1057
+ "Quick upload": "Snelle upload",
1058
+ "Radio group": "Radiogroep",
1059
+ "Randomly generated and can be modified. Support letters, numbers and underscores, must start with an letter.": "Willekeurig gegenereerd en kan worden aangepast. Ondersteunt letters, cijfers en onderstrepingstekens, moet beginnen met een letter.",
1060
+ "Read only": "Alleen-lezen",
1061
+ "ReadOnly": "ReadOnly",
1062
+ "ReadPretty": "ReadPretty",
1063
+ "Readme": "Lees mij",
1064
+ "Readonly": "Alleen-lezen",
1065
+ "Recommended": "Recommended",
1066
+ "Record ID": "Record-ID",
1067
+ "Record deleted successfully": "Record deleted successfully",
1068
+ "Record picker": "Selecteer record",
1069
+ "Record unique key": "Unieke recordsleutel",
1070
+ "RecordPicker settings": "RecordPicker settings",
1071
+ "Records can be sorted": "Records kunnen worden gesorteerd",
1072
+ "Records per page": "Records per pagina",
1073
+ "Red": "Rood",
1074
+ "Redirect to": "Omleiden naar",
1075
+ "Reference template": "Sjabloon refereren",
1076
+ "References": "References",
1077
+ "Refresh": "Vernieuwen",
1078
+ "Refresh data after execution": "Refresh data after execution",
1079
+ "Refresh data blocks": "Vernieuw gegevensblokken",
1080
+ "Refresh data on action": "Ververs gegevens bij actie.",
1081
+ "Refresh data on close": "Ververs gegevens bij sluiten.",
1082
+ "Refresh target blocks": "Refresh target blocks",
1083
+ "Regular Expression": "Regular Expression",
1084
+ "Regular expression": "Patroon",
1085
+ "Related collection": "Gerelateerde collectie",
1086
+ "Relation": "Relatie",
1087
+ "Relationship blocks": "Relatieblokken",
1088
+ "Relationship type": "Relatietype",
1089
+ "Reload application": "Herlaad applicatie",
1090
+ "Remains the same": "Blijft hetzelfde",
1091
+ "Remove": "Verwijderen",
1092
+ "Render Failed": "Renderen mislukt",
1093
+ "Render mode": "Render mode",
1094
+ "Repeats": "Herhalingen",
1095
+ "Request API": "API-aanvraag",
1096
+ "Request URL": "Aanvraag-URL",
1097
+ "Request body": "Aanvraaginhoud",
1098
+ "Request headers": "Aanvraagheaders",
1099
+ "Request method": "Aanvraagmethode",
1100
+ "Request query parameters": "Aanvraagqueryparameters",
1101
+ "Request settings": "Aanvraaginstellingen",
1102
+ "Request success": "Aanvraag geslaagd",
1103
+ "Required": "Verplicht",
1104
+ "Reset": "Resetten",
1105
+ "Reset link expiration": "Reset linkverval",
1106
+ "Response record": "Response record",
1107
+ "Response type": "Response type",
1108
+ "Restart": "Herstarten",
824
1109
  "Restart application": "Applicatie herstarten",
825
- "Cascade Select": "Cascade selectie",
826
- Execute: "Uitvoeren",
827
- "Please use a valid SELECT or WITH AS statement": "Gebruik een geldige SELECT of WITH AS-verklaring",
828
- "Please confirm the SQL statement first": "Bevestig eerst de SQL-verklaring",
829
- "Automatically drop objects that depend on the collection (such as views), and in turn all objects that depend on those objects": "Automatisch objecten verwijderen die afhankelijk zijn van de collectie (zoals weergaven) en ook alle objecten die daarvan afhankelijk zijn",
830
- "Sign in with another account": "Aanmelden met een ander account",
1110
+ "Restrict only relative URIs": "Restrict only relative URIs",
1111
+ "Result": "Resultaat",
1112
+ "Retry after {{count}} seconds": "Probeer opnieuw over {{count}} seconden",
831
1113
  "Return to the main application": "Terug naar de hoofdapplicatie",
832
- "Permission deined": "Toegang geweigerd",
833
- loading: "laden",
834
- "name is required": "naam is vereist",
835
- "data source": "gegevensbron",
836
- "Data source": "Gegevensbron",
837
- DataSource: "Gegevensbron",
838
- 'The {{type}} "{{name}}" may have been deleted. Please remove this {{blockType}}.': 'Het {{type}} "{{name}}" is mogelijk verwijderd. Verwijder dit {{blockType}}.',
839
- "Preset fields": "Voorinstellingen",
840
- "Home page": "Startpagina",
841
- Handbook: "Handleiding",
842
- License: "Licentie",
843
- "Generic properties": "Algemene eigenschappen",
844
- "Specific properties": "Specifieke eigenschappen",
845
- "Used for drag and drop sorting scenarios, supporting grouping sorting": "Gebruikt voor drag and drop sorteren, met ondersteuning voor groeperen",
846
- "Grouped sorting": "Gegroepeerd sorteren",
847
- "When a field is selected for grouping, it will be grouped first before sorting.": "Als een veld wordt geselecteerd voor groepering, wordt dit eerst gegroepeerd voordat er wordt gesorteerd.",
848
- Departments: "Afdelingen",
849
- "Main department": "Hoofdafdeling",
850
- "Department name": "Afdelingsnaam",
851
- "Superior department": "Overkoepelende afdeling",
852
- Owners: "Eigenaren",
853
- "Plugin settings": "Plugin-instellingen",
854
- Menu: "Menu",
855
- "Drag and drop sorting field": "Sorteren via drag and drop",
856
- 'This variable has been deprecated and can be replaced with "Current form"': 'Deze variabele is verouderd en kan worden vervangen door "Huidig formulier"',
857
- "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.": "De waarde van deze variabele is afgeleid van de querystring in de URL. Deze variabele werkt alleen correct als de pagina een querystring bevat.",
858
- "URL search params": "URL zoekparameters",
859
- "Expand All": "Alles uitvouwen",
860
- Search: "Zoeken",
861
- "Clear default value": "Standaardwaarde wissen",
862
- "Open in new window": "Openen in nieuw venster",
863
- "Sorry, the page you visited does not exist.": "Sorry, de pagina die je bezocht bestaat niet.",
864
- "is none of": "is geen van",
865
- "is any of": "is een van",
866
- "Plugin dependency version mismatch": "Versieafhankelijkheid van plugin komt niet overeen",
867
- "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?": "De huidige afhankelijkheidsversie van de plugin komt niet overeen met de versie van de applicatie en werkt mogelijk niet correct. Weet je zeker dat je de plugin wil blijven inschakelen?",
868
- "Allow multiple selection": "Meerdere selecties toestaan",
869
- "Parent object": "Bovenliggend object",
870
- "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": "Sla het ophalen van het totale aantal tabelrecords over tijdens paginering om het laden te versnellen. Het wordt aanbevolen om deze optie in te schakelen voor datatabellen met veel gegevens.",
871
- "Enable secondary confirmation": "Tweede bevestiging inschakelen",
872
- Notification: "Melding",
873
- "Ellipsis overflow content": "Inhoud afkorten met ellips",
874
- "Hide column": "Kolom verbergen",
875
- "In configuration mode, the entire column becomes transparent. In non-configuration mode, the entire column will be hidden. Even if the entire column is hidden, its configured default values and other settings will still take effect.": "In configuratiemodus wordt de hele kolom transparant. In niet-configuratiemodus wordt de hele kolom verborgen. Zelfs als de hele kolom verborgen is, blijven de geconfigureerde standaardwaarden en andere instellingen van kracht.",
876
- "Unauthenticated. Please sign in to continue.": "Niet geauthenticeerd. Meld je aan om verder te gaan.",
877
- "User not found. Please sign in again to continue.": "Gebruiker niet gevonden. Meld je opnieuw aan om verder te gaan.",
878
- "Your session has expired. Please sign in again.": "Je sessie is verlopen. Meld je opnieuw aan.",
879
- "User password changed, please signin again.": "Gebruikerswachtwoord gewijzigd, meld je opnieuw aan.",
880
- "Desktop routes": "Desktop-routes",
881
- "Route permissions": "Route-machtigingen",
882
- "New routes are allowed to be accessed by default": "Nieuwe routes zijn standaard toegankelijk",
1114
+ "Return to the previous popup or page": "Return to the previous popup or page",
1115
+ "Rich Text": "Opgemaakte tekst",
1116
+ "Right": "Right",
1117
+ "Right fixed": "Rechts vastgezet",
1118
+ "Role UID": "Rol-ID",
1119
+ "Role display name": "Rolweergavenaam",
1120
+ "Role name": "Rolnaam",
1121
+ "Roles": "Rollen",
1122
+ "Roles & Permissions": "Rollen & Machtigingen",
883
1123
  "Route name": "Routenaam",
884
- "Mobile routes": "Mobiele routes",
885
- "Show in menu": "Weergeven in menu",
886
- "Hide in menu": "Verbergen in menu",
887
- Path: "Pad",
888
- Type: "Type",
889
- Access: "Toegang",
890
- Routes: "Routes",
891
- "Add child route": "Subroute toevoegen",
892
- "Delete routes": "Routes verwijderen",
893
- "Delete route": "Route verwijderen",
894
- "Are you sure you want to hide these routes in menu?": "Weet je zeker dat je deze routes in het menu wil verbergen?",
895
- "Are you sure you want to show these routes in menu?": "Weet je zeker dat je deze routes in het menu wil weergeven?",
896
- "Are you sure you want to hide this menu?": "Weet je zeker dat je dit menu wil verbergen?",
897
- "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.": "Na verbergen wordt dit menu niet meer weergegeven in de menubalk. Om het opnieuw te tonen, moet je naar de routebeheerpagina gaan om het in te stellen.",
898
- "If selected, the page will display Tab pages.": "Indien geselecteerd, worden tabbladen op de pagina weergegeven.",
899
- "If selected, the route will be displayed in the menu.": "Indien geselecteerd, wordt de route weergegeven in het menu.",
900
- "Are you sure you want to hide this tab?": "Weet je zeker dat je dit tabblad wil verbergen?",
901
- "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.": "Na verbergen wordt dit tabblad niet meer weergegeven in de tabbalk. Om het opnieuw te tonen, moet je naar de routebeheerpagina gaan om het in te stellen.",
902
- "Calculation engine": "Berekeningsengine",
903
- "Expression collection": "Expressiecollectie",
904
- "Tree collection": "Boomcollectie",
905
- "Parent ID": "Ouder-ID",
906
- Parent: "Ouder",
907
- Children: "Kinderen",
908
- Confirm: "Bevestigen",
909
- Block: "Blok",
910
- Unnamed: "Naamloos",
1124
+ "Route permissions": "Route-machtigingen",
1125
+ "Routes": "Routes",
1126
+ "Row click": "Row click",
1127
+ "Rows": "Rows",
911
1128
  "SQL collection": "SQL-collectie",
912
- "Configure field": "Veld configureren",
913
- Username: "Gebruikersnaam",
914
- Null: "Leeg",
915
- Boolean: "Boolean",
916
- String: "Tekst",
917
- "Syntax references": "Syntax-referenties",
918
- "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 wordt geleverd met een groot aantal ingebouwde functies en constanten en biedt een ge\xEFntegreerde oplossing om met verschillende gegevenstypen te werken.",
919
- "Formula.js supports most Microsoft Excel formula functions.": "Formula.js ondersteunt de meeste Microsoft Excel-formulefuncties.",
920
- "String template": "Tekstsjabloon",
921
- "Simple string replacement, can be used to interpolate variables in a string.": "Eenvoudige tekstvervanging, kan worden gebruikt om variabelen in een tekst te interpoleren.",
922
- "https://docs.nocobase.com/handbook/calculation-engines/formula": "https://docs.nocobase.com/handbook/calculation-engines/formula",
923
- "https://docs.nocobase.com/handbook/calculation-engines/mathjs": "https://docs.nocobase.com/handbook/calculation-engines/mathjs",
924
- "Display <icon></icon> when unchecked": "Toon <icon></icon> wanneer niet aangevinkt",
925
- "Allow dissociate": "Loskoppelen toestaan",
926
- "Edit block title & description": "Blok titel & beschrijving bewerken",
927
- "Add Markdown": "Markdown toevoegen",
928
- "Must be 1-50 characters in length (excluding @.<>\"'/)": `Moet 1-50 tekens lang zijn (exclusief @.<>"'/)`,
929
- "Original title: ": "Originele titel: ",
930
- "Original field title: ": "Originele veldtitel: ",
931
- "Data source permissions": "Datatoegangsrechten",
932
- Now: "Nu",
933
- "Access control": "Toegangscontrole",
934
- Remove: "Verwijderen",
935
- Docs: "Documentatie",
936
- "Enable page header": "Paginahoofd inschakelen",
937
- "Display page title": "Paginatitel weergeven",
938
- "Edit page title": "Paginatitel bewerken",
939
- "Enable page tabs": "Pagina-tabbladen inschakelen",
940
- Constant: "Constant",
1129
+ "Save": "Opslaan",
1130
+ "Save action": "Actie opslaan",
1131
+ "Save as block template": "Opslaan als bloksjabloon",
1132
+ "Save as inherited template": "Opslaan als overerfde sjabloon",
1133
+ "Save as reference template": "Opslaan als referentiesjabloon",
1134
+ "Save as template": "Save as template",
1135
+ "Save conditions": "Voorwaarden opslaan",
1136
+ "Save failed": "Save failed",
1137
+ "Save mode": "Opslagmodus",
1138
+ "Save record": "Record opslaan",
1139
+ "Saved successfully": "Succesvol opgeslagen",
1140
+ "Scale": "Scale",
1141
+ "Scale Down": "Schalen naar beneden",
1142
+ "Scan to input": "Scan to input",
1143
+ "Scheme": "Scheme",
1144
+ "Scientifix notation": "Wetenschappelijke notatie",
1145
+ "Scope name": "Bereiksnaam",
1146
+ "Screen size": "Schermgrootte",
1147
+ "Search": "Zoeken",
1148
+ "Search and select collection": "Zoek en selecteer collectie",
1149
+ "Search collections...": "Search collections...",
1150
+ "Search parameters": "Zoekparameters",
1151
+ "Search plugin": "Plugin zoeken",
1152
+ "Search plugin...": "Search plugin...",
1153
+ "Second": "Seconde",
1154
+ "Secondary confirmation": "Secundaire bevestiging",
1155
+ "Security": "Beveiliging",
1156
+ "Select": "Selecteren",
1157
+ "Select a source field to use metadata of the field": "Select a source field to use metadata of the field",
941
1158
  "Select a variable": "Selecteer een variabele",
942
- "Double click to choose entire object": "Dubbelklik om het hele object te kiezen",
943
- TRUE: "WAAR",
944
- FALSE: "ONWAAR",
945
- Prettify: "Opknappen",
946
- Theme: "Thema",
947
- "Default theme": "Standaardthema",
948
- "Compact theme": "Compact thema",
949
- Download: "Downloaden",
950
- "File type is not supported for previewing, please download it to preview.": "Bestandstype wordt niet ondersteund voor voorbeeldweergave, download het om te bekijken.",
951
- "Click or drag file to this area to upload": "Klik of sleep een bestand naar dit gebied om te uploaden.",
1159
+ "Select all": "Alles selecteren",
1160
+ "Select an existing piece of data as the initialization data for the form": "Selecteer een bestaand gegeven als initiële data voor het formulier.",
1161
+ "Select collection": "Selecteer collectie",
1162
+ "Select data blocks to refresh": "Selecteer gegevensblokken om te vernieuwen",
1163
+ "Select data source": "Gegevensbron selecteren",
1164
+ "Select date": "Select date",
1165
+ "Select field": "Veld selecteren",
1166
+ "Select file": "Bestand selecteren",
1167
+ "Select form fields": "Select form fields",
1168
+ "Select grouping field": "Selecteer groeperingsveld",
1169
+ "Select icon": "Selecteer icoon",
1170
+ "Select level": "Selecteer niveau",
1171
+ "Select mode": "Select mode",
1172
+ "Select record": "Selecteer record",
1173
+ "Select target action": "Select target action",
1174
+ "Select target block": "Select target block",
1175
+ "Select target form block": "Select target form block",
1176
+ "Select template": "Selecteer sjabloon",
1177
+ "Select trigger event": "Select trigger event",
1178
+ "Select variable": "Select variable",
1179
+ "Select view": "Weergave selecteren",
1180
+ "Selected": "Geselecteerd",
1181
+ "Selected Collections": "Selected Collections",
1182
+ "Selected records deleted successfully": "Selected records deleted successfully",
1183
+ "Selector": "Selector",
1184
+ "Selector mode": "Selectormodus",
1185
+ "Selector setting": "Selector setting",
1186
+ "Send code": "Code verzenden",
1187
+ "Separate multiple values with comma or Enter": "Separate multiple values with comma or Enter",
1188
+ "Separator": "Scheidingsteken",
1189
+ "Set Template Engine": "Sjabloonengine instellen",
1190
+ "Set action state": "Set action state",
1191
+ "Set block height": "Blokhoogte instellen",
1192
+ "Set block layout": "Set block layout",
1193
+ "Set block state": "Set block state",
1194
+ "Set button state": "Set button state",
1195
+ "Set condition": "Set condition",
1196
+ "Set data loading mode": "Stel de gegevenslaadmodus in",
1197
+ "Set data scope": "Set data scope",
1198
+ "Set default sorting rules": "Stel standaard sorteerrregels in",
1199
+ "Set default value": "Stel standaardwaarde in",
1200
+ "Set details field state": "Set details field state",
1201
+ "Set field state": "Set field state",
1202
+ "Set field value": "Set field value",
1203
+ "Set form field state": "Set form field state",
1204
+ "Set form field value": "Set form field value",
1205
+ "Set state": "Set state",
1206
+ "Set the count of columns displayed in a row": "Stel het aantal kolommen in dat in een rij wordt weergegeven",
1207
+ "Set the data scope": "Stel de gegevensomvang in",
1208
+ "Set validation rules": "Stel validatieregels in",
1209
+ "Set value": "Set value",
1210
+ "Setting": "Instelling",
1211
+ "Settings": "Instellingen",
1212
+ "Show date range": "Show date range",
1213
+ "Show file name": "Toon bestandsnaam",
1214
+ "Show in menu": "Weergeven in menu",
1215
+ "Show label": "Show label",
1216
+ "Show lunar": "Maankalender tonen",
1217
+ "Show message": "Show message",
1218
+ "Show notification": "Show notification",
1219
+ "Show row numbers": "Show row numbers",
1220
+ "Show time": "Toon tijd",
1221
+ "Sign in": "Inloggen",
1222
+ "Sign in via account": "Inloggen via account",
1223
+ "Sign in via phone": "Inloggen via telefoon",
1224
+ "Sign in with another account": "Aanmelden met een ander account",
1225
+ "Sign out": "Afmelden",
1226
+ "Sign up": "Registreren",
1227
+ "Sign up successfully, and automatically jump to the sign in page": "Succesvol geregistreerd, springt automatisch naar de inlogpagina",
1228
+ "Signed up successfully. It will jump to the login page.": "Succesvol geregistreerd. Je wordt doorgestuurd naar de inlogpagina.",
1229
+ "Simple string replacement, can be used to interpolate variables in a string.": "Eenvoudige tekstvervanging, kan worden gebruikt om variabelen in een tekst te interpoleren.",
1230
+ "Single line text": "Enkele regel tekst",
1231
+ "Single select": "Enkele selectie",
1232
+ "Single select and radio fields can be used as the grouping field": "Enkelvoudige selecteer- en keuzerondjevelden kunnen worden gebruikt als groepeerveld",
1233
+ "Size": "Grootte",
1234
+ "Sizes": "Sizes",
1235
+ "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": "Sla het ophalen van het totale aantal tabelrecords over tijdens paginering om het laden te versnellen. Het wordt aanbevolen om deze optie in te schakelen voor datatabellen met veel gegevens.",
1236
+ "Skip required validation": "Vereiste validatie overslaan",
1237
+ "Small": "Klein",
1238
+ "SmartTv": "SmartTv",
1239
+ "Some files are not uploaded correctly, please check.": "Some files are not uploaded correctly, please check.",
1240
+ "Sorry, the page you visited does not exist.": "Sorry, de pagina die je bezocht bestaat niet.",
1241
+ "Sort": "Sorteren",
1242
+ "Sortable": "Sorteerbaar",
1243
+ "Source collection": "Broncollectie",
1244
+ "Source collections": "Broncollecties",
1245
+ "Source key": "Bron sleutel",
1246
+ "Specific properties": "Specifieke eigenschappen",
1247
+ "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.",
1248
+ "Specify height": "Hoogte specificeren",
1249
+ "Start": "Start",
1250
+ "Start accessor": "Start accessor",
1251
+ "Start date field": "Begindatumveld",
1252
+ "State": "State",
1253
+ "Stay on current page": "Blijf op de huidige pagina",
1254
+ "Stay on the current popup or page": "Stay on the current popup or page",
1255
+ "Steps": "Steps",
1256
+ "Store the creation time of each record": "Sla de creatietijd van elke record op",
1257
+ "Store the creation user of each record": "Sla de gebruiker die de record aanmaakte op",
1258
+ "Store the last update time of each record": "Sla de laatste update tijd van elke record op",
1259
+ "Store the last update user of each record": "Sla de gebruiker van de laatste update op",
1260
+ "Street": "Straat",
1261
+ "String": "Tekst",
1262
+ "String template": "Tekstsjabloon",
1263
+ "Style": "Stijl",
1264
+ "Sub-detail": "Sub-detail",
1265
+ "Sub-details": "Subdetails",
1266
+ "Sub-form": "Subformulier",
1267
+ "Sub-form(Popover)": "Subformulier (Popover)",
1268
+ "Sub-table": "Subtabel",
1269
+ "Subform mode": "Subformulier modus",
1270
+ "Submit": "Indienen",
1271
+ "Submit action settings": "Submit action settings",
1272
+ "Submit record": "Submit record",
1273
+ "Submitted successfully": "Succesvol ingediend",
1274
+ "Subtable": "Subtabel",
1275
+ "Subtable mode": "Subtabel modus",
1276
+ "Successfully": "Successfully",
1277
+ "Suffix": "Achtervoegsel",
1278
+ "Super admin": "Superbeheerder",
1279
+ "Superior department": "Overkoepelende afdeling",
1280
+ "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)",
952
1281
  "Support for a single or bulk upload.": "Ondersteuning voor enkele of bulk-upload.",
953
- "File size should not exceed {{size}}.": "Bestandsgrootte mag {{size}} niet overschrijden.",
954
- "File size exceeds the limit": "Bestandsgrootte overschrijdt de limiet.",
955
- "File type is not allowed": "Bestandstype is niet toegestaan.",
956
- "Incomplete uploading files need to be resolved": "Onvolledig ge\xFCploade bestanden moeten worden opgelost.",
957
- "Default title for each record": "Standaardtitel voor elk record.",
958
- "If collection inherits, choose inherited collections as templates": "Als de collectie overerft, kies ge\xEBrfde collecties als sjablonen.",
959
- "Select an existing piece of data as the initialization data for the form": "Selecteer een bestaand gegeven als initi\xEBle data voor het formulier.",
960
- "Only the selected fields will be used as the initialization data for the form": "Alleen de geselecteerde velden worden gebruikt als initi\xEBle data voor het formulier.",
1282
+ "Switch role": "Rol wisselen",
1283
+ "Switching the picker, the value and default value will be cleared": "Switching the picker, the value and default value will be cleared",
1284
+ "Sync from database": "Synchroniseren vanuit database",
1285
+ "Sync from form fields": "Synchroniseren vanaf formulier velden",
1286
+ "Sync successfully": "Succesvol gesynchroniseerd",
1287
+ "Syntax references": "Syntax-referenties",
1288
+ "System": "Systeem",
1289
+ "System & security": "Systeem en beveiliging",
1290
+ "System fields": "Systeemvelden",
1291
+ "System info": "Systeeminfo",
1292
+ "System management": "Systeembeheer",
1293
+ "System settings": "Systeeminstellingen",
1294
+ "System title": "Systeemtitel",
1295
+ "System variables": "Systeemvariabelen",
1296
+ "TRUE": "WAAR",
1297
+ "Tab": "Tab",
1298
+ "Tab name": "Tabbladnaam",
1299
+ "Table": "Tabel",
1300
+ "Table OID(Inheritance)": "Tabel OID (Erfelijkheid)",
1301
+ "Table column settings": "Table column settings",
1302
+ "Table density": "Table density",
1303
+ "Table selected records": "Tabel geselecteerde records",
1304
+ "Table settings": "Table settings",
1305
+ "Table size": "Tabelgrootte",
1306
+ "Tablet": "Tablet",
1307
+ "Tablet device": "Tabletapparaat",
1308
+ "Tag": "Label",
1309
+ "Tag color field": "Labelkleurveld",
1310
+ "Target": "Doel",
1311
+ "Target block UID": "Target block UID",
1312
+ "Target block uid": "Target block uid",
1313
+ "Target collection": "Doelcollectie",
1314
+ "Target form block": "Target form block",
1315
+ "Target key": "Doel sleutel",
1316
+ "Target position": "Doelpositie",
1317
+ "Template": "Template",
961
1318
  "Template Data": "Sjabloongegevens",
962
- "Data fields": "Gegevensvelden",
963
- "Add template": "Sjabloon toevoegen",
964
- "Enable form data template": "Formuliersjabloon inschakelen",
965
- "Form data templates": "Formuliersjablonen",
966
- "No configuration available.": "Geen configuratie beschikbaar.",
967
- "Reload application": "Herlaad applicatie",
968
- "The application is reloading, please do not close the page.": "De applicatie wordt opnieuw geladen, sluit de pagina niet.",
969
- "Application reloading": "Applicatie wordt opnieuw geladen",
970
- "Allows to clear cache, reboot application": "Sta toe om cache te wissen en applicatie te herstarten.",
971
- "The will interrupt service, it may take a few seconds to restart. Are you sure to continue?": "Dit onderbreekt de service en kan enkele seconden duren. Weet je zeker dat je wilt doorgaan?",
972
- "Clear cache": "Cache wissen",
973
- "Are you sure you want to clear cache ?": "Weet je zeker dat je de cache wilt wissen?",
974
- "Quick create": "Snel aanmaken",
975
- Dropdown: "Keuzelijst",
976
- "Pop-up": "Pop-up",
977
- "Direct duplicate": "Direct dupliceren",
978
- "Copy into the form and continue to fill in": "Kopieer in het formulier en vul verder in.",
979
- "Failed to load plugin": "Kan plug-in niet laden.",
980
- "Date range limit": "Datumbereiklimiet",
981
- MinDate: "Minimale datum",
982
- MaxDate: "Maximale datum",
983
- "Please select time or variable": "Selecteer een tijd of variabele.",
984
- "Filter out a single piece or a group of records as a template": "Filter een enkel item of een groep records als sjabloon.",
985
- "The title field is used to identify the template record": "Het titelveld wordt gebruikt om het sjabloonrecord te identificeren.",
1319
+ "Template engine": "Sjabloonengine",
986
1320
  "Template fields": "Sjabloonvelden",
1321
+ "Template name": "Sjabloonnaam",
1322
+ "Templates": "Sjablonen",
1323
+ "Text": "Text",
1324
+ "Text Align": "Tekstuitlijning",
1325
+ "Text input": "Text input",
1326
+ "Text only": "Text only",
1327
+ "The application is reloading, please do not close the page.": "De applicatie wordt opnieuw geladen, sluit de pagina niet.",
1328
+ "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).",
1329
+ "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?": "De huidige afhankelijkheidsversie van de plugin komt niet overeen met de versie van de applicatie en werkt mogelijk niet correct. Weet je zeker dat je de plugin wil blijven inschakelen?",
1330
+ "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}}\"",
1331
+ "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}}\"",
1332
+ "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}}\"",
1333
+ "The deletion was successful.": "De verwijdering is succesvol.",
1334
+ "The field has been deleted": "Het veld is verwijderd",
1335
+ "The field value cannot be greater than ": "De veldwaarde mag niet groter zijn dan ",
1336
+ "The field value cannot be less than ": "De veldwaarde mag niet kleiner zijn dan ",
1337
+ "The field value is not a email format": "The field value is not a email format",
1338
+ "The field value is not an integer number": "De veldwaarde is geen geheel getal",
1339
+ "The field value is required": "The field value is required",
1340
+ "The following field types are not compatible and do not support output and display": "De volgende veldtypen zijn niet compatibel en ondersteunen geen uitvoer en weergave.",
987
1341
  "The selected fields will automatically populate the form": "De geselecteerde velden vullen automatisch het formulier in.",
988
- "UnSelect all": "Alles deselecteren",
989
- "Secondary confirmation": "Secundaire bevestiging",
990
- "Perform the {{title}}": "Voer {{title}} uit.",
991
- "Are you sure you want to perform the {{title}} action?": "Weet je zeker dat je de actie {{title}} wilt uitvoeren?",
992
- "Permission denied": "Toestemming geweigerd.",
993
- "Allow add new": "Sta toe om nieuw toe te voegen.",
994
- "Data model": "Gegevensmodel",
995
- Security: "Beveiliging",
996
- Action: "Actie",
997
- System: "Systeem",
998
- Other: "Overige",
999
- "Allow selection of existing records": "Sta selectie van bestaande records toe.",
1000
- "Data Model": "Gegevensmodel",
1001
- Blocks: "Blokken",
1002
- "Users & permissions": "Gebruikers en machtigingen",
1003
- "System management": "Systeembeheer",
1004
- "System & security": "Systeem en beveiliging",
1005
- Workflow: "Werkstroom",
1342
+ "The title field is used to identify the template record": "Het titelveld wordt gebruikt om het sjabloonrecord te identificeren.",
1343
+ "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.": "De waarde van deze variabele is afgeleid van de querystring in de URL. Deze variabele werkt alleen correct als de pagina een querystring bevat.",
1344
+ "The will interrupt service, it may take a few seconds to restart. Are you sure to continue?": "Dit onderbreekt de service en kan enkele seconden duren. Weet je zeker dat je wilt doorgaan?",
1345
+ "The {{type}} \"{{name}}\" may have been deleted. Please remove this {{blockType}}.": "Het {{type}} \"{{name}}\" is mogelijk verwijderd. Verwijder dit {{blockType}}.",
1346
+ "Theme": "Thema",
1347
+ "Then": "Dan",
1006
1348
  "Third party services": "Diensten van derden",
1007
- "Data model tools": "Gegevensmodeltools",
1008
- "Data sources": "Gegevensbronnen",
1009
- Collections: "Collecties",
1010
- "Collection fields": "Collectievelden",
1011
- Authentication: "Authenticatie",
1012
- "Logging and monitoring": "Logging en monitoring",
1013
- Main: "Hoofd",
1014
- Index: "Index",
1015
- "Field values must be unique.": "Veldwaarden moeten uniek zijn.",
1016
- Alphabet: "Alfabet",
1017
- Accuracy: "Nauwkeurigheid",
1018
- Millisecond: "Milliseconde",
1019
- Second: "Seconde",
1020
- "Unix Timestamp": "Unix-tijdstempel",
1021
- "Field value do not meet the requirements": "Veldwaarde voldoet niet aan de vereisten.",
1022
- "Field value size is": "Veldwaardegrootte is",
1349
+ "This Month": "This Month",
1350
+ "This Quarter": "This Quarter",
1351
+ "This Week": "This Week",
1352
+ "This Year": "This Year",
1353
+ "This and following events": "Deze en volgende gebeurtenissen",
1354
+ "This event": "Deze gebeurtenis",
1355
+ "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).",
1356
+ "This field is required": "This field is required",
1357
+ "This is a demo text, **supports Markdown syntax**.": "Dit is een demo tekst, **ondersteunt Markdown syntax**.",
1358
+ "This is likely a NocoBase internals bug. Please open an issue at <1>here</1>": "Dit is waarschijnlijk een interne bug in NocoBase. Open een issue via <1>hier</1>",
1359
+ "This month": "Deze maand",
1360
+ "This quarter": "Dit kwartaal",
1361
+ "This variable has been deprecated and can be replaced with \"Current form\"": "Deze variabele is verouderd en kan worden vervangen door \"Huidig formulier\"",
1362
+ "This week": "Deze week",
1363
+ "This year": "Dit jaar",
1364
+ "Through collection": "Via collectie",
1365
+ "Time": "Tijd",
1366
+ "Time format": "Tijdformaat",
1367
+ "Time scale": "Tijdschaal",
1368
+ "Timeout config": "Timeout config",
1369
+ "Timestamp": "Timestamp",
1370
+ "Title": "Titel",
1371
+ "Title & description": "Title & description",
1372
+ "Title accessor": "Title accessor",
1373
+ "Title field": "Titelveld",
1374
+ "Title field component": "Title field component",
1375
+ "Title position": "Title position",
1376
+ "Today": "Vandaag",
1377
+ "Toggles the subfield mode": "Wisselt de subveldmodus",
1378
+ "Tomorrow": "Morgen",
1379
+ "Tooltip": "Tooltip",
1380
+ "Top left": "Top left",
1381
+ "Top right": "Top right",
1382
+ "Total {{count}} items": "Totaal {{count}} items",
1383
+ "Tree collection": "Boomcollectie",
1384
+ "Tree table": "Boomtabel",
1385
+ "Trigger condition": "Trigger condition",
1386
+ "Trigger event": "Trigger event",
1387
+ "Trigger workflow": "Workflow activeren",
1388
+ "Triggered when the row is clicked": "Geactiveerd wanneer de rij wordt aangeklikt",
1389
+ "True": "True",
1390
+ "Try again": "Probeer opnieuw",
1391
+ "Turn pages": "Pagina's omslaan",
1392
+ "Two tone": "Two tone",
1393
+ "Type": "Type",
1394
+ "UI Editor": "UI Bewerker",
1395
+ "UI editor": "UI-editor",
1396
+ "URL": "URL",
1397
+ "URL search params": "URL zoekparameters",
1398
+ "UnSelect all": "Alles deselecteren",
1399
+ "Unauthenticated. Please sign in to continue.": "Niet geauthenticeerd. Meld je aan om verder te gaan.",
1400
+ "Unconnected": "Niet verbonden",
1401
+ "Unicode characters are permitted": "Unicode characters are permitted",
1402
+ "Unique": "Uniek",
1023
1403
  "Unit conversion": "Eenheidsconversie",
1024
- Separator: "Scheidingsteken",
1025
- Prefix: "Voorvoegsel",
1026
- Suffix: "Achtervoegsel",
1027
- "Record unique key": "Unieke recordsleutel",
1028
- "Filter target key": "Filterdoelsleutel",
1029
- "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.": "Als een collectie geen primaire sleutel heeft, moet je een unieke recordsleutel configureren om rijen binnen een blok te lokaliseren. Anders kunnen er geen gegevensblokken worden aangemaakt.",
1030
- "Filter data based on the specific field, with the requirement that the field value must be unique.": "Filter gegevens op basis van een specifiek veld, waarbij de veldwaarde uniek moet zijn.",
1031
- "Multiply by": "Vermenigvuldigen met",
1032
- "Divide by": "Delen door",
1033
- "Scientifix notation": "Wetenschappelijke notatie",
1034
- Normal: "Normaal",
1035
- "Automatically generate default values": "Automatisch standaardwaarden genereren.",
1036
- "Refresh data on close": "Ververs gegevens bij sluiten.",
1037
- "Refresh data on action": "Ververs gegevens bij actie.",
1404
+ "Unix Timestamp": "Unix-tijdstempel",
1038
1405
  "Unknown field type": "Onbekend veldtype.",
1039
- "The following field types are not compatible and do not support output and display": "De volgende veldtypen zijn niet compatibel en ondersteunen geen uitvoer en weergave.",
1040
- "Not fixed": "Niet vastgezet",
1041
- "Left fixed": "Links vastgezet",
1042
- "Right fixed": "Rechts vastgezet",
1043
- Fixed: "Vastgezet",
1044
- "Set block height": "Blokhoogte instellen",
1045
- "Specify height": "Hoogte specificeren",
1046
- "Full height": "Volledige hoogte",
1047
- "Please configure the URL": "Configureer de URL.",
1048
- URL: "URL",
1049
- "Search parameters": "Zoekparameters",
1050
- "Do not concatenate search params in the URL": "Voeg zoekparameters niet samen in de URL.",
1051
- "Edit link": "Link bewerken",
1052
- "Add parameter": "Parameter toevoegen",
1406
+ "Unnamed": "Naamloos",
1407
+ "Unpinned": "Losgehaald",
1408
+ "Unsafe integer": "Unsafe integer",
1409
+ "Unsaved changes": "Niet-opgeslagen wijzigingen",
1410
+ "Update": "Bijwerken",
1411
+ "Update all data?": "Alle gegevens bijwerken?",
1412
+ "Update or create": "Bijwerken of aanmaken",
1413
+ "Update plugin": "Plugin bijwerken",
1414
+ "Update record": "Record bijwerken",
1415
+ "Update record action": "Update record",
1416
+ "Update selected data?": "Geselecteerde gegevens bijwerken?",
1417
+ "Updated successfully": "Succesvol bijgewerkt",
1418
+ "UpdatedAt": "Bijgewerkt op",
1419
+ "UpdatedBy": "Bijgewerkt door",
1420
+ "Upgrade": "Upgrade",
1421
+ "Upload": "Uploaden",
1422
+ "Upload file settings": "Upload file settings",
1423
+ "Upload new version": "Nieuwe versie uploaden",
1424
+ "Upload plugin": "Plugin uploaden",
1425
+ "Uploading": "Uploading",
1053
1426
  "Use simple pagination mode": "Gebruik eenvoudige paginering",
1054
- "Set Template Engine": "Sjabloonengine instellen",
1055
- "Template engine": "Sjabloonengine",
1056
- "Table size": "Tabelgrootte",
1057
- "No data": "Geen data",
1058
- "Show file name": "Toon bestandsnaam",
1059
- Filled: "Gevuld",
1060
- "Enable index column": "Indexkolom inschakelen",
1061
- "Icon only": "Enkel icoon",
1062
- "Valid range: 100-900": "Geldige waarde: 100-900",
1427
+ "Use the same time zone (GMT) for all users": "Gebruik dezelfde tijdzone (GMT) voor alle gebruikers",
1428
+ "Used for drag and drop sorting scenarios, supporting grouping sorting": "Gebruikt voor drag and drop sorteren, met ondersteuning voor groeperen",
1429
+ "User": "Gebruiker",
1430
+ "User not found. Please sign in again to continue.": "Gebruiker niet gevonden. Meld je opnieuw aan om verder te gaan.",
1431
+ "User password changed, please signin again.": "Gebruikerswachtwoord gewijzigd, meld je opnieuw aan.",
1432
+ "Username": "Gebruikersnaam",
1433
+ "Users": "Gebruikers",
1434
+ "Users & permissions": "Gebruikers en machtigingen",
1063
1435
  "Valid range: 10-40": "Geldige waarde: 10-40",
1064
- "Font Size\uFF08px\uFF09": "Lettergrootte\uFF08px\uFF09",
1065
- "Font Weight": "Letterdikte",
1066
- "Font Style": "Letterstijl",
1067
- Italic: "Cursief",
1068
- "Refresh data blocks": "Vernieuw gegevensblokken",
1069
- "Select data blocks to refresh": "Selecteer gegevensblokken om te vernieuwen",
1070
- "After successful submission, the selected data blocks will be automatically refreshed.": "Na succesvolle indiening worden de geselecteerde gegevensblokken automatisch vernieuwd.",
1071
- "Reset link expiration": "Reset linkverval"
1072
- };
1436
+ "Valid range: 100-900": "Geldige waarde: 100-900",
1437
+ "Validation": "Validation",
1438
+ "Validation rule": "Validatieregel",
1439
+ "Value": "Waarde",
1440
+ "Variable identifier": "Variable identifier",
1441
+ "Variable title": "Variable title",
1442
+ "Verification code": "Verificatiecode",
1443
+ "Version": "Versie",
1444
+ "Version range": "Versiebereik",
1445
+ "Vertical": "Vertical",
1446
+ "View": "Bekijken",
1447
+ "View all plugins": "Alle plugins bekijken",
1448
+ "View record": "Record bekijken",
1449
+ "Village": "Dorp",
1450
+ "Visible": "Zichtbaar",
1451
+ "Volcano": "Vulkaan",
1452
+ "Wearable": "Wearable",
1453
+ "Week": "Week",
1454
+ "Weekly": "Wekelijks",
1455
+ "When a field is selected for grouping, it will be grouped first before sorting.": "Als een veld wordt geselecteerd voor groepering, wordt dit eerst gegroepeerd voordat er wordt gesorteerd.",
1456
+ "When condition is met": "When condition is met",
1457
+ "When condition is not met": "When condition is not met",
1458
+ "When submitting the following fields, the saved values are": "Bij het indienen van de volgende velden worden de waarden opgeslagen als",
1459
+ "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",
1460
+ "When the Label exceeds the width": "When the Label exceeds the width",
1461
+ "With condition": "With condition",
1462
+ "Without condition": "Without condition",
1463
+ "Work week": "Werkweek",
1464
+ "Workflow": "Werkstroom",
1465
+ "Wrap": "Wrap",
1466
+ "Wysiwyg": "Wysiwyg",
1467
+ "Year": "Jaar",
1468
+ "Year-Month-Day": "Jaar-Maand-Dag",
1469
+ "Year/Month/Day": "Jaar/Maand/Dag",
1470
+ "Yearly": "Jaarlijks",
1471
+ "Yes": "Ja",
1472
+ "Yesterday": "Gisteren",
1473
+ "Your session has expired. Please sign in again.": "Je sessie is verlopen. Meld je opnieuw aan.",
1474
+ "conditions in the group": "conditions in the group",
1475
+ "contains": "bevat",
1476
+ "data source": "gegevensbron",
1477
+ "does not contain": "bevat niet",
1478
+ "edit title": "titel bewerken",
1479
+ "ends with": "eindigt met",
1480
+ "exists": "bestaat",
1481
+ "is": "is",
1482
+ "is after": "is na",
1483
+ "is any of": "is een van",
1484
+ "is before": "is voor",
1485
+ "is between": "is tussen",
1486
+ "is empty": "is leeg",
1487
+ "is none of": "is geen van",
1488
+ "is not": "is niet",
1489
+ "is not empty": "is niet leeg",
1490
+ "is on or after": "is op of na",
1491
+ "is on or before": "is op of voor",
1492
+ "item": "item",
1493
+ "items": "items",
1494
+ "loading": "laden",
1495
+ "name is required": "naam is vereist",
1496
+ "not ends with": "eindigt niet met",
1497
+ "not exists": "bestaat niet",
1498
+ "not starts with": "begint niet met",
1499
+ "pixels": "pixels",
1500
+ "re-download file": "bestand opnieuw downloaden",
1501
+ "starts with": "begint met",
1502
+ "tlds": "tlds",
1503
+ "visible": "zichtbaar",
1504
+ "{{#label}} email address doesn’t meet the required format": "{{#label}} email address doesn’t meet the required format",
1505
+ "{{#label}} is not allowed to be empty": "{{#label}} is not allowed to be empty",
1506
+ "{{#label}} is required": "{{#label}} is required",
1507
+ "{{#label}} length must be at least {{#limit}} characters long": "{{#label}} length must be at least {{#limit}} characters long",
1508
+ "{{#label}} length must be less than or equal to {{#limit}} characters long": "{{#label}} length must be less than or equal to {{#limit}} characters long",
1509
+ "{{#label}} length must be {{#limit}} characters long": "{{#label}} length must be {{#limit}} characters long",
1510
+ "{{#label}} must be a credit card": "{{#label}} must be a credit card",
1511
+ "{{#label}} must be a float or double": "{{#label}} must be a float or double",
1512
+ "{{#label}} must be a multiple of {{#multiple}}": "{{#label}} must be a multiple of {{#multiple}}",
1513
+ "{{#label}} must be a negative number": "{{#label}} must be a negative number",
1514
+ "{{#label}} must be a number": "{{#label}} must be a number",
1515
+ "{{#label}} must be a positive number": "{{#label}} must be a positive number",
1516
+ "{{#label}} must be a safe number": "{{#label}} must be a safe number",
1517
+ "{{#label}} must be a string": "{{#label}} must be a string",
1518
+ "{{#label}} must be a valid ISO 8601 date": "{{#label}} must be a valid ISO 8601 date",
1519
+ "{{#label}} must be a valid UUID": "{{#label}} must be a valid UUID",
1520
+ "{{#label}} must be a valid date": "{{#label}} must be a valid date",
1521
+ "{{#label}} must be a valid hostname": "{{#label}} must be a valid hostname",
1522
+ "{{#label}} must be a valid port": "{{#label}} must be a valid port",
1523
+ "{{#label}} must be a valid uri": "{{#label}} must be a valid uri",
1524
+ "{{#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",
1525
+ "{{#label}} must be an integer": "{{#label}} must be an integer",
1526
+ "{{#label}} must be greater than or equal to {{#limit}}": "{{#label}} must be greater than or equal to {{#limit}}",
1527
+ "{{#label}} must be greater than {{#limit}}": "{{#label}} must be greater than {{#limit}}",
1528
+ "{{#label}} must be in {{#format}} format": "{{#label}} must be in {{#format}} format",
1529
+ "{{#label}} must be less than or equal to {{#limit}}": "{{#label}} must be less than or equal to {{#limit}}",
1530
+ "{{#label}} must be less than {{#limit}}": "{{#label}} must be less than {{#limit}}",
1531
+ "{{#label}} must not have leading or trailing whitespace": "{{#label}} must not have leading or trailing whitespace",
1532
+ "{{#label}} must not have more than {{#limit}} decimal places": "{{#label}} must not have more than {{#limit}} decimal places",
1533
+ "{{#label}} must only contain alpha-numeric and underscore characters": "{{#label}} must only contain alpha-numeric and underscore characters",
1534
+ "{{#label}} must only contain alpha-numeric characters": "{{#label}} must only contain alpha-numeric characters",
1535
+ "{{#label}} must only contain hexadecimal characters": "{{#label}} must only contain hexadecimal characters",
1536
+ "{{#label}} must only contain lowercase characters": "{{#label}} must only contain lowercase characters",
1537
+ "{{#label}} must only contain uppercase characters": "{{#label}} must only contain uppercase characters",
1538
+ "{{#label}} with value \"{{#value}}\" fails to match the required pattern": "{{#label}} with value \"{{#value}}\" fails to match the required pattern",
1539
+ "{{#label}} with value \"{{#value}}\" fails to match the {{#name}} pattern": "{{#label}} with value \"{{#value}}\" fails to match the {{#name}} pattern",
1540
+ "{{#label}} with value \"{{#value}}\" matches the inverted pattern": "{{#label}} with value \"{{#value}}\" matches the inverted pattern",
1541
+ "{{#label}} with value \"{{#value}}\" matches the inverted {{#name}} pattern": "{{#label}} with value \"{{#value}}\" matches the inverted {{#name}} pattern",
1542
+ "{{count}} filter items": "{{count}} filter items",
1543
+ "{{count}} more items": "{{count}} meer items",
1544
+ "≠": "≠",
1545
+ "≤": "≤",
1546
+ "≥": "≥"
1547
+ }