@nocobase/client 2.0.0-alpha.8 → 2.1.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (204) hide show
  1. package/.dumirc.ts +4 -0
  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 +1 -2
  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 +7 -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/common/Markdown/style.d.ts +10 -0
  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/index.d.ts +5 -4
  49. package/es/flow/components/code-editor/jsxCompletion.d.ts +10 -0
  50. package/es/flow/components/code-editor/linter.d.ts +2 -0
  51. package/es/flow/components/code-editor/panels/RightExtra.d.ts +3 -1
  52. package/es/flow/components/code-editor/types.d.ts +16 -0
  53. package/es/flow/components/filter/FilterContainer.d.ts +4 -4
  54. package/es/flow/components/filter/FilterGroup.d.ts +2 -1
  55. package/es/flow/components/filter/LinkageFilterItem.d.ts +1 -0
  56. package/es/flow/components/filter/VariableFilterItem.d.ts +4 -1
  57. package/es/flow/components/index.d.ts +1 -1
  58. package/es/flow/components/placeholders/BlockPlaceholder.d.ts +1 -0
  59. package/es/flow/flows/editMarkdownFlow.d.ts +10 -0
  60. package/es/flow/getViewDiffAndUpdateHidden.d.ts +1 -0
  61. package/es/flow/index.d.ts +5 -0
  62. package/es/flow/internal/utils/associationValueCoercion.d.ts +15 -0
  63. package/es/flow/internal/utils/enumOptionsUtils.d.ts +7 -7
  64. package/es/flow/internal/utils/operatorSchemaHelper.d.ts +15 -0
  65. package/es/flow/internal/utils/rebuildFieldSubModel.d.ts +33 -0
  66. package/es/flow/models/actions/AddChildActionModel.d.ts +15 -0
  67. package/es/flow/models/actions/AddNewActionModel.d.ts +1 -0
  68. package/es/flow/models/actions/EditActionModel.d.ts +1 -0
  69. package/es/flow/models/actions/ExpandCollapseActionModel.d.ts +19 -0
  70. package/es/flow/models/actions/FilterActionModel.d.ts +5 -59
  71. package/es/flow/models/actions/JSActionModel.d.ts +13 -0
  72. package/es/flow/models/actions/LinkActionModel.d.ts +18 -0
  73. package/es/flow/models/actions/UpdateRecordActionModel.d.ts +6 -0
  74. package/es/flow/models/actions/index.d.ts +4 -0
  75. package/es/flow/models/base/ActionModel.d.ts +15 -5
  76. package/es/flow/models/base/BlockModel.d.ts +4 -1
  77. package/es/flow/models/base/CollectionBlockModel.d.ts +12 -25
  78. package/es/flow/models/base/FieldModel.d.ts +6 -0
  79. package/es/flow/models/base/GridModel.d.ts +27 -4
  80. package/es/flow/models/base/PageModel/ChildPageModel.d.ts +1 -0
  81. package/es/flow/models/base/PageModel/PageModel.d.ts +3 -0
  82. package/es/flow/models/base/PageModel/PageTabModel.d.ts +2 -0
  83. package/es/flow/models/base/PageModel/RootPageModel.d.ts +2 -0
  84. package/es/flow/models/blocks/details/DetailsBlockModel.d.ts +1 -0
  85. package/es/flow/models/blocks/details/DetailsCustomItemModel.d.ts +2 -2
  86. package/es/flow/models/blocks/details/DetailsGridModel.d.ts +1 -0
  87. package/es/flow/models/blocks/details/DetailsItemModel.d.ts +2 -2
  88. package/es/flow/models/blocks/details/DetailsJSFieldItemModel.d.ts +2 -2
  89. package/es/flow/models/blocks/filter-form/FieldModelSelect.d.ts +10 -0
  90. package/es/flow/models/blocks/filter-form/FilterFormBlockModel.d.ts +4 -0
  91. package/es/flow/models/blocks/filter-form/FilterFormCustomItemModel.d.ts +13 -0
  92. package/es/flow/models/blocks/filter-form/FilterFormGridModel.d.ts +1 -0
  93. package/es/flow/models/blocks/filter-form/FilterFormItemModel.d.ts +5 -4
  94. package/es/flow/models/blocks/filter-form/FilterFormSubmitActionModel.d.ts +1 -1
  95. package/es/flow/models/blocks/filter-form/SourceCascader.d.ts +10 -0
  96. package/es/flow/models/blocks/filter-form/fields/FieldComponentProps.d.ts +13 -0
  97. package/es/flow/models/blocks/filter-form/fields/FilterFormCustomFieldModel.d.ts +36 -0
  98. package/es/flow/models/blocks/filter-form/fields/date-time/DateTimeFilterFieldModel.d.ts +8 -0
  99. package/es/flow/models/blocks/filter-form/fields/date-time/index.d.ts +1 -0
  100. package/es/flow/models/blocks/filter-form/fields/index.d.ts +1 -0
  101. package/es/flow/models/blocks/filter-form/index.d.ts +1 -0
  102. package/es/flow/models/blocks/filter-manager/flow-actions/customizeFilterRender.d.ts +10 -0
  103. package/es/flow/models/blocks/filter-manager/flow-actions/index.d.ts +2 -0
  104. package/es/flow/models/blocks/filter-manager/flow-actions/operatorComponentProps.d.ts +10 -0
  105. package/es/flow/models/blocks/form/CreateFormModel.d.ts +1 -0
  106. package/es/flow/models/blocks/form/EditFormModel.d.ts +1 -0
  107. package/es/flow/models/blocks/form/FormBlockModel.d.ts +11 -1
  108. package/es/flow/models/blocks/form/FormGridModel.d.ts +1 -0
  109. package/es/flow/models/blocks/form/FormItemModel.d.ts +1 -1
  110. package/es/flow/models/blocks/form/FormJSFieldItemModel.d.ts +1 -1
  111. package/es/flow/models/blocks/form/submitHandler.d.ts +9 -0
  112. package/es/flow/models/blocks/js-block/JSBlock.d.ts +1 -0
  113. package/es/flow/models/blocks/table/JSColumnModel.d.ts +0 -1
  114. package/es/flow/models/blocks/table/TableActionsColumnModel.d.ts +0 -1
  115. package/es/flow/models/blocks/table/TableBlockModel.d.ts +14 -1
  116. package/es/flow/models/blocks/table/TableColumnModel.d.ts +9 -2
  117. package/es/flow/models/blocks/table/TableJSFieldItemModel.d.ts +2 -2
  118. package/es/flow/models/blocks/table/utils.d.ts +8 -0
  119. package/es/flow/models/blocks/utils/transformChildrenToJS.d.ts +42 -0
  120. package/es/flow/models/fields/AssociationFieldModel/AssociationFieldModel.d.ts +1 -0
  121. package/es/flow/models/fields/AssociationFieldModel/CascadeSelectFieldModel.d.ts +29 -0
  122. package/es/flow/models/fields/AssociationFieldModel/RecordPickerFieldModel.d.ts +2 -0
  123. package/es/flow/models/fields/AssociationFieldModel/RecordSelectFieldModel.d.ts +8 -2
  124. package/es/flow/models/fields/AssociationFieldModel/SubFormFieldModel.d.ts +7 -0
  125. package/es/flow/models/fields/AssociationFieldModel/SubTableFieldModel/SubTableColumnModel.d.ts +3 -3
  126. package/es/flow/models/fields/AssociationFieldModel/SubTableFieldModel/index.d.ts +2 -0
  127. package/es/flow/models/fields/AssociationFieldModel/index.d.ts +1 -0
  128. package/es/flow/models/fields/AssociationFieldModel/recordSelectShared.d.ts +49 -0
  129. package/es/flow/models/fields/ClickableFieldModel.d.ts +3 -2
  130. package/es/flow/models/fields/DisplayAssociationField/DisplaySubItemFieldModel.d.ts +1 -0
  131. package/es/flow/models/fields/DisplayAssociationField/DisplaySubListFieldModel.d.ts +1 -0
  132. package/es/flow/models/fields/DisplayAssociationField/DisplaySubTableFieldModel.d.ts +3 -1
  133. package/es/flow/models/fields/DisplayEnumFieldModel.d.ts +1 -0
  134. package/es/flow/models/fields/DisplayJSONFieldModel.d.ts +3 -3
  135. package/es/flow/models/fields/DisplayNumberFieldModel.d.ts +4 -2
  136. package/es/flow/models/fields/DisplayTextFieldModel.d.ts +1 -1
  137. package/es/flow/models/fields/JSItemModel.d.ts +0 -1
  138. package/es/flow/models/fields/JsonFieldModel.d.ts +1 -0
  139. package/es/flow/models/fields/MarkdownItemModel.d.ts +1 -0
  140. package/es/flow/models/fields/TimeFieldModel.d.ts +0 -1
  141. package/es/flow/models/fields/mobile-components/MobileDatePicker.d.ts +10 -0
  142. package/es/flow/models/fields/mobile-components/MobileLazySelect.d.ts +11 -0
  143. package/es/flow/{components/JsonInput.d.ts → models/fields/mobile-components/MobileSelect.d.ts} +1 -1
  144. package/es/flow/models/fields/mobile-components/MobileTimePicker.d.ts +10 -0
  145. package/es/flow/resolveViewParamsToViewList.d.ts +4 -2
  146. package/es/flow/{components/decorator → utils}/index.d.ts +1 -1
  147. package/es/global-theme/type.d.ts +1 -0
  148. package/es/hooks/useFullscreenOverlay.d.ts +20 -0
  149. package/es/index.d.ts +1 -0
  150. package/es/index.mjs +26499 -19157
  151. package/es/modules/menu/FlowPageMenuItem.d.ts +1 -3
  152. package/es/modules/menu/index.d.ts +9 -0
  153. package/es/nocobase-buildin-plugin/plugins/LocalePlugin.d.ts +0 -1
  154. package/es/schema-component/antd/association-select/ReadPretty.d.ts +1 -1
  155. package/es/schema-component/antd/filter/FilterItem.d.ts +1 -1
  156. package/es/schema-component/antd/input/EllipsisWithTooltip.d.ts +1 -0
  157. package/es/schema-component/antd/linkageFilter/LinkageFilterItem.d.ts +1 -1
  158. package/es/schema-component/antd/remote-select/RemoteSelect.d.ts +1 -3
  159. package/es/schema-component/antd/table/Table.Column.ActionBar.d.ts +1 -1
  160. package/es/schema-component/antd/table/Table.Void.d.ts +1 -0
  161. package/es/schema-component/antd/table-v2/Table.Column.ActionBar.d.ts +1 -1
  162. package/es/schema-component/antd/upload/shared.d.ts +1 -1
  163. package/es/schema-settings/LinkageRules/LinkageRuleAction.d.ts +2 -2
  164. package/es/schema-settings/LinkageRules/components/BlockLinkageRuleAction.d.ts +1 -1
  165. package/es/schema-settings/LinkageRules/components/FieldStyleLinkageRuleAction.d.ts +1 -1
  166. package/lib/index-C3fHjsMw-CDWZlvuM.js +2237 -0
  167. package/lib/index.js +453 -239
  168. package/lib/locale/cron/zh-CN.json +33 -0
  169. package/lib/locale/cron/zh-TW.json +33 -0
  170. package/lib/locale/de-DE.json +1545 -0
  171. package/lib/locale/en-US.json +1553 -0
  172. package/lib/locale/es-ES.json +1573 -0
  173. package/lib/locale/fr-FR.json +1549 -0
  174. package/lib/locale/hu-HU.json +1545 -0
  175. package/lib/locale/id-ID.json +1546 -0
  176. package/lib/locale/{it-IT.js → it-IT.json} +1496 -1054
  177. package/lib/locale/ja-JP.json +1564 -0
  178. package/lib/locale/ko-KR.json +1558 -0
  179. package/lib/locale/{nl-NL.js → nl-NL.json} +1493 -1018
  180. package/lib/locale/pt-BR.json +1617 -0
  181. package/lib/locale/ru-RU.json +1551 -0
  182. package/lib/locale/tr-TR.json +1553 -0
  183. package/lib/locale/uk-UA.json +1570 -0
  184. package/lib/locale/vi-VN.json +1545 -0
  185. package/lib/locale/zh-CN.json +1571 -0
  186. package/lib/locale/zh-TW.json +1549 -0
  187. package/package.json +10 -7
  188. package/es/flow/components/decorator/injectable.d.ts +0 -19
  189. package/lib/index-C3fHjsMw-DpvvwPtU.js +0 -2023
  190. package/lib/locale/cron/zh-CN.js +0 -33
  191. package/lib/locale/cron/zh-TW.js +0 -33
  192. package/lib/locale/de-DE.js +0 -904
  193. package/lib/locale/en-US.js +0 -1001
  194. package/lib/locale/es-ES.js +0 -824
  195. package/lib/locale/fr-FR.js +0 -844
  196. package/lib/locale/ja-JP.js +0 -1062
  197. package/lib/locale/ko-KR.js +0 -935
  198. package/lib/locale/pt-BR.js +0 -804
  199. package/lib/locale/ru-RU.js +0 -633
  200. package/lib/locale/tr-TR.js +0 -631
  201. package/lib/locale/uk-UA.js +0 -847
  202. package/lib/locale/zh-CN.js +0 -1410
  203. package/lib/locale/zh-TW.js +0 -938
  204. /package/es/flow/{internal/utils → utils}/blockUtils.d.ts +0 -0
@@ -0,0 +1,1545 @@
1
+ {
2
+ "\"Content-Type\" only support \"application/json\", and no need to specify": "\"Content-Type\" only support \"application/json\", and no need to specify",
3
+ "(Fields only)": "(Nur Felder)",
4
+ "(currently not effective in sub-forms/sub-tables)": "(currently not effective in sub-forms/sub-tables)",
5
+ "12 hour": "12 Stunden",
6
+ "24 hour": "24 Stunden",
7
+ "<": "<",
8
+ "=": "=",
9
+ ">": ">",
10
+ "ACL": "ACL",
11
+ "ASC": "Aufsteigend",
12
+ "Access": "Zugriff",
13
+ "Access control": "Access control",
14
+ "Accessible": "Zugänglich",
15
+ "Accuracy": "Accuracy",
16
+ "Action": "Action",
17
+ "Action after successful submission": "Action after successful submission",
18
+ "Action column": "Aktionsspalte",
19
+ "Action display name": "Anzeigeame der Aktion",
20
+ "Action logs": "Aktionslogs",
21
+ "Action name": "Aktionsname",
22
+ "Action on existing records": "Aktion für bestehende Datensätze",
23
+ "Action on new records": "Aktion für neue Datensätze",
24
+ "Action permission": "Aktionsberechtigung",
25
+ "Action permissions": "Aktionsberechtigungen",
26
+ "Action scope": "Aktionsbereich",
27
+ "Action type": "Aktionstyp",
28
+ "Actions": "Aktionen",
29
+ "Actions column": "Actions column",
30
+ "Add": "Hinzufügen",
31
+ "Add & Update": "Add & Update",
32
+ "Add Markdown": "Add Markdown",
33
+ "Add action": "Add action",
34
+ "Add attach": "Anhang hinzufügen",
35
+ "Add block": "Block hinzufügen",
36
+ "Add card": "Karte hinzufügen",
37
+ "Add category": "Kategorie hinzufügen",
38
+ "Add child": "Kind hinzufügen",
39
+ "Add child route": "Unterroute hinzufügen",
40
+ "Add condition": "Bedingung hinzufügen",
41
+ "Add condition group": "Bedingungsgruppe hinzufügen",
42
+ "Add event flow": "Add event flow",
43
+ "Add exportable field": "Exportierbares Feld hinzufügen",
44
+ "Add field": "Feld hinzufügen",
45
+ "Add filter": "Filter hinzufügen",
46
+ "Add filter group": "Filtergruppe hinzufügen",
47
+ "Add group": "Gruppe hinzufügen",
48
+ "Add link": "Link hinzufügen",
49
+ "Add linkage rule": "Verknüpfungsregel hinzufügen",
50
+ "Add menu item": "Menüpunkt hinzufügen",
51
+ "Add new": "Neu hinzufügen",
52
+ "Add new mode": "Neuer Hinzufügungsmodus",
53
+ "Add option": "Option hinzufügen",
54
+ "Add page": "Seite hinzufügen",
55
+ "Add parameter": "Add parameter",
56
+ "Add plugin": "Plugin hinzufügen",
57
+ "Add property": "Eigenschaft hinzufügen",
58
+ "Add record": "Datensatz hinzufügen",
59
+ "Add request header": "Add request header",
60
+ "Add role": "Rolle hinzufügen",
61
+ "Add rule": "Add rule",
62
+ "Add sort field": "Sortierfeld hinzufügen",
63
+ "Add step": "Add step",
64
+ "Add tab": "Tab hinzufügen",
65
+ "Add target block": "Add target block",
66
+ "Add template": "Add template",
67
+ "Add text": "Text hinzufügen",
68
+ "Add type": "Typ hinzufügen",
69
+ "Add validation rule": "Validierungsregel hinzufügen",
70
+ "Add variable": "Add variable",
71
+ "Add {{type}} after \"{{title}}\"": "{{type}} nach \"{{title}}\" hinzufügen",
72
+ "Add {{type}} before \"{{title}}\"": "{{type}} vor \"{{title}}\" hinzufügen",
73
+ "Add {{type}} in \"{{title}}\"": "{{type}} in \"{{title}}\" hinzufügen",
74
+ "Advanced type": "Erweitert",
75
+ "After": "Nach",
76
+ "After change": "Nach der Änderung",
77
+ "After clicking the custom button, the following field values will be assigned according to the following form.": "Nach dem Klicken auf die benutzerdefinierte Schaltfläche werden die folgenden Feldwerte gemäß dem folgenden Formular zugewiesen.",
78
+ "After clicking the custom button, the following fields of the current record will be saved according to the following form.": "Nach dem Klicken auf die benutzerdefinierte Schaltfläche werden die folgenden Felder des aktuellen Datensatzes gemäß dem folgenden Formular gespeichert.",
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.": "Nach dem Ausblenden wird dieses Menü nicht mehr in der Menüleiste angezeigt. Um es wieder anzuzeigen, müssen Sie zur Routenverwaltungsseite gehen, um es zu konfigurieren.",
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.": "Nach dem Ausblenden wird dieser Tab nicht mehr in der Tableiste angezeigt. Um ihn wieder anzuzeigen, müssen Sie zur Routenverwaltungsseite gehen, um ihn einzustellen.",
81
+ "After successful bulk update": "Nach erfolgreicher Massenaktualisierung",
82
+ "After successful request": "Nach erfolgreicher Anfrage",
83
+ "After successful save": "Nach erfolgreichem Speichern",
84
+ "After successful submission": "Nach erfolgreicher Übermittlung",
85
+ "After successful submission, the selected data blocks will be automatically refreshed.": "Nach erfolgreicher Übermittlung werden die ausgewählten Datenblöcke automatisch aktualisiert.",
86
+ "After successful update": "Nach erfolgreicher Aktualisierung",
87
+ "Agenda": "Agenda",
88
+ "All": "Alle",
89
+ "All collections": "Alle Sammlungen",
90
+ "All collections use general action permissions by default; permission configured individually will override the default one.": "Alle Sammlungen verwenden standardmäßig allgemeine Aktionsberechtigungen; individuell konfigurierte Berechtigungen überschreiben die Standardeinstellung.",
91
+ "All events": "Alle Ereignisse",
92
+ "All plugin settings": "Alle Plugin-Einstellungen",
93
+ "All records": "Alle Datensätze",
94
+ "Allow": "Erlauben",
95
+ "Allow access": "Zugriff erlauben",
96
+ "Allow action": "Aktion erlauben",
97
+ "Allow add new": "Allow add new",
98
+ "Allow add new data": "Hinzufügen neuer Daten erlauben",
99
+ "Allow add new, update and delete actions": "Hinzufügen, Aktualisieren und Löschen erlauben",
100
+ "Allow adding records to the current collection": "Hinzufügen von Datensätzen zur aktuellen Sammlung erlauben",
101
+ "Allow disassociation": "Allow disassociation",
102
+ "Allow dissociate": "Allow dissociate",
103
+ "Allow linking to multiple records": "Verknüpfung mit mehreren Datensätzen erlauben",
104
+ "Allow list": "Allow list",
105
+ "Allow multiple": "Mehrere erlauben",
106
+ "Allow multiple selection": "Mehrfachauswahl erlauben",
107
+ "Allow relative URIs": "Allow relative URIs",
108
+ "Allow selection of existing file": "Allow selection of existing file",
109
+ "Allow selection of existing records": "Allow selection of existing records",
110
+ "Allow sign up": "Registrierung erlauben",
111
+ "Allow to configure plugins": "Erlauben, Plugins zu konfigurieren",
112
+ "Allow to desgin pages": "Erlauben, Seiten zu gestalten",
113
+ "Allow to manage plugins": "Erlauben, Plugins zu verwalten",
114
+ "Allow uploading multiple files": "Hochladen mehrerer Dateien erlauben",
115
+ "Allows configuration of the whole system, including UI, collections, permissions, etc.": "Ermöglicht die Konfiguration des gesamten Systems, einschließlich UI, Sammlungen, Berechtigungen usw.",
116
+ "Allows to clear cache, reboot application": "Allows to clear cache, reboot application",
117
+ "Allows to configure interface": "Erlaubt die Konfiguration der Schnittstelle",
118
+ "Allows to configure plugins": "Erlaubt die Konfiguration von Plugins",
119
+ "Allows to install, activate, disable plugins": "Erlaubt das Installieren, Aktivieren und Deaktivieren von Plugins",
120
+ "Allows unencoded square brackets inside the query string": "Allows unencoded square brackets inside the query string",
121
+ "Alphabet": "Alphabet",
122
+ "Any": "Any",
123
+ "App error": "App-Fehler",
124
+ "Application reloading": "Application reloading",
125
+ "Are you sure to delete this plugin?": "Sind Sie sicher, dass Sie dieses Plugin löschen möchten?",
126
+ "Are you sure to disable this plugin?": "Sind Sie sicher, dass Sie dieses Plugin deaktivieren möchten?",
127
+ "Are you sure you don't want to save?": "Sind Sie sicher, dass Sie nicht speichern möchten?",
128
+ "Are you sure you want to clear cache ?": "Are you sure you want to clear cache ?",
129
+ "Are you sure you want to delete it?": "Sind Sie sicher, dass Sie es löschen möchten?",
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?": "Sind Sie sicher, dass Sie die Verbindung trennen möchten?",
132
+ "Are you sure you want to hide these routes in menu?": "Sind Sie sicher, dass Sie diese Routen im Menü ausblenden möchten?",
133
+ "Are you sure you want to hide this menu?": "Sind Sie sicher, dass Sie dieses Menü ausblenden möchten?",
134
+ "Are you sure you want to hide this tab?": "Sind Sie sicher, dass Sie diesen Tab ausblenden möchten?",
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?": "Are you sure you want to perform the {{title}} action?",
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?": "Sind Sie sicher, dass Sie diese Routen im Menü anzeigen möchten?",
144
+ "Area": "Gebiet",
145
+ "Area chart": "Flächendiagramm",
146
+ "Assign data scope for the template": "Datenbereich für die Vorlage zuweisen",
147
+ "Assign field values": "Feldwerte zuweisen",
148
+ "Assign value": "Assign value",
149
+ "Assignment mode": "Assignment mode",
150
+ "Associate": "Associate",
151
+ "Associated records": "Zugehörige Datensätze",
152
+ "Association field settings": "Association field settings",
153
+ "Association fields": "Verknüpfungsfelder",
154
+ "Association fields filter": "Filter für Verknüpfungsfelder",
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": "Prüfprotokolle",
161
+ "Authentication": "Authentication",
162
+ "Author": "Autor",
163
+ "Auto": "Automatisch",
164
+ "Auto focus": "Auto focus",
165
+ "Auto increment": "Automatische Erhöhung",
166
+ "AutoGenId": "Automatisch generiertes ID-Feld",
167
+ "Automatic close": "Automatisch schließen",
168
+ "Automatically drop objects that depend on the collection (such as views), and in turn all objects that depend on those objects": "Automatisches Löschen von Objekten, die von der Sammlung abhängen (wie Ansichten), und wiederum aller Objekte, die von diesen Objekten abhängen",
169
+ "Automatically generate default values": "Automatically generate default values",
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": "Hintergrundfarbe",
176
+ "Bar chart": "Balkendiagramm",
177
+ "Base": "Base",
178
+ "Basic": "Grundlegend",
179
+ "Basic configuration": "Basic configuration",
180
+ "Before": "Vor",
181
+ "Before change": "Vor der Änderung",
182
+ "Before render": "Before render",
183
+ "Blank block": "Leerer Block",
184
+ "Block": "Block",
185
+ "Block Linkage rules": "Block Linkage rules",
186
+ "Block linkage rules": "Block linkage rules",
187
+ "Block list": "Block list",
188
+ "Block template": "Blockvorlage",
189
+ "Block templates": "Blockvorlagen",
190
+ "Block title": "Blocktitel",
191
+ "Block type": "Blocktyp",
192
+ "Blocks": "Blocks",
193
+ "Blue": "Blau",
194
+ "Bookmark": "Lesezeichen",
195
+ "Boolean": "Boolean",
196
+ "Bottom left": "Bottom left",
197
+ "Bottom right": "Bottom right",
198
+ "Built-in": "Eingebaut",
199
+ "Bulk edit": "Massenbearbeitung",
200
+ "Bulk enable": "Bulk enable",
201
+ "Bulk update": "Massenaktualisierung",
202
+ "Button background color": "Schaltflächen-Hintergrundfarbe",
203
+ "Button icon": "Schaltflächensymbol",
204
+ "Button settings": "Button settings",
205
+ "Button title": "Schaltflächentitel",
206
+ "Button type": "Button type",
207
+ "Calculation engine": "Calculation engine",
208
+ "Calendar": "Kalender",
209
+ "Calendar Month": "Calendar Month",
210
+ "Calendar Year": "Calendar Year",
211
+ "Calendar collection": "Kalendersammlung",
212
+ "Calendar week": "Calendar week",
213
+ "Cancel": "Abbrechen",
214
+ "Cannot find the model instance with UID": "Cannot find the model instance with UID",
215
+ "Card settings": "Card settings",
216
+ "Cascade Select": "Kaskadierte Auswahl",
217
+ "Cascade select": "Cascade select",
218
+ "Cascade select settings": "Cascade select settings",
219
+ "Categories": "Kategorien",
220
+ "Category name": "Kategoriename",
221
+ "Center": "Center",
222
+ "Change password": "Passwort ändern",
223
+ "Changed to": "Geändert zu",
224
+ "Changelog": "Änderungsprotokoll",
225
+ "Chart blocks": "Diagrammblöcke",
226
+ "Chart config": "Diagrammkonfiguration",
227
+ "Chart title": "Diagrammtitel",
228
+ "Chart type": "Diagrammtyp",
229
+ "Check strength": "Check strength",
230
+ "Checkbox": "Kontrollkästchen",
231
+ "Checkbox group": "Kontrollkästchengruppe",
232
+ "Children": "Children",
233
+ "China region": "China-Region",
234
+ "Choices": "Auswahlmöglichkeiten",
235
+ "Choices fields": "Auswahlfelder",
236
+ "City": "Stadt",
237
+ "Classic page (v1)": "Classic page (v1)",
238
+ "Clear": "Löschen",
239
+ "Clear cache": "Clear cache",
240
+ "Clear default value": "Standardwert löschen",
241
+ "Click": "Click",
242
+ "Click event": "Click event",
243
+ "Click or drag file to this area to upload": "Click or drag file to this area to upload",
244
+ "Click the \"UI Editor\" icon in the upper right corner to enter the UI Editor mode": "Klicken Sie auf das \"UI-Editor\"-Symbol in der oberen rechten Ecke, um den UI-Editor-Modus zu betreten",
245
+ "Clicked row record": "Clicked row record",
246
+ "Close": "Schließen",
247
+ "Collapse": "Einklappen",
248
+ "Collapse all": "Alle einklappen",
249
+ "Collapse button": "Collapse",
250
+ "Collapse settings": "Collapse settings",
251
+ "Collapsed rows": "Collapsed rows",
252
+ "Collection": "Sammlung",
253
+ "Collection category": "Sammlungskategorie",
254
+ "Collection display name": "Anzeigename der Sammlung",
255
+ "Collection fields": "Collection fields",
256
+ "Collection manager": "Sammlungsmanager",
257
+ "Collection name": "Sammlungsname",
258
+ "Collection selector": "Sammlungsauswahl",
259
+ "Collection template": "Sammlungsvorlage",
260
+ "Collections": "Collections",
261
+ "Collections & Fields": "Sammlungen & Felder",
262
+ "Colon": "Colon",
263
+ "Color": "Farbe",
264
+ "Column": "Spalte",
265
+ "Column Settings": "Spalteneinstellungen",
266
+ "Column chart": "Säulendiagramm",
267
+ "Column title": "Spaltentitel",
268
+ "Column width": "Spaltenbreite",
269
+ "Coming soon...": "Demnächst verfügbar...",
270
+ "Compact theme": "Compact theme",
271
+ "Comparision": "Vergleich",
272
+ "Comparison": "Comparison",
273
+ "Component properties": "Component properties",
274
+ "Compressed file url": "URL der komprimierten Datei",
275
+ "Computer": "Computer",
276
+ "Condition": "Bedingung",
277
+ "Conditional assignment": "Conditional assignment",
278
+ "Configuration saved": "Configuration saved",
279
+ "Configuration:": "Configuration:",
280
+ "Configure": "Konfigurieren",
281
+ "Configure actions": "Aktionen konfigurieren",
282
+ "Configure calendar": "Kalender konfigurieren",
283
+ "Configure columns": "Spalten konfigurieren",
284
+ "Configure field": "Configure field",
285
+ "Configure fields": "Felder konfigurieren",
286
+ "Configure fields of {{title}}": "Felder von {{title}} konfigurieren",
287
+ "Configure page": "Configure page",
288
+ "Configure permission": "Berechtigung konfigurieren",
289
+ "Configure permissions": "Berechtigungen konfigurieren",
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": "Confirm",
294
+ "Confirm Load Collections": "Confirm Load Collections",
295
+ "Confirm password": "Passwort bestätigen",
296
+ "Confirmation": "Confirmation",
297
+ "Connect data blocks": "Datenblöcke verbinden",
298
+ "Connect fields": "Connect fields",
299
+ "Connect to database view": "Mit Datenbankansicht verbinden",
300
+ "Console": "Console",
301
+ "Constant": "Constant",
302
+ "Constant value": "Konstanter Wert",
303
+ "Contain": "Enthalten",
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": "Referenz in Duplikat umwandeln",
317
+ "Convert template to duplicate": "Convert template to duplicate",
318
+ "Copy": "Copy",
319
+ "Copy into the form and continue to fill in": "Copy into the form and continue to fill in",
320
+ "Cover": "Abdecken",
321
+ "Create": "Erstellen",
322
+ "Create an account": "Konto erstellen",
323
+ "Create calendar block": "Kalenderblock erstellen",
324
+ "Create collection": "Sammlung erstellen",
325
+ "Create form": "Formular erstellen",
326
+ "Create gantt block": "Gantt-Block erstellen",
327
+ "Create inverse field in the target collection": "Inverses Feld in der Zielsammlung erstellen",
328
+ "Create kanban block": "Kanban-Block erstellen",
329
+ "Create template": "Vorlage erstellen",
330
+ "Created at": "Erstellt am",
331
+ "Created by": "Erstellt von",
332
+ "CreatedAt": "Erstellt am",
333
+ "CreatedBy": "Erstellt von",
334
+ "Current action": "Current action",
335
+ "Current block": "Current block",
336
+ "Current collection": "Aktuelle Sammlung",
337
+ "Current device type": "Current device type",
338
+ "Current form": "Aktuelles Formular",
339
+ "Current object": "Aktuelles Objekt",
340
+ "Current popup": "Current popup",
341
+ "Current popup parent record": "Current popup parent record",
342
+ "Current popup record": "Aktueller Popup-Datensatz",
343
+ "Current record": "Aktueller Datensatz",
344
+ "Current record blocks": "Blöcke des aktuellen Datensatzes",
345
+ "Current role": "Aktuelle Rolle",
346
+ "Current time": "Aktuelle Zeit",
347
+ "Current user": "Aktueller Benutzer",
348
+ "Custom": "Benutzerdefiniert",
349
+ "Custom Title": "Benutzerdefinierter Titel",
350
+ "Custom column name": "Benutzerdefinierter Spaltenname",
351
+ "Custom column title": "Benutzerdefinierter Spaltentitel",
352
+ "Custom field": "Custom field",
353
+ "Custom field display name": "Benutzerdefinierter Feldanzeigename",
354
+ "Custom name": "Benutzerdefinierter Name",
355
+ "Custom request": "Benutzerdefinierte Anfrage",
356
+ "Custom title": "Benutzerdefinierter Titel",
357
+ "Custom variable": "Custom variable",
358
+ "Customize": "Anpassen",
359
+ "Cyan": "Cyan",
360
+ "DESC": "Absteigend",
361
+ "Daily": "Täglich",
362
+ "Danger action": "Danger action",
363
+ "Danger red": "Gefahr-Rot",
364
+ "Dashed": "Dashed",
365
+ "Data Model": "Data Model",
366
+ "Data blocks": "Datenblöcke",
367
+ "Data changes": "Datenänderungen",
368
+ "Data fields": "Data fields",
369
+ "Data loading mode": "Datenladungsmodus",
370
+ "Data model": "Data model",
371
+ "Data model tools": "Data model tools",
372
+ "Data refreshed successfully": "Data refreshed successfully",
373
+ "Data scope": "Datenbereich",
374
+ "Data source": "Datenquelle",
375
+ "Data source key": "Data source key",
376
+ "Data source permissions": "Data source permissions",
377
+ "Data sources": "Data sources",
378
+ "Data template": "Datenvorlage",
379
+ "Data will be updated": "Daten werden aktualisiert",
380
+ "DataSource": "Datenquelle",
381
+ "Date": "Datum",
382
+ "Date & Time": "Datum & Zeit",
383
+ "Date display format": "Datumsanzeigeformat",
384
+ "Date format": "Datumsformat",
385
+ "Date range limit": "Date range limit",
386
+ "Date scope": "Date scope",
387
+ "Date variables": "Datumsvariablen",
388
+ "Date variables(Deprecated)": "Date variables(Deprecated)",
389
+ "DateOnly": "DateOnly",
390
+ "Datetime": "Datum/Zeit",
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": "Tag",
395
+ "Day before yesterday": "Day before yesterday",
396
+ "Day/Month/Year": "Tag/Monat/Jahr",
397
+ "Default": "Standard",
398
+ "Default collapse": "Standardmäßig eingeklappt",
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": "Standard ist das ID-Feld",
403
+ "Default operator": "Default operator",
404
+ "Default role": "Standardrolle",
405
+ "Default sorting": "Default sorting",
406
+ "Default theme": "Default theme",
407
+ "Default title for each record": "Default title for each record",
408
+ "Default value": "Standardwert",
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": "Löschen",
412
+ "Delete Event": "Ereignis löschen",
413
+ "Delete action": "Aktion löschen",
414
+ "Delete block": "Block löschen",
415
+ "Delete category": "Kategorie löschen",
416
+ "Delete collection": "Sammlung löschen",
417
+ "Delete events": "Ereignisse löschen",
418
+ "Delete field": "Feld löschen",
419
+ "Delete menu item": "Menüpunkt löschen",
420
+ "Delete record": "Datensatz löschen",
421
+ "Delete role": "Rolle löschen",
422
+ "Delete route": "Route löschen",
423
+ "Delete routes": "Routen löschen",
424
+ "Delete settings": "Delete settings",
425
+ "Delete step": "Delete step",
426
+ "Delete table column": "Tabellenspalte löschen",
427
+ "Delete this event?": "Dieses Ereignis löschen?",
428
+ "Delete this target block": "Delete this target block",
429
+ "Delete variable": "Delete variable",
430
+ "Deny list": "Deny list",
431
+ "Department name": "Abteilungsname",
432
+ "Departments": "Abteilungen",
433
+ "Dependencies check": "Abhängigkeitsprüfung",
434
+ "Dependencies check failed, can't enable.": "Abhängigkeitsprüfung fehlgeschlagen, kann nicht aktiviert werden.",
435
+ "Dependencies compatibility check": "Kompatibilitätsprüfung der Abhängigkeiten",
436
+ "Deprecated": "Deprecated",
437
+ "Description": "Beschreibung",
438
+ "Desktop device": "Desktop",
439
+ "Desktop routes": "Desktop-Routen",
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": "Bestimmen Sie, ob ein Datensatz anhand der folgenden Felder existiert",
444
+ "Dialog": "Dialog",
445
+ "Direct assignment": "Direct assignment",
446
+ "Direct duplicate": "Direct duplicate",
447
+ "Disable": "Disable",
448
+ "Disable manual input": "Disable manual input",
449
+ "Disable tabs": "Tabs deaktivieren",
450
+ "Disable validation": "Disable validation",
451
+ "Disabled": "Deaktiviert",
452
+ "Disassociate": "Trennen",
453
+ "Disassociate record": "Datensatz trennen",
454
+ "Display <1><0>10</0><1>20</1><2>50</2><3>100</3></1> items per page": "<1><0>10</0><1>20</1><2>50</2><3>100</3></1> Einträge pro Seite anzeigen",
455
+ "Display <icon></icon> when unchecked": "Display <icon></icon> when unchecked",
456
+ "Display Field settings": "Display Field settings",
457
+ "Display association fields": "Verknüpfungsfelder anzeigen",
458
+ "Display field title": "Feldtitel anzeigen",
459
+ "Display fields": "Anzeigefelder der Sammlung",
460
+ "Display label": "Display label",
461
+ "Display mode": "Display mode",
462
+ "Display name": "Anzeigename",
463
+ "Display only": "Display only",
464
+ "Display order number": "Bestellnummer anzeigen",
465
+ "Display page title": "Display page title",
466
+ "Display style": "Display style",
467
+ "Display title": "Titel anzeigen",
468
+ "DisplayName": "Anzeigename",
469
+ "Divide by": "Divide by",
470
+ "Divider line color": "Divider line color",
471
+ "Do not concatenate search params in the URL": "Do not concatenate search params in the URL",
472
+ "Do not load data when filter is empty": "Keine Daten laden, wenn der Filter leer ist",
473
+ "Docs": "Docs",
474
+ "Domains ending with a . character are permitted": "Domains ending with a . character are permitted",
475
+ "Done": "Fertig",
476
+ "Double click": "Double click",
477
+ "Double click to choose entire object": "Double click to choose entire object",
478
+ "Download": "Download",
479
+ "Download logs": "Protokolle herunterladen",
480
+ "Drag and drop sorting field": "Feld für Drag & Drop-Sortierung",
481
+ "Drag and drop the file here or click to upload, file size should not exceed 30M": "Ziehen Sie die Datei hierher oder klicken Sie zum Hochladen, die Dateigröße sollte 30M nicht überschreiten",
482
+ "Dragging": "Ziehen",
483
+ "Drawer": "Seitenleiste",
484
+ "Dropdown": "Dropdown",
485
+ "Dropdown select": "Dropdown select",
486
+ "Duplicate": "Duplizieren",
487
+ "Duplicate and continue": "Duplizieren und fortfahren",
488
+ "Duplicate mode": "Duplikationsmodus",
489
+ "Duplicate template": "Vorlage duplizieren",
490
+ "Duplicating": "Dupliziere",
491
+ "Duration (seconds, 0 = no auto close)": "Duration (seconds, 0 = no auto close)",
492
+ "Dynamic value": "Dynamischer Wert",
493
+ "Easy reading": "Leicht lesbar",
494
+ "Easy-reading": "Leicht lesbar",
495
+ "Edit": "Bearbeiten",
496
+ "Edit Title": "Edit Title",
497
+ "Edit block title": "Blocktitel bearbeiten",
498
+ "Edit block title & description": "Edit block title & description",
499
+ "Edit button": "Schaltfläche bearbeiten",
500
+ "Edit category": "Kategorie bearbeiten",
501
+ "Edit chart": "Diagramm bearbeiten",
502
+ "Edit collection": "Sammlung bearbeiten",
503
+ "Edit description": "Beschreibung bearbeiten",
504
+ "Edit event flows": "Edit event flows",
505
+ "Edit field": "Feld bearbeiten",
506
+ "Edit field title": "Feldtitel bearbeiten",
507
+ "Edit form": "Formular bearbeiten",
508
+ "Edit group title": "Edit group title",
509
+ "Edit link": "Edit link",
510
+ "Edit markdown": "Markdown bearbeiten",
511
+ "Edit menu item": "Menüpunkt bearbeiten",
512
+ "Edit page size": "Edit page size",
513
+ "Edit page title": "Edit page title",
514
+ "Edit popup": "Edit popup",
515
+ "Edit profile": "Profil bearbeiten",
516
+ "Edit record": "Datensatz bearbeiten",
517
+ "Edit role": "Rolle bearbeiten",
518
+ "Edit tab": "Tab bearbeiten",
519
+ "Edit tooltip": "Tooltip bearbeiten",
520
+ "Edit variable": "Edit variable",
521
+ "Editable": "Bearbeitbar",
522
+ "Ellipsis": "Ellipsis",
523
+ "Ellipsis overflow content": "Auslassungszeichen für Überlaufinhalt",
524
+ "Email": "E-Mail",
525
+ "Embedded": "Embedded",
526
+ "Empty": "Leer",
527
+ "Enable": "Enable",
528
+ "Enable SMS authentication": "SMS-Authentifizierung aktivieren",
529
+ "Enable Scan": "Enable Scan",
530
+ "Enable actions": "Aktionen aktivieren",
531
+ "Enable child collections": "Untersammlungen aktivieren",
532
+ "Enable click-to-open": "Enable click-to-open",
533
+ "Enable drag and drop sorting": "Drag & Drop-Sortierung aktivieren",
534
+ "Enable form data template": "Enable form data template",
535
+ "Enable index column": "Enable index column",
536
+ "Enable link": "Link aktivieren",
537
+ "Enable page header": "Enable page header",
538
+ "Enable page tabs": "Enable page tabs",
539
+ "Enable quick edit": "Enable quick edit",
540
+ "Enable refresh": "Enable refresh",
541
+ "Enable secondary confirmation": "Sekundäre Bestätigung aktivieren",
542
+ "Enable tabs": "Enable tabs",
543
+ "Enable tree table": "Enable tree table",
544
+ "Enable virtual scrolling": "Enable virtual scrolling",
545
+ "Enabled": "Aktiviert",
546
+ "Enabled languages": "Aktivierte Sprachen",
547
+ "End": "End",
548
+ "End accessor": "End accessor",
549
+ "End date field": "Enddatumsfeld",
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": "Fehlermeldung",
560
+ "Event": "Ereignis",
561
+ "Event flow": "Event flow",
562
+ "Event selected": "Event selected",
563
+ "Event settings": "Event settings",
564
+ "Exact day": "Exact day",
565
+ "Execute": "Ausführen",
566
+ "Execute JavaScript": "Execute JavaScript",
567
+ "Exists": "Existiert",
568
+ "Expand All": "Alle erweitern",
569
+ "Expand all": "Alle ausklappen",
570
+ "Expand all rows by default": "Expand all rows by default",
571
+ "Expand button": "Expand",
572
+ "Expand/Collapse": "Erweitern/Einklappen",
573
+ "Export": "Exportieren",
574
+ "Exportable fields": "Exportierbare Felder",
575
+ "Expression": "Ausdruck",
576
+ "Expression collection": "Expression collection",
577
+ "FORMULAJS_DOC_URL": "https://v2.docs.nocobase.com/calculation-engine/formula",
578
+ "Failed to load plugin": "Failed to load plugin",
579
+ "False": "False",
580
+ "Feedback": "Feedback",
581
+ "Field": "Feld",
582
+ "Field Linkage rules": "Field Linkage rules",
583
+ "Field assignment": "Field assignment",
584
+ "Field component": "Feldkomponente",
585
+ "Field display name": "Feldanzeigename",
586
+ "Field interface": "Feldschnittstelle",
587
+ "Field linkage rules": "Field linkage rules",
588
+ "Field mode": "Feldmodus",
589
+ "Field model": "Field model",
590
+ "Field name": "Feldname",
591
+ "Field permission": "Feldberechtigung",
592
+ "Field settings": "Field settings",
593
+ "Field source": "Feldquelle",
594
+ "Field title": "Feldtitel",
595
+ "Field type": "Feldtyp",
596
+ "Field value changes": "Feldwertänderungen",
597
+ "Field value do not meet the requirements": "Field value do not meet the requirements",
598
+ "Field value size is": "Field value size is",
599
+ "Field values must be unique.": "Field values must be unique.",
600
+ "Fields": "Felder",
601
+ "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.",
602
+ "Fields values": "Feldwerte",
603
+ "File manager": "Dateimanager",
604
+ "File size exceeds the limit": "File size exceeds the limit",
605
+ "File size should not exceed {{size}}.": "File size should not exceed {{size}}.",
606
+ "File type is not allowed": "File type is not allowed",
607
+ "File type is not supported for previewing, please download it to preview.": "File type is not supported for previewing, please download it to preview.",
608
+ "Fill": "Füllen",
609
+ "Filled": "Filled",
610
+ "Filter": "Filter",
611
+ "Filter blocks": "Filterblöcke",
612
+ "Filter configuration": "Filter configuration",
613
+ "Filter data based on the specific field, with the requirement that the field value must be unique.": "Filter data based on the specific field, with the requirement that the field value must be unique.",
614
+ "Filter out a single piece or a group of records as a template": "Filter out a single piece or a group of records as a template",
615
+ "Filter target key": "Filter target key",
616
+ "Filterable fields": "Filterbare Felder",
617
+ "Find by the following fields": "Nach den folgenden Feldern suchen",
618
+ "First or create": "Zuerst oder erstellen",
619
+ "Fix block": "Block fixieren",
620
+ "Fixed": "Fixed",
621
+ "Fixed to the left": "Links angeheftet",
622
+ "Fixed to the right": "Rechts angeheftet",
623
+ "Flexible popup": "Flexibles Popup",
624
+ "Flow Page": "Modern page (v2)",
625
+ "Font Size(px)": "Font Size(px)",
626
+ "Font Style": "Font Style",
627
+ "Font Weight": "Font Weight",
628
+ "Foreign key": "Fremdschlüssel",
629
+ "Foreign key 1": "Fremdschlüssel 1",
630
+ "Foreign key 2": "Fremdschlüssel 2",
631
+ "Form": "Formular",
632
+ "Form (Add new)": "Formular (Neu hinzufügen)",
633
+ "Form (Edit)": "Formular (Bearbeiten)",
634
+ "Form UID": "Form UID",
635
+ "Form data templates": "Form data templates",
636
+ "Form duplicate": "Form duplicate",
637
+ "Form field assignment": "Form field assignment",
638
+ "Form item settings": "Form item settings",
639
+ "Form settings": "Form settings",
640
+ "Form values": "Formularwerte",
641
+ "Form values change": "Form values change",
642
+ "Form variable": "Form variable",
643
+ "Format": "Format",
644
+ "Formula": "Formel",
645
+ "Formula description": "Berechnet einen Wert in jedem Datensatz basierend auf anderen Feldern im selben Datensatz.",
646
+ "Formula error.": "Formelfehler.",
647
+ "Formula mode": "Formelmodus",
648
+ "Formula.js supports most Microsoft Excel formula functions.": "Formula.js supports most Microsoft Excel formula functions.",
649
+ "Full height": "Full height",
650
+ "Full permissions": "Full permissions",
651
+ "Function": "Funktion",
652
+ "Gantt": "Gantt",
653
+ "Geek blue": "Geek-Blau",
654
+ "General": "Allgemein",
655
+ "General action permissions": "Allgemeine Aktionsberechtigungen",
656
+ "General collection": "Allgemeine Sammlung",
657
+ "General configuration": "General configuration",
658
+ "General fields": "Allgemeine Felder",
659
+ "General permissions": "Allgemeine Berechtigungen",
660
+ "Generated automatically if left blank": "Wird automatisch generiert, wenn leer gelassen",
661
+ "Generic properties": "Allgemeine Eigenschaften",
662
+ "Global action permissions": "Globale Aktionsberechtigungen",
663
+ "Global permissions": "Globale Berechtigungen",
664
+ "Gold": "Gold",
665
+ "Greater than": "Greater than",
666
+ "Green": "Grün",
667
+ "Grid Card": "Rasterkarte",
668
+ "Group": "Gruppe",
669
+ "Grouped sorting": "Gruppierte Sortierung",
670
+ "Grouping field": "Gruppierungsfeld",
671
+ "HTML content": "HTML content",
672
+ "Half of day": "Halber Tag",
673
+ "Handbook": "Handbuch",
674
+ "Hidden": "Versteckt",
675
+ "Hidden (reserved value)": "Versteckt (reservierter Wert)",
676
+ "Hidden text": "Hidden text",
677
+ "Hidden(reserved value)": "Versteckt (reservierter Wert)",
678
+ "Hide": "Ausblenden",
679
+ "Hide column": "Spalte ausblenden",
680
+ "Hide in menu": "Im Menü ausblenden",
681
+ "Highlight": "Hervorheben",
682
+ "Home page": "Startseite",
683
+ "Homepage": "Startseite",
684
+ "Horizontal": "Horizontal",
685
+ "Hour": "Stunde",
686
+ "Html settings": "Html settings",
687
+ "IANA registry": "IANA registry",
688
+ "ID": "ID",
689
+ "Icon": "Symbol",
690
+ "Icon only": "Icon only",
691
+ "Identifier for program usage. Support letters, numbers and underscores, must start with an letter.": "Bezeichner für Programmnutzung. Unterstützt Buchstaben, Zahlen und Unterstriche, muss mit einem Buchstaben beginnen.",
692
+ "If a collection lacks a primary key, you must configure a unique record key to locate row records within a block, failure to configure this will prevent the creation of data blocks for the collection.": "If a collection lacks a primary key, you must configure a unique record key to locate row records within a block, failure to configure this will prevent the creation of data blocks for the collection.",
693
+ "If collection inherits, choose inherited collections as templates": "If collection inherits, choose inherited collections as templates",
694
+ "If selected, the page will display Tab pages.": "Wenn ausgewählt, zeigt die Seite Tab-Seiten an.",
695
+ "If selected, the route will be displayed in the menu.": "Wenn ausgewählt, wird die Route im Menü angezeigt.",
696
+ "Ignore invalid email length errors": "Ignore invalid email length errors",
697
+ "Imperative Drawer": "Imperative Drawer",
698
+ "Import": "Importieren",
699
+ "Importable fields": "Importierbare Felder",
700
+ "In configuration": "In Konfiguration",
701
+ "In configuration mode, the entire column becomes transparent. In non-configuration mode, the entire column will be hidden. Even if the entire column is hidden, its configured default values and other settings will still take effect.": "Im Konfigurationsmodus wird die gesamte Spalte transparent. Im Nicht-Konfigurationsmodus wird die gesamte Spalte ausgeblendet. Auch wenn die gesamte Spalte ausgeblendet ist, werden ihre konfigurierten Standardwerte und andere Einstellungen weiterhin wirksam.",
702
+ "Incomplete uploading files need to be resolved": "Incomplete uploading files need to be resolved",
703
+ "Index": "Index",
704
+ "Individual": "Individuell",
705
+ "Inherited fields": "Geerbte Felder",
706
+ "Inherited template": "Vererbte Vorlage",
707
+ "Inherits": "Erbt von",
708
+ "Inner": "Innen",
709
+ "Input": "Input",
710
+ "Input +, -, *, /, ( ) to calculate, input @ to open field variables.": "Geben Sie +, -, *, /, ( ) zum Berechnen ein, geben Sie @ ein, um Feldvariablen zu öffnen.",
711
+ "Input request data": "Input request data",
712
+ "Insert": "Einfügen",
713
+ "Insert above": "Oben einfügen",
714
+ "Insert after": "Danach einfügen",
715
+ "Insert before": "Davor einfügen",
716
+ "Insert below": "Unten einfügen",
717
+ "Insert if not exists": "Einfügen, wenn nicht vorhanden",
718
+ "Insert if not exists, or update": "Einfügen, wenn nicht vorhanden, sonst aktualisieren",
719
+ "Insert inner": "Innen einfügen",
720
+ "Insert left": "Links einfügen",
721
+ "Insert right": "Rechts einfügen",
722
+ "Installing": "Installiere",
723
+ "Integer": "Ganzzahl",
724
+ "Invalid JSON format": "Ungültiges JSON-Format",
725
+ "Inverse field display name": "Anzeigename des inversen Feldes",
726
+ "Inverse field name": "Name des inversen Feldes",
727
+ "Inverse relationship type": "Inverse Beziehungstyp",
728
+ "Italic": "Italic",
729
+ "Junction collection": "Verbindungssammlung",
730
+ "Kanban": "Kanban",
731
+ "Label": "Label",
732
+ "Label align": "Label align",
733
+ "Label field": "Beschriftungsfeld",
734
+ "Label width": "Label width",
735
+ "Language": "Sprache",
736
+ "Large": "Groß",
737
+ "Large screen device": "Großer Bildschirm",
738
+ "Last 30 days": "Letzte 30 Tage",
739
+ "Last 7 days": "Letzte 7 Tage",
740
+ "Last 90 days": "Letzte 90 Tage",
741
+ "Last Month": "Last Month",
742
+ "Last Quarter": "Last Quarter",
743
+ "Last Week": "Last Week",
744
+ "Last Year": "Last Year",
745
+ "Last month": "Letzter Monat",
746
+ "Last quarter": "Letztes Quartal",
747
+ "Last updated": "Zuletzt aktualisiert",
748
+ "Last updated at": "Zuletzt aktualisiert am",
749
+ "Last updated by": "Zuletzt aktualisiert von",
750
+ "Last week": "Letzte Woche",
751
+ "Last year": "Letztes Jahr",
752
+ "Layout": "Layout",
753
+ "Leave it blank, unless you need a custom intermediate table": "Lassen Sie es leer, es sei denn, Sie benötigen eine benutzerdefinierte Zwischentabelle",
754
+ "Left": "Left",
755
+ "Left fixed": "Left fixed",
756
+ "Length": "Länge",
757
+ "Less than": "Less than",
758
+ "License": "Lizenz",
759
+ "Lime": "Limette",
760
+ "Limit": "Limit",
761
+ "Line break": "Line break",
762
+ "Line chart": "Liniendiagramm",
763
+ "Link": "Link",
764
+ "Link action settings": "Link action settings",
765
+ "Link to": "Verknüpfen mit",
766
+ "Link to description": "Wird verwendet, um Sammlungsbeziehungen schnell zu erstellen und ist mit den meisten gängigen Szenarien kompatibel. Geeignet für Nicht-Entwickler. Als Feld dargestellt, ist es eine Dropdown-Auswahl zur Auswahl von Datensätzen aus der Zielsammlung. Nach der Erstellung werden gleichzeitig die zugehörigen Felder der aktuellen Sammlung in der Zielsammlung generiert.",
767
+ "Linkage rule": "Verknüpfungsregel",
768
+ "Linkage rules": "Verknüpfungsregeln",
769
+ "Linkage with form fields": "Verknüpfung mit Formularfeldern",
770
+ "List": "Liste",
771
+ "Load all data when filter is empty": "Alle Daten laden, wenn der Filter leer ist",
772
+ "Load collections": "Load collections",
773
+ "Local": "Lokal",
774
+ "Log in with an existing account": "Mit einem bestehenden Konto anmelden",
775
+ "Logging and monitoring": "Logging and monitoring",
776
+ "Logo": "Logo",
777
+ "Long text": "Langer Text",
778
+ "MATHJS_DOC_URL": "https://v2.docs.nocobase.com/calculation-engine/math",
779
+ "Magenta": "Magenta",
780
+ "Main": "Main",
781
+ "Main department": "Hauptabteilung",
782
+ "Manage all settings": "Alle Einstellungen verwalten",
783
+ "Manually close": "Manuell schließen",
784
+ "Many to many": "Viele zu Viele",
785
+ "Many to many description": "Wird verwendet, um Viele-zu-Viele-Beziehungen zu erstellen. Zum Beispiel hat ein Schüler viele Lehrer und ein Lehrer hat viele Schüler. Als Feld dargestellt, ist es eine Dropdown-Auswahl zur Auswahl von Datensätzen aus der zugehörigen Sammlung.",
786
+ "Many to one": "Viele zu Eins",
787
+ "Many to one description": "Wird verwendet, um Viele-zu-Eins-Beziehungen zu erstellen. Zum Beispiel kann eine Stadt nur zu einem Land gehören und ein Land kann viele Städte haben. Als Feld dargestellt, ist es eine Dropdown-Auswahl zur Auswahl eines Datensatzes aus der zugehörigen Sammlung. Nach der Erstellung wird automatisch ein Eins-zu-Viele-Feld in der zugehörigen Sammlung generiert.",
788
+ "Markdown": "Markdown",
789
+ "Marketplace": "Marktplatz",
790
+ "Math.js comes with a large set of built-in functions and constants, and offers an integrated solution to work with different data types.": "Math.js comes with a large set of built-in functions and constants, and offers an integrated solution to work with different data types.",
791
+ "Max Domain Segments": "Max Domain Segments",
792
+ "Max length": "Maximale Länge",
793
+ "Max length must greater than min length": "Maximale Länge muss größer als minimale Länge sein",
794
+ "Max value": "Max value",
795
+ "MaxDate": "MaxDate",
796
+ "Maximum": "Maximum",
797
+ "Maximum must greater than minimum": "Maximum muss größer als Minimum sein",
798
+ "Media": "Medien",
799
+ "Medium": "Medium",
800
+ "Meet": "Meet",
801
+ "Meet <1><0>All</0><1>Any</1></1> conditions in the group": "<1><0>Alle</0><1>Beliebige</1></1> Bedingungen in der Gruppe erfüllen",
802
+ "Menu": "Menü",
803
+ "Menu item icon": "Menüpunktsymbol",
804
+ "Menu item name": "Menüpunktname",
805
+ "Menu item title": "Menüpunkttitel",
806
+ "Menu permissions": "Menüberechtigungen",
807
+ "Message content": "Message content",
808
+ "Message popup close method": "Schließmethode für Popup-Nachrichten",
809
+ "Message type": "Message type",
810
+ "Middle": "Mittel",
811
+ "Millisecond": "Millisecond",
812
+ "Min Domain Segments": "Min Domain Segments",
813
+ "Min length": "Minimale Länge",
814
+ "Min length must less than max length": "Minimale Länge muss kleiner als maximale Länge sein",
815
+ "Min value": "Min value",
816
+ "MinDate": "MinDate",
817
+ "Minimum": "Minimum",
818
+ "Minimum must less than maximum": "Minimum muss kleiner als Maximum sein",
819
+ "Mobile": "Mobile",
820
+ "Mobile routes": "Mobile Routen",
821
+ "Modal": "Modal",
822
+ "Modal add": "Modal hinzufügen",
823
+ "Mode": "Mode",
824
+ "Modern page (v2)": "Modern page (v2)",
825
+ "Month": "Monat",
826
+ "Monthly": "Monatlich",
827
+ "More details": "Weitere Details",
828
+ "More options": "Weitere Optionen",
829
+ "Move down": "Move down",
830
+ "Move to": "Verschieben nach",
831
+ "Move up": "Move up",
832
+ "Move {{title}} to": "{{title}} verschieben nach",
833
+ "Multiple": "Multiple",
834
+ "Multiple select": "Mehrfachauswahl",
835
+ "Multiply by": "Multiply by",
836
+ "Must be 1-50 characters in length (excluding @.<>\"'/)": "Must be 1-50 characters in length (excluding @.<>\"'/)",
837
+ "Must select to the last level": "Muss bis zur letzten Ebene ausgewählt werden",
838
+ "Must use `-` and `:`": "Must use `-` and `:`",
839
+ "N/A": "N/A",
840
+ "Name": "Name",
841
+ "Navigate": "Navigieren",
842
+ "Navigate to URL": "Navigate to URL",
843
+ "New menu items are allowed to be accessed by default.": "Neue Menüpunkte dürfen standardmäßig zugegriffen werden.",
844
+ "New password": "Neues Passwort",
845
+ "New routes are allowed to be accessed by default": "Neue Routen dürfen standardmäßig zugegriffen werden",
846
+ "Next": "Next",
847
+ "Next 30 days": "Nächste 30 Tage",
848
+ "Next 7 days": "Nächste 7 Tage",
849
+ "Next 90 days": "Nächste 90 Tage",
850
+ "Next Month": "Next Month",
851
+ "Next Quarter": "Next Quarter",
852
+ "Next Week": "Next Week",
853
+ "Next Year": "Next Year",
854
+ "Next month": "Nächster Monat",
855
+ "Next quarter": "Nächstes Quartal",
856
+ "Next week": "Nächste Woche",
857
+ "Next year": "Nächstes Jahr",
858
+ "Nickname": "Spitzname",
859
+ "No": "Nein",
860
+ "No CHANGELOG.md file": "Keine CHANGELOG.md-Datei",
861
+ "No README.md file": "Keine README.md-Datei",
862
+ "No allow `-` and `:`": "No allow `-` and `:`",
863
+ "No assigned fields configured": "No assigned fields configured",
864
+ "No blocks to connect": "Keine Blöcke zum Verbinden",
865
+ "No configuration available.": "No configuration available.",
866
+ "No data": "No data",
867
+ "No event flows": "No event flows",
868
+ "No form available for reset.": "No form available for reset.",
869
+ "No form available for submission.": "No form available for submission.",
870
+ "No linkage rules": "No linkage rules",
871
+ "No pages yet, please configure first": "Noch keine Seiten, bitte zuerst konfigurieren",
872
+ "No parent popup": "No parent popup",
873
+ "No records selected for bulk edit": "No records selected for bulk edit",
874
+ "No records selected for deletion": "No records selected for deletion",
875
+ "No resource or record selected for deletion": "No resource or record selected for deletion",
876
+ "No resource selected for bulk edit": "No resource selected for bulk edit",
877
+ "No resource selected for deletion": "No resource selected for deletion",
878
+ "No resource selected for refresh": "No resource selected for refresh",
879
+ "None": "Keine",
880
+ "Normal": "Normal",
881
+ "Not Fixed": "Losgelöst",
882
+ "Not enabled": "Nicht aktiviert",
883
+ "Not fixed": "Not fixed",
884
+ "Not required": "Nicht erforderlich",
885
+ "Notification": "Benachrichtigung",
886
+ "Notification description": "Notification description",
887
+ "Notification title": "Notification title",
888
+ "Notification type": "Notification type",
889
+ "Now": "Now",
890
+ "Npm package": "NPM-Paket",
891
+ "Npm package name": "NPM-Paketname",
892
+ "Null": "Null",
893
+ "Number": "Zahl",
894
+ "Number settings": "Number settings",
895
+ "Object Fit": "Objektanpassung",
896
+ "Off": "Aus",
897
+ "Official plugin": "Offizielles Plugin",
898
+ "Old password": "Altes Passwort",
899
+ "On": "Ein",
900
+ "One to many": "Eins zu Viele",
901
+ "One to many description": "Wird verwendet, um eine Eins-zu-Viele-Beziehung zu erstellen. Zum Beispiel hat ein Land viele Städte und eine Stadt kann nur in einem Land sein. Als Feld dargestellt, ist es eine Untertabelle, die die Datensätze der zugehörigen Sammlung anzeigt. Bei der Erstellung wird automatisch ein Viele-zu-Eins-Feld in der zugehörigen Sammlung generiert.",
902
+ "One to one": "Eins zu Eins",
903
+ "One to one (belongs to)": "Eins zu Eins (gehört zu)",
904
+ "One to one (has one)": "Eins zu Eins (hat ein)",
905
+ "One to one description": "Wird verwendet, um eine Eins-zu-Eins-Beziehung zu erstellen. Zum Beispiel hat ein Benutzer ein Profil.",
906
+ "Only support standard JSON data": "Only support standard JSON data",
907
+ "Only the selected fields will be used as the initialization data for the form": "Only the selected fields will be used as the initialization data for the form",
908
+ "Only use `-`": "Only use `-`",
909
+ "Only use `.`": "Only use `.`",
910
+ "Only use `_`": "Only use `_`",
911
+ "Open in new window": "In neuem Fenster öffnen",
912
+ "Open in<1><0>Modal</0><1>Drawer</1><2>Window</2></1>": "Öffnen in<1><0>Modal</0><1>Seitenleiste</1><2>Fenster</2></1>",
913
+ "Open mode": "Öffnungsmodus",
914
+ "Open mode configuration": "Open mode configuration",
915
+ "Operate on existing data": "Mit vorhandenen Daten arbeiten",
916
+ "Operate on new data": "Mit neuen Daten arbeiten",
917
+ "Operation failed": "Operation fehlgeschlagen",
918
+ "Operation succeeded": "Operation erfolgreich",
919
+ "Operator": "Operator",
920
+ "Option label": "Optionsbezeichnung",
921
+ "Option value": "Optionswert",
922
+ "Options": "Optionen",
923
+ "Orange": "Orange",
924
+ "Original field title: ": "Ursprünglicher Feldtitel: ",
925
+ "Original name": "Ursprünglicher Name",
926
+ "Original title: ": "Ursprünglicher Titel: ",
927
+ "Other": "Other",
928
+ "Other action": "Other action",
929
+ "Other block": "Other block",
930
+ "Other blocks": "Andere Blöcke",
931
+ "Other chart": "Anderes Diagramm",
932
+ "Other collections": "Andere Sammlungen",
933
+ "Other column": "Other column",
934
+ "Other form": "Other form",
935
+ "Other records": "Andere Datensätze",
936
+ "Others": "Andere",
937
+ "Outlined": "Outlined",
938
+ "Override": "Überschreiben",
939
+ "Override field": "Feld überschreiben",
940
+ "Oversized": "Übergroß",
941
+ "Own records": "Eigene Datensätze",
942
+ "Owners": "Eigentümer",
943
+ "PK & FK fields": "PK & FK Felder",
944
+ "Package name": "Package name",
945
+ "PackageName": "Paketname",
946
+ "Page": "Seite",
947
+ "Page (v2)": "Page (v2)",
948
+ "Page Title": "Page Title",
949
+ "Page number": "Page number",
950
+ "Page settings": "Page settings",
951
+ "Page size": "Page size",
952
+ "Parent": "Parent",
953
+ "Parent ID": "Parent ID",
954
+ "Parent collection fields": "Felder der übergeordneten Sammlung",
955
+ "Parent object": "Übergeordnetes Objekt",
956
+ "Parent popup": "Parent popup",
957
+ "Parent popup record": "Übergeordneter Popup-Datensatz",
958
+ "Parent record": "Übergeordneter Datensatz",
959
+ "Password": "Passwort",
960
+ "Password Options": "Password Options",
961
+ "Password mismatch": "Passwörter stimmen nicht überein",
962
+ "Past": "Past",
963
+ "Path": "Pfad",
964
+ "Pattern": "Muster",
965
+ "Percent": "Prozent",
966
+ "Perform the Custom request": "Perform the Custom request",
967
+ "Perform the Refresh": "Perform the Refresh",
968
+ "Perform the Submit": "Perform the Submit",
969
+ "Perform the Trigger workflow": "Perform the Trigger workflow",
970
+ "Perform the Update record": "Perform the Update record",
971
+ "Perform the {{title}}": "Perform the {{title}}",
972
+ "Permission deined": "Berechtigung verweigert",
973
+ "Permission denied": "Permission denied",
974
+ "Permission policy": "Berechtigungsrichtlinie",
975
+ "Phone": "Telefon",
976
+ "Phone device": "Mobiltelefon",
977
+ "Picker": "Picker",
978
+ "Pie chart": "Kreisdiagramm",
979
+ "Pin to left": "Links anheften",
980
+ "Pin to right": "Rechts anheften",
981
+ "Placeholder": "Placeholder",
982
+ "Placement": "Placement",
983
+ "Please add a data block on the page first": "Please add a data block on the page first",
984
+ "Please add or select record": "Please add or select record",
985
+ "Please configure the URL": "Please configure the URL",
986
+ "Please configure the duplicate fields": "Bitte konfigurieren Sie die Duplikatfelder",
987
+ "Please confirm the SQL statement first": "Bitte bestätigen Sie zuerst die SQL-Anweisung",
988
+ "Please enter form uid": "Please enter form uid",
989
+ "Please enter the target block UID": "Please enter the target block UID",
990
+ "Please enter variable identifier": "Please enter variable identifier",
991
+ "Please enter variable title": "Please enter variable title",
992
+ "Please fill in the iframe URL": "Bitte geben Sie die iframe-URL ein",
993
+ "Please input message content": "Please input message content",
994
+ "Please input notification description": "Please input notification description",
995
+ "Please input notification title": "Please input notification title",
996
+ "Please input target action uid": "Please input target action uid",
997
+ "Please input target block uid": "Please input target block uid",
998
+ "Please input target form uid": "Please input target form uid",
999
+ "Please select": "Please select",
1000
+ "Please select field": "Please select field",
1001
+ "Please select fields": "Please select fields",
1002
+ "Please select fields to filter": "Please select fields to filter",
1003
+ "Please select filterable fields": "Please select filterable fields",
1004
+ "Please select state": "Please select state",
1005
+ "Please select the records to be updated": "Bitte wählen Sie die zu aktualisierenden Datensätze aus",
1006
+ "Please select time or variable": "Please select time or variable",
1007
+ "Please use a valid SELECT or WITH AS statement": "Bitte verwenden Sie eine gültige SELECT- oder WITH AS-Anweisung",
1008
+ "Plugin": "Plugin",
1009
+ "Plugin Zip File": "Plugin-ZIP-Datei",
1010
+ "Plugin dependencies check failed": "Überprüfung der Plugin-Abhängigkeiten fehlgeschlagen",
1011
+ "Plugin dependencies check failed, you should change the dependent version to meet the version requirements.": "Die Überprüfung der Plugin-Abhängigkeiten ist fehlgeschlagen. Sie sollten die abhängige Version ändern, um die Versionsanforderungen zu erfüllen.",
1012
+ "Plugin dependency version mismatch": "Versionsinkompatibilität der Plugin-Abhängigkeit",
1013
+ "Plugin loading failed. Please check the server logs.": "Plugin-Ladung fehlgeschlagen. Bitte überprüfen Sie die Serverprotokolle.",
1014
+ "Plugin manager": "Plugin-Manager",
1015
+ "Plugin name": "Plugin-Name",
1016
+ "Plugin settings": "Plugin-Einstellungen",
1017
+ "Plugin settings permissions": "Plugin-Einstellungsberechtigungen",
1018
+ "Plugin source": "Plugin-Quelle",
1019
+ "Plugin starting...": "Plugin wird gestartet...",
1020
+ "Plugin stopping...": "Plugin wird gestoppt...",
1021
+ "Plugin tab name": "Plugin-Tab-Name",
1022
+ "Plugin's version": "Plugin-Version",
1023
+ "Pop-up": "Pop-up",
1024
+ "Popup": "Popup",
1025
+ "Popup form": "Popup-Formular",
1026
+ "Popup message": "Popup-Nachricht",
1027
+ "Popup record": "Popup record",
1028
+ "Popup settings": "Popup settings",
1029
+ "Popup size": "Popup-Größe",
1030
+ "Popup uid": "Popup UID",
1031
+ "Position": "Position",
1032
+ "Precision": "Genauigkeit",
1033
+ "Precision(UI)": "Precision(UI)",
1034
+ "Prefix": "Prefix",
1035
+ "Preset fields": "Voreingestellte Felder",
1036
+ "Prettify": "Prettify",
1037
+ "Preview": "Vorschau",
1038
+ "Preview Settings": "Preview Settings",
1039
+ "Preview field component": "Preview field component",
1040
+ "Primary": "Primär",
1041
+ "Primary key, unique identifier, self growth": "Primärschlüssel, eindeutiger Bezeichner, automatische Erhöhung",
1042
+ "Print": "Drucken",
1043
+ "Problematic": "Problematisch",
1044
+ "Progress field": "Fortschrittsfeld",
1045
+ "Properties": "Eigenschaften",
1046
+ "Providing certain collections as options for users, typically used in polymorphic or inheritance scenarios": "Bestimmte Sammlungen als Optionen für Benutzer bereitstellen, typischerweise verwendet in polymorphen oder Vererbungsszenarien",
1047
+ "Province": "Provinz",
1048
+ "Province/city/area name": "Provinz/Stadt/Gebietsname",
1049
+ "Purple": "Lila",
1050
+ "Quarter": "Quarter",
1051
+ "Quarter of day": "Viertel des Tages",
1052
+ "QuarterYear": "Jahresquartal",
1053
+ "Quick add": "Schnell hinzufügen",
1054
+ "Quick create": "Quick create",
1055
+ "Quick duplicate": "Schnelles Duplizieren",
1056
+ "Quick upload": "Schnelles Hochladen",
1057
+ "Radio group": "Radiogruppe",
1058
+ "Randomly generated and can be modified. Support letters, numbers and underscores, must start with an letter.": "Zufällig generiert und kann geändert werden. Unterstützt Buchstaben, Zahlen und Unterstriche, muss mit einem Buchstaben beginnen.",
1059
+ "Read only": "Nur lesen",
1060
+ "ReadOnly": "ReadOnly",
1061
+ "ReadPretty": "ReadPretty",
1062
+ "Readme": "Readme",
1063
+ "Readonly": "Schreibgeschützt",
1064
+ "Recommended": "Recommended",
1065
+ "Record ID": "Datensatz-ID",
1066
+ "Record deleted successfully": "Record deleted successfully",
1067
+ "Record picker": "Datensatzauswahl",
1068
+ "Record unique key": "Record unique key",
1069
+ "RecordPicker settings": "RecordPicker settings",
1070
+ "Records can be sorted": "Datensätze können sortiert werden",
1071
+ "Records per page": "Datensätze pro Seite",
1072
+ "Red": "Rot",
1073
+ "Redirect to": "Weiterleiten zu",
1074
+ "Reference template": "Referenzvorlage",
1075
+ "References": "References",
1076
+ "Refresh": "Aktualisieren",
1077
+ "Refresh data after execution": "Refresh data after execution",
1078
+ "Refresh data blocks": "Aktualisieren Sie die Datenblöcke",
1079
+ "Refresh data on action": "Refresh data on action",
1080
+ "Refresh data on close": "Refresh data on close",
1081
+ "Refresh target blocks": "Refresh target blocks",
1082
+ "Regular Expression": "Regular Expression",
1083
+ "Regular expression": "Regulärer Ausdruck",
1084
+ "Related collection": "Zugehörige Sammlung",
1085
+ "Relation": "Beziehung",
1086
+ "Relationship blocks": "Beziehungsblöcke",
1087
+ "Relationship type": "Beziehungstyp",
1088
+ "Reload application": "Reload application",
1089
+ "Remains the same": "Bleibt gleich",
1090
+ "Remove": "Remove",
1091
+ "Render Failed": "Rendering fehlgeschlagen",
1092
+ "Render mode": "Render mode",
1093
+ "Repeats": "Wiederholungen",
1094
+ "Request API": "API anfragen",
1095
+ "Request URL": "Anfrage-URL",
1096
+ "Request body": "Anfragekörper",
1097
+ "Request headers": "Anfrageheader",
1098
+ "Request method": "Anfragemethode",
1099
+ "Request query parameters": "Anfrageparameter",
1100
+ "Request settings": "Anfrageeinstellungen",
1101
+ "Request success": "Anfrage erfolgreich",
1102
+ "Required": "Erforderlich",
1103
+ "Reset": "Zurücksetzen",
1104
+ "Reset link expiration": "Linkablauf zurücksetzen",
1105
+ "Response record": "Response record",
1106
+ "Response type": "Response type",
1107
+ "Restart": "Neustart",
1108
+ "Restart application": "Anwendung neu starten",
1109
+ "Restrict only relative URIs": "Restrict only relative URIs",
1110
+ "Result": "Ergebnis",
1111
+ "Retry after {{count}} seconds": "Wiederholen nach {{count}} Sekunden",
1112
+ "Return to the main application": "Zurück zur Hauptanwendung",
1113
+ "Return to the previous popup or page": "Return to the previous popup or page",
1114
+ "Rich Text": "Rich Text",
1115
+ "Right": "Right",
1116
+ "Right fixed": "Right fixed",
1117
+ "Role UID": "Rollen-UID",
1118
+ "Role display name": "Rollenanzeigename",
1119
+ "Role name": "Rollenname",
1120
+ "Roles": "Rollen",
1121
+ "Roles & Permissions": "Rollen & Berechtigungen",
1122
+ "Route name": "Routenname",
1123
+ "Route permissions": "Routenberechtigungen",
1124
+ "Routes": "Routen",
1125
+ "Row click": "Row click",
1126
+ "Rows": "Rows",
1127
+ "SQL collection": "SQL collection",
1128
+ "Save": "Speichern",
1129
+ "Save action": "Aktion speichern",
1130
+ "Save as block template": "Als Blockvorlage speichern",
1131
+ "Save as inherited template": "Als vererbte Vorlage speichern",
1132
+ "Save as reference template": "Als Referenzvorlage speichern",
1133
+ "Save as template": "Als Vorlage speichern",
1134
+ "Save conditions": "Bedingungen speichern",
1135
+ "Save failed": "Save failed",
1136
+ "Save mode": "Speichermodus",
1137
+ "Save record": "Datensatz speichern",
1138
+ "Saved successfully": "Erfolgreich gespeichert",
1139
+ "Scale": "Scale",
1140
+ "Scale Down": "Verkleinern",
1141
+ "Scan to input": "Scan to input",
1142
+ "Scheme": "Scheme",
1143
+ "Scientifix notation": "Scientifix notation",
1144
+ "Scope name": "Bereichsname",
1145
+ "Screen size": "Bildschirmgröße",
1146
+ "Search": "Suchen",
1147
+ "Search and select collection": "Sammlung suchen und auswählen",
1148
+ "Search collections...": "Search collections...",
1149
+ "Search parameters": "Search parameters",
1150
+ "Search plugin": "Plugin suchen",
1151
+ "Search plugin...": "Search plugin...",
1152
+ "Second": "Second",
1153
+ "Secondary confirmation": "Secondary confirmation",
1154
+ "Security": "Security",
1155
+ "Select": "Auswählen",
1156
+ "Select a source field to use metadata of the field": "Select a source field to use metadata of the field",
1157
+ "Select a variable": "Select a variable",
1158
+ "Select all": "Alle auswählen",
1159
+ "Select an existing piece of data as the initialization data for the form": "Select an existing piece of data as the initialization data for the form",
1160
+ "Select collection": "Sammlung auswählen",
1161
+ "Select data blocks to refresh": "Wählen Sie die Datenblöcke aus, die aktualisiert werden sollen.",
1162
+ "Select data source": "Datenquelle auswählen",
1163
+ "Select date": "Select date",
1164
+ "Select field": "Feld auswählen",
1165
+ "Select file": "Datei auswählen",
1166
+ "Select form fields": "Select form fields",
1167
+ "Select grouping field": "Gruppierungsfeld auswählen",
1168
+ "Select icon": "Symbol auswählen",
1169
+ "Select level": "Ebene auswählen",
1170
+ "Select mode": "Select mode",
1171
+ "Select record": "Datensatz auswählen",
1172
+ "Select target action": "Select target action",
1173
+ "Select target block": "Select target block",
1174
+ "Select target form block": "Select target form block",
1175
+ "Select template": "Vorlage auswählen",
1176
+ "Select trigger event": "Select trigger event",
1177
+ "Select variable": "Select variable",
1178
+ "Select view": "Ansicht auswählen",
1179
+ "Selected": "Ausgewählt",
1180
+ "Selected Collections": "Selected Collections",
1181
+ "Selected records deleted successfully": "Selected records deleted successfully",
1182
+ "Selector": "Selektor",
1183
+ "Selector mode": "Auswahlmodus",
1184
+ "Selector setting": "Selector setting",
1185
+ "Send code": "Code senden",
1186
+ "Separate multiple values with comma or Enter": "Separate multiple values with comma or Enter",
1187
+ "Separator": "Separator",
1188
+ "Set Template Engine": "Set Template Engine",
1189
+ "Set action state": "Set action state",
1190
+ "Set block height": "Set block height",
1191
+ "Set block layout": "Set block layout",
1192
+ "Set block state": "Set block state",
1193
+ "Set button state": "Set button state",
1194
+ "Set condition": "Set condition",
1195
+ "Set data loading mode": "Datenladungsmodus festlegen",
1196
+ "Set data scope": "Set data scope",
1197
+ "Set default sorting rules": "Standardsortierregeln festlegen",
1198
+ "Set default value": "Standardwert festlegen",
1199
+ "Set details field state": "Set details field state",
1200
+ "Set field state": "Set field state",
1201
+ "Set field value": "Set field value",
1202
+ "Set form field state": "Set form field state",
1203
+ "Set form field value": "Set form field value",
1204
+ "Set state": "Set state",
1205
+ "Set the count of columns displayed in a row": "Anzahl der Spalten in einer Zeile festlegen",
1206
+ "Set the data scope": "Datenbereich festlegen",
1207
+ "Set validation rules": "Validierungsregeln festlegen",
1208
+ "Set value": "Set value",
1209
+ "Setting": "Einstellung",
1210
+ "Settings": "Einstellungen",
1211
+ "Show date range": "Show date range",
1212
+ "Show file name": "Show file name",
1213
+ "Show in menu": "Im Menü anzeigen",
1214
+ "Show label": "Show label",
1215
+ "Show lunar": "Mondkalender anzeigen",
1216
+ "Show message": "Show message",
1217
+ "Show notification": "Show notification",
1218
+ "Show row numbers": "Show row numbers",
1219
+ "Show time": "Zeit anzeigen",
1220
+ "Sign in": "Anmelden",
1221
+ "Sign in via account": "Über Konto anmelden",
1222
+ "Sign in via phone": "Über Telefon anmelden",
1223
+ "Sign in with another account": "Mit einem anderen Konto anmelden",
1224
+ "Sign out": "Abmelden",
1225
+ "Sign up": "Registrieren",
1226
+ "Sign up successfully, and automatically jump to the sign in page": "Registrierung erfolgreich, Sie werden automatisch zur Anmeldeseite weitergeleitet",
1227
+ "Signed up successfully. It will jump to the login page.": "Registrierung erfolgreich. Sie werden zur Anmeldeseite weitergeleitet.",
1228
+ "Simple string replacement, can be used to interpolate variables in a string.": "Simple string replacement, can be used to interpolate variables in a string.",
1229
+ "Single line text": "Einzeiliger Text",
1230
+ "Single select": "Einzelauswahl",
1231
+ "Single select and radio fields can be used as the grouping field": "Einzelauswahl- und Radiofelder können als Gruppierungsfeld verwendet werden",
1232
+ "Size": "Größe",
1233
+ "Sizes": "Sizes",
1234
+ "Skip getting the total number of table records during paging to speed up loading. It is recommended to enable this option for data tables with a large amount of data": "Überspringt das Abrufen der Gesamtanzahl der Tabellendatensätze während der Paginierung, um das Laden zu beschleunigen. Es wird empfohlen, diese Option für Datentabellen mit einer großen Datenmenge zu aktivieren",
1235
+ "Skip required validation": "Erforderliche Validierung überspringen",
1236
+ "Small": "Klein",
1237
+ "SmartTv": "SmartTv",
1238
+ "Some files are not uploaded correctly, please check.": "Some files are not uploaded correctly, please check.",
1239
+ "Sorry, the page you visited does not exist.": "Entschuldigung, die von Ihnen besuchte Seite existiert nicht.",
1240
+ "Sort": "Sortieren",
1241
+ "Sortable": "Sortierbar",
1242
+ "Source collection": "Quellsammlung",
1243
+ "Source collections": "Quellsammlungen",
1244
+ "Source key": "Quellschlüssel",
1245
+ "Specific properties": "Spezifische Eigenschaften",
1246
+ "Specifies a Permissions Policy for the <iframe>. The policy defines what features are available to the <iframe> (for example, access to the microphone, camera, battery, web-share, etc.) based on the origin of the request.": "Specifies a Permissions Policy for the <iframe>. The policy defines what features are available to the <iframe> (for example, access to the microphone, camera, battery, web-share, etc.) based on the origin of the request.",
1247
+ "Specify height": "Specify height",
1248
+ "Start": "Start",
1249
+ "Start accessor": "Start accessor",
1250
+ "Start date field": "Startdatumsfeld",
1251
+ "State": "State",
1252
+ "Stay on current page": "Auf aktueller Seite bleiben",
1253
+ "Stay on the current popup or page": "Stay on the current popup or page",
1254
+ "Steps": "Steps",
1255
+ "Store the creation time of each record": "Speichert die Erstellungszeit jedes Datensatzes",
1256
+ "Store the creation user of each record": "Speichert den Erstellungsbenutzer jedes Datensatzes",
1257
+ "Store the last update time of each record": "Speichert die letzte Aktualisierungszeit jedes Datensatzes",
1258
+ "Store the last update user of each record": "Speichert den letzten Aktualisierungsbenutzer jedes Datensatzes",
1259
+ "Street": "Straße",
1260
+ "String": "String",
1261
+ "String template": "String template",
1262
+ "Style": "Stil",
1263
+ "Sub-detail": "Sub-detail",
1264
+ "Sub-details": "Unterdetails",
1265
+ "Sub-form": "Unterformular",
1266
+ "Sub-form(Popover)": "Unterformular (Popover)",
1267
+ "Sub-table": "Untertabelle",
1268
+ "Subform mode": "Unterformularmodus",
1269
+ "Submit": "Absenden",
1270
+ "Submit action settings": "Submit action settings",
1271
+ "Submit record": "Submit record",
1272
+ "Submitted successfully": "Erfolgreich übermittelt",
1273
+ "Subtable": "Untertabelle",
1274
+ "Subtable mode": "Untertabellenmodus",
1275
+ "Successfully": "Successfully",
1276
+ "Suffix": "Suffix",
1277
+ "Super admin": "Superadministrator",
1278
+ "Superior department": "Übergeordnete Abteilung",
1279
+ "Support filtering multiple blocks simultaneously, support deep selection of relationship fields (e.g.: User/Department/Name)": "Support filtering multiple blocks simultaneously, support deep selection of relationship fields (e.g.: User/Department/Name)",
1280
+ "Support for a single or bulk upload.": "Support for a single or bulk upload.",
1281
+ "Switch role": "Rolle wechseln",
1282
+ "Switching the picker, the value and default value will be cleared": "Switching the picker, the value and default value will be cleared",
1283
+ "Sync from database": "Von Datenbank synchronisieren",
1284
+ "Sync from form fields": "Von Formularfeldern synchronisieren",
1285
+ "Sync successfully": "Synchronisierung erfolgreich",
1286
+ "Syntax references": "Syntax references",
1287
+ "System": "System",
1288
+ "System & security": "System & security",
1289
+ "System fields": "Systemfelder",
1290
+ "System info": "Systeminformationen",
1291
+ "System management": "System management",
1292
+ "System settings": "Systemeinstellungen",
1293
+ "System title": "Systemtitel",
1294
+ "System variables": "Systemvariablen",
1295
+ "Tab": "Tab",
1296
+ "Tab name": "Tab-Name",
1297
+ "Table": "Tabelle",
1298
+ "Table OID(Inheritance)": "Tabellen-OID (Vererbung)",
1299
+ "Table column settings": "Table column settings",
1300
+ "Table density": "Table density",
1301
+ "Table selected records": "Ausgewählte Tabellendatensätze",
1302
+ "Table settings": "Table settings",
1303
+ "Table size": "Table size",
1304
+ "Tablet": "Tablet",
1305
+ "Tablet device": "Tablet",
1306
+ "Tag": "Tag",
1307
+ "Tag color field": "Tag-Farbfeld",
1308
+ "Target": "Ziel",
1309
+ "Target block UID": "Target block UID",
1310
+ "Target block uid": "Target block uid",
1311
+ "Target collection": "Zielsammlung",
1312
+ "Target form block": "Target form block",
1313
+ "Target key": "Zielschlüssel",
1314
+ "Target position": "Zielposition",
1315
+ "Template": "Template",
1316
+ "Template Data": "Template Data",
1317
+ "Template engine": "Template engine",
1318
+ "Template fields": "Template fields",
1319
+ "Template name": "Vorlagenname",
1320
+ "Templates": "Vorlagen",
1321
+ "Text": "Text",
1322
+ "Text Align": "Textausrichtung",
1323
+ "Text input": "Text input",
1324
+ "Text only": "Text only",
1325
+ "The application is reloading, please do not close the page.": "The application is reloading, please do not close the page.",
1326
+ "The current button is hidden and cannot be clicked (this message is only visible when the UI Editor is active).": "The current button is hidden and cannot be clicked (this message is only visible when the UI Editor is active).",
1327
+ "The current dependency version of the plugin does not match the version of the application and may not work properly. Are you sure you want to continue enabling the plugin?": "Die aktuelle Abhängigkeitsversion des Plugins stimmt nicht mit der Version der Anwendung überein und funktioniert möglicherweise nicht ordnungsgemäß. Sind Sie sicher, dass Sie das Plugin weiterhin aktivieren möchten?",
1328
+ "The current user only has the UI configuration permission, but don't have \"{{actionName}}\" permission for collection \"{{name}}\"": "The current user only has the UI configuration permission, but don't have \"{{actionName}}\" permission for collection \"{{name}}\"",
1329
+ "The current user only has the UI configuration permission, but don't have \"{{actionName}}\" permission for field \"{{name}}\"": "The current user only has the UI configuration permission, but don't have \"{{actionName}}\" permission for field \"{{name}}\"",
1330
+ "The current user only has the UI configuration permission, but don't have view permission for collection \"{{name}}\"": "The current user only has the UI configuration permission, but don't have view permission for collection \"{{name}}\"",
1331
+ "The deletion was successful.": "Das Löschen war erfolgreich.",
1332
+ "The field has been deleted": "Das Feld wurde gelöscht",
1333
+ "The field value cannot be greater than ": "Der Feldwert darf nicht größer sein als ",
1334
+ "The field value cannot be less than ": "Der Feldwert darf nicht kleiner sein als ",
1335
+ "The field value is not a email format": "The field value is not a email format",
1336
+ "The field value is not an integer number": "Der Feldwert ist keine ganze Zahl",
1337
+ "The field value is required": "The field value is required",
1338
+ "The following field types are not compatible and do not support output and display": "The following field types are not compatible and do not support output and display",
1339
+ "The selected fields will automatically populate the form": "The selected fields will automatically populate the form",
1340
+ "The title field is used to identify the template record": "The title field is used to identify the template record",
1341
+ "The value of this variable is derived from the query string of the page URL. This variable can only be used normally when the page has a query string.": "Der Wert dieser Variable wird aus der Abfragezeichenfolge der Seiten-URL abgeleitet. Diese Variable kann nur normal verwendet werden, wenn die Seite eine Abfragezeichenfolge hat.",
1342
+ "The will interrupt service, it may take a few seconds to restart. Are you sure to continue?": "The will interrupt service, it may take a few seconds to restart. Are you sure to continue?",
1343
+ "The {{type}} \"{{name}}\" may have been deleted. Please remove this {{blockType}}.": "Der {{type}} \"{{name}}\" wurde möglicherweise gelöscht. Bitte entfernen Sie diesen {{blockType}}.",
1344
+ "Theme": "Theme",
1345
+ "Then": "Dann",
1346
+ "Third party services": "Third party services",
1347
+ "This Month": "This Month",
1348
+ "This Quarter": "This Quarter",
1349
+ "This Week": "This Week",
1350
+ "This Year": "This Year",
1351
+ "This and following events": "Dieses und folgende Ereignisse",
1352
+ "This event": "Dieses Ereignis",
1353
+ "This field has been hidden and you cannot view it (this content is only visible when the UI Editor is activated).": "This field has been hidden and you cannot view it (this content is only visible when the UI Editor is activated).",
1354
+ "This field is required": "This field is required",
1355
+ "This is a demo text, **supports Markdown syntax**.": "Dies ist ein Beispieltext, **unterstützt Markdown-Syntax**.",
1356
+ "This is likely a NocoBase internals bug. Please open an issue at <1>here</1>": "Dies ist wahrscheinlich ein interner Fehler von NocoBase. Bitte öffnen Sie ein Problem <1>hier</1>",
1357
+ "This month": "Dieser Monat",
1358
+ "This quarter": "Dieses Quartal",
1359
+ "This variable has been deprecated and can be replaced with \"Current form\"": "Diese Variable ist veraltet und kann durch \"Aktuelles Formular\" ersetzt werden",
1360
+ "This week": "Diese Woche",
1361
+ "This year": "Dieses Jahr",
1362
+ "Through collection": "Zwischensammlung",
1363
+ "Time": "Zeit",
1364
+ "Time format": "Zeitformat",
1365
+ "Time scale": "Zeitskala",
1366
+ "Timeout config": "Timeout config",
1367
+ "Timestamp": "Timestamp",
1368
+ "Title": "Titel",
1369
+ "Title & description": "Title & description",
1370
+ "Title accessor": "Title accessor",
1371
+ "Title field": "Titelfeld",
1372
+ "Title field component": "Title field component",
1373
+ "Title position": "Title position",
1374
+ "Today": "Heute",
1375
+ "Toggles the subfield mode": "Schaltet den Unterfeld-Modus um",
1376
+ "Tomorrow": "Morgen",
1377
+ "Tooltip": "Tooltip",
1378
+ "Top left": "Top left",
1379
+ "Top right": "Top right",
1380
+ "Total {{count}} items": "Insgesamt {{count}} Einträge",
1381
+ "Tree collection": "Tree collection",
1382
+ "Tree table": "Baumtabelle",
1383
+ "Trigger condition": "Trigger condition",
1384
+ "Trigger event": "Trigger event",
1385
+ "Trigger workflow": "Workflow auslösen",
1386
+ "Triggered when the row is clicked": "Wird ausgelöst, wenn auf die Zeile geklickt wird",
1387
+ "True": "True",
1388
+ "Try again": "Erneut versuchen",
1389
+ "Turn pages": "Seiten umblättern",
1390
+ "Two tone": "Two tone",
1391
+ "Type": "Typ",
1392
+ "UI Editor": "UI-Editor",
1393
+ "UI editor": "UI-Editor",
1394
+ "URL": "URL",
1395
+ "URL search params": "URL-Suchparameter",
1396
+ "UnSelect all": "UnSelect all",
1397
+ "Unauthenticated. Please sign in to continue.": "Nicht authentifiziert. Bitte melden Sie sich an, um fortzufahren.",
1398
+ "Unconnected": "Nicht verbunden",
1399
+ "Unicode characters are permitted": "Unicode characters are permitted",
1400
+ "Unique": "Eindeutig",
1401
+ "Unit conversion": "Unit conversion",
1402
+ "Unix Timestamp": "Unix Timestamp",
1403
+ "Unknown field type": "Unknown field type",
1404
+ "Unnamed": "Unnamed",
1405
+ "Unpinned": "Losgelöst",
1406
+ "Unsafe integer": "Unsafe integer",
1407
+ "Unsaved changes": "Ungespeicherte Änderungen",
1408
+ "Update": "Aktualisieren",
1409
+ "Update all data?": "Alle Daten aktualisieren?",
1410
+ "Update or create": "Aktualisieren oder erstellen",
1411
+ "Update plugin": "Plugin aktualisieren",
1412
+ "Update record": "Datensatz aktualisieren",
1413
+ "Update record action": "Update record",
1414
+ "Update selected data?": "Ausgewählte Daten aktualisieren?",
1415
+ "Updated successfully": "Erfolgreich aktualisiert",
1416
+ "UpdatedAt": "Aktualisiert am",
1417
+ "UpdatedBy": "Aktualisiert von",
1418
+ "Upgrade": "Aktualisieren",
1419
+ "Upload": "Hochladen",
1420
+ "Upload file settings": "Upload file settings",
1421
+ "Upload new version": "Neue Version hochladen",
1422
+ "Upload plugin": "Plugin hochladen",
1423
+ "Uploading": "Uploading",
1424
+ "Use simple pagination mode": "Use simple pagination mode",
1425
+ "Use the same time zone (GMT) for all users": "Verwenden Sie die gleiche Zeitzone (GMT) für alle Benutzer",
1426
+ "Used for drag and drop sorting scenarios, supporting grouping sorting": "Wird für Drag & Drop-Sortierungsszenarien verwendet und unterstützt Gruppensortierung",
1427
+ "User": "Benutzer",
1428
+ "User not found. Please sign in again to continue.": "Benutzer nicht gefunden. Bitte melden Sie sich erneut an, um fortzufahren.",
1429
+ "User password changed, please signin again.": "Benutzerpasswort geändert, bitte melden Sie sich erneut an.",
1430
+ "Username": "Username",
1431
+ "Users": "Benutzer",
1432
+ "Users & permissions": "Users & permissions",
1433
+ "Valid range: 10-40": "Valid range: 10-40",
1434
+ "Valid range: 100-900": "Valid range: 100-900",
1435
+ "Validation": "Validation",
1436
+ "Validation rule": "Validierungsregel",
1437
+ "Value": "Wert",
1438
+ "Variable identifier": "Variable identifier",
1439
+ "Variable title": "Variable title",
1440
+ "Verification code": "Bestätigungscode",
1441
+ "Version": "Version",
1442
+ "Version range": "Versionsbereich",
1443
+ "Vertical": "Vertical",
1444
+ "View": "Ansicht",
1445
+ "View all plugins": "Alle Plugins anzeigen",
1446
+ "View record": "Datensatz ansehen",
1447
+ "Village": "Dorf",
1448
+ "Visible": "Sichtbar",
1449
+ "Volcano": "Vulkan",
1450
+ "Wearable": "Wearable",
1451
+ "Week": "Woche",
1452
+ "Weekly": "Wöchentlich",
1453
+ "When a field is selected for grouping, it will be grouped first before sorting.": "Wenn ein Feld für die Gruppierung ausgewählt wird, wird es zuerst gruppiert, bevor es sortiert wird.",
1454
+ "When condition is met": "When condition is met",
1455
+ "When condition is not met": "When condition is not met",
1456
+ "When submitting the following fields, the saved values are": "Beim Absenden der folgenden Felder sind die gespeicherten Werte",
1457
+ "When the HTTP method is Post, Put or Patch, and this custom request inside the form, the request body will be automatically filled in with the form data": "When the HTTP method is Post, Put or Patch, and this custom request inside the form, the request body will be automatically filled in with the form data",
1458
+ "When the Label exceeds the width": "When the Label exceeds the width",
1459
+ "With condition": "With condition",
1460
+ "Without condition": "Without condition",
1461
+ "Work week": "Arbeitswoche",
1462
+ "Workflow": "Workflow",
1463
+ "Wrap": "Wrap",
1464
+ "Wysiwyg": "Wysiwyg",
1465
+ "Year": "Jahr",
1466
+ "Year-Month-Day": "Jahr-Monat-Tag",
1467
+ "Year/Month/Day": "Jahr/Monat/Tag",
1468
+ "Yearly": "Jährlich",
1469
+ "Yes": "Ja",
1470
+ "Yesterday": "Gestern",
1471
+ "Your session has expired. Please sign in again.": "Ihre Sitzung ist abgelaufen. Bitte melden Sie sich erneut an.",
1472
+ "conditions in the group": "conditions in the group",
1473
+ "contains": "enthält",
1474
+ "data source": "Datenquelle",
1475
+ "does not contain": "enthält nicht",
1476
+ "edit title": "Titel bearbeiten",
1477
+ "ends with": "endet mit",
1478
+ "exists": "existiert",
1479
+ "is": "ist",
1480
+ "is after": "ist nach",
1481
+ "is any of": "ist eines von",
1482
+ "is before": "ist vor",
1483
+ "is between": "ist zwischen",
1484
+ "is empty": "ist leer",
1485
+ "is none of": "ist keines von",
1486
+ "is not": "ist nicht",
1487
+ "is not empty": "ist nicht leer",
1488
+ "is on or after": "ist am oder nach",
1489
+ "is on or before": "ist am oder vor",
1490
+ "item": "item",
1491
+ "items": "items",
1492
+ "loading": "Lädt",
1493
+ "name is required": "Name ist erforderlich",
1494
+ "not ends with": "endet nicht mit",
1495
+ "not exists": "existiert nicht",
1496
+ "not starts with": "beginnt nicht mit",
1497
+ "pixels": "Pixel",
1498
+ "re-download file": "Datei erneut herunterladen",
1499
+ "starts with": "beginnt mit",
1500
+ "tlds": "tlds",
1501
+ "visible": "sichtbar",
1502
+ "{{#label}} email address doesn’t meet the required format": "{{#label}} email address doesn’t meet the required format",
1503
+ "{{#label}} is not allowed to be empty": "{{#label}} is not allowed to be empty",
1504
+ "{{#label}} is required": "{{#label}} is required",
1505
+ "{{#label}} length must be at least {{#limit}} characters long": "{{#label}} length must be at least {{#limit}} characters long",
1506
+ "{{#label}} length must be less than or equal to {{#limit}} characters long": "{{#label}} length must be less than or equal to {{#limit}} characters long",
1507
+ "{{#label}} length must be {{#limit}} characters long": "{{#label}} length must be {{#limit}} characters long",
1508
+ "{{#label}} must be a credit card": "{{#label}} must be a credit card",
1509
+ "{{#label}} must be a float or double": "{{#label}} must be a float or double",
1510
+ "{{#label}} must be a multiple of {{#multiple}}": "{{#label}} must be a multiple of {{#multiple}}",
1511
+ "{{#label}} must be a negative number": "{{#label}} must be a negative number",
1512
+ "{{#label}} must be a number": "{{#label}} must be a number",
1513
+ "{{#label}} must be a positive number": "{{#label}} must be a positive number",
1514
+ "{{#label}} must be a safe number": "{{#label}} must be a safe number",
1515
+ "{{#label}} must be a string": "{{#label}} must be a string",
1516
+ "{{#label}} must be a valid ISO 8601 date": "{{#label}} must be a valid ISO 8601 date",
1517
+ "{{#label}} must be a valid UUID": "{{#label}} must be a valid UUID",
1518
+ "{{#label}} must be a valid date": "{{#label}} must be a valid date",
1519
+ "{{#label}} must be a valid hostname": "{{#label}} must be a valid hostname",
1520
+ "{{#label}} must be a valid port": "{{#label}} must be a valid port",
1521
+ "{{#label}} must be a valid uri": "{{#label}} must be a valid uri",
1522
+ "{{#label}} must be a valid uri with a scheme matching the {{#scheme}} pattern": "{{#label}} must be a valid uri with a scheme matching the {{#scheme}} pattern",
1523
+ "{{#label}} must be an integer": "{{#label}} must be an integer",
1524
+ "{{#label}} must be greater than or equal to {{#limit}}": "{{#label}} must be greater than or equal to {{#limit}}",
1525
+ "{{#label}} must be greater than {{#limit}}": "{{#label}} must be greater than {{#limit}}",
1526
+ "{{#label}} must be in {{#format}} format": "{{#label}} must be in {{#format}} format",
1527
+ "{{#label}} must be less than or equal to {{#limit}}": "{{#label}} must be less than or equal to {{#limit}}",
1528
+ "{{#label}} must be less than {{#limit}}": "{{#label}} must be less than {{#limit}}",
1529
+ "{{#label}} must not have leading or trailing whitespace": "{{#label}} must not have leading or trailing whitespace",
1530
+ "{{#label}} must not have more than {{#limit}} decimal places": "{{#label}} must not have more than {{#limit}} decimal places",
1531
+ "{{#label}} must only contain alpha-numeric and underscore characters": "{{#label}} must only contain alpha-numeric and underscore characters",
1532
+ "{{#label}} must only contain alpha-numeric characters": "{{#label}} must only contain alpha-numeric characters",
1533
+ "{{#label}} must only contain hexadecimal characters": "{{#label}} must only contain hexadecimal characters",
1534
+ "{{#label}} must only contain lowercase characters": "{{#label}} must only contain lowercase characters",
1535
+ "{{#label}} must only contain uppercase characters": "{{#label}} must only contain uppercase characters",
1536
+ "{{#label}} with value \"{{#value}}\" fails to match the required pattern": "{{#label}} with value \"{{#value}}\" fails to match the required pattern",
1537
+ "{{#label}} with value \"{{#value}}\" fails to match the {{#name}} pattern": "{{#label}} with value \"{{#value}}\" fails to match the {{#name}} pattern",
1538
+ "{{#label}} with value \"{{#value}}\" matches the inverted pattern": "{{#label}} with value \"{{#value}}\" matches the inverted pattern",
1539
+ "{{#label}} with value \"{{#value}}\" matches the inverted {{#name}} pattern": "{{#label}} with value \"{{#value}}\" matches the inverted {{#name}} pattern",
1540
+ "{{count}} filter items": "{{count}} Filterelemente",
1541
+ "{{count}} more items": "{{count}} weitere Einträge",
1542
+ "≠": "≠",
1543
+ "≤": "≤",
1544
+ "≥": "≥"
1545
+ }