@valtimo/shared 13.0.0

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 (129) hide show
  1. package/README.md +31 -0
  2. package/assets/core/de.json +1850 -0
  3. package/assets/core/en.json +1826 -0
  4. package/assets/core/nl.json +1848 -0
  5. package/fesm2022/valtimo-shared.mjs +1653 -0
  6. package/fesm2022/valtimo-shared.mjs.map +1 -0
  7. package/index.d.ts +6 -0
  8. package/lib/components/global-notification.component.d.ts +13 -0
  9. package/lib/components/global-notification.component.d.ts.map +1 -0
  10. package/lib/config.module.d.ts +11 -0
  11. package/lib/config.module.d.ts.map +1 -0
  12. package/lib/constants/case-configuration-extensions-token.d.ts +4 -0
  13. package/lib/constants/case-configuration-extensions-token.d.ts.map +1 -0
  14. package/lib/constants/case-management-tab-token.d.ts +5 -0
  15. package/lib/constants/case-management-tab-token.d.ts.map +1 -0
  16. package/lib/constants/error.constants.d.ts +5 -0
  17. package/lib/constants/error.constants.d.ts.map +1 -0
  18. package/lib/constants/form-view-model-token.d.ts +5 -0
  19. package/lib/constants/form-view-model-token.d.ts.map +1 -0
  20. package/lib/constants/index.d.ts +6 -0
  21. package/lib/constants/index.d.ts.map +1 -0
  22. package/lib/constants/versions.d.ts +4 -0
  23. package/lib/constants/versions.d.ts.map +1 -0
  24. package/lib/extension/extension.component.d.ts +19 -0
  25. package/lib/extension/extension.component.d.ts.map +1 -0
  26. package/lib/models/case-management.model.d.ts +12 -0
  27. package/lib/models/case-management.model.d.ts.map +1 -0
  28. package/lib/models/config.d.ts +144 -0
  29. package/lib/models/config.d.ts.map +1 -0
  30. package/lib/models/email-notification-settings.model.d.ts +12 -0
  31. package/lib/models/email-notification-settings.model.d.ts.map +1 -0
  32. package/lib/models/extension.model.d.ts +33 -0
  33. package/lib/models/extension.model.d.ts.map +1 -0
  34. package/lib/models/form-view-model.model.d.ts +6 -0
  35. package/lib/models/form-view-model.model.d.ts.map +1 -0
  36. package/lib/models/global-configuration.model.d.ts +5 -0
  37. package/lib/models/global-configuration.model.d.ts.map +1 -0
  38. package/lib/models/http-loader.d.ts +4 -0
  39. package/lib/models/http-loader.d.ts.map +1 -0
  40. package/lib/models/index.d.ts +22 -0
  41. package/lib/models/index.d.ts.map +1 -0
  42. package/lib/models/localization.model.d.ts +10 -0
  43. package/lib/models/localization.model.d.ts.map +1 -0
  44. package/lib/models/management.model.d.ts +3 -0
  45. package/lib/models/management.model.d.ts.map +1 -0
  46. package/lib/models/menu-item.model.d.ts +19 -0
  47. package/lib/models/menu-item.model.d.ts.map +1 -0
  48. package/lib/models/menu.config.d.ts +5 -0
  49. package/lib/models/menu.config.d.ts.map +1 -0
  50. package/lib/models/page.d.ts +26 -0
  51. package/lib/models/page.d.ts.map +1 -0
  52. package/lib/models/roles.d.ts +4 -0
  53. package/lib/models/roles.d.ts.map +1 -0
  54. package/lib/models/search.model.d.ts +52 -0
  55. package/lib/models/search.model.d.ts.map +1 -0
  56. package/lib/models/security.config.d.ts +47 -0
  57. package/lib/models/security.config.d.ts.map +1 -0
  58. package/lib/models/tag-color.model.d.ts +16 -0
  59. package/lib/models/tag-color.model.d.ts.map +1 -0
  60. package/lib/models/translation.model.d.ts +7 -0
  61. package/lib/models/translation.model.d.ts.map +1 -0
  62. package/lib/models/user-management.model.d.ts +22 -0
  63. package/lib/models/user-management.model.d.ts.map +1 -0
  64. package/lib/models/user-settings.model.d.ts +9 -0
  65. package/lib/models/user-settings.model.d.ts.map +1 -0
  66. package/lib/models/versions.model.d.ts +5 -0
  67. package/lib/models/versions.model.d.ts.map +1 -0
  68. package/lib/models/window.model.d.ts +12 -0
  69. package/lib/models/window.model.d.ts.map +1 -0
  70. package/lib/services/base-api.service.d.ts +10 -0
  71. package/lib/services/base-api.service.d.ts.map +1 -0
  72. package/lib/services/config.service.d.ts +27 -0
  73. package/lib/services/config.service.d.ts.map +1 -0
  74. package/lib/services/draft-version.service.d.ts +14 -0
  75. package/lib/services/draft-version.service.d.ts.map +1 -0
  76. package/lib/services/edit-permissions.service.d.ts +19 -0
  77. package/lib/services/edit-permissions.service.d.ts.map +1 -0
  78. package/lib/services/environment.service.d.ts +14 -0
  79. package/lib/services/environment.service.d.ts.map +1 -0
  80. package/lib/services/global-notification.service.d.ts +22 -0
  81. package/lib/services/global-notification.service.d.ts.map +1 -0
  82. package/lib/services/index.d.ts +10 -0
  83. package/lib/services/index.d.ts.map +1 -0
  84. package/lib/services/localization.service.d.ts +19 -0
  85. package/lib/services/localization.service.d.ts.map +1 -0
  86. package/lib/services/menu-include.service.d.ts +13 -0
  87. package/lib/services/menu-include.service.d.ts.map +1 -0
  88. package/lib/services/user-settings.service.d.ts +16 -0
  89. package/lib/services/user-settings.service.d.ts.map +1 -0
  90. package/lib/testing/index.d.ts +2 -0
  91. package/lib/testing/index.d.ts.map +1 -0
  92. package/lib/testing/services/index.d.ts +4 -0
  93. package/lib/testing/services/index.d.ts.map +1 -0
  94. package/lib/testing/services/mock-icon.service.d.ts +7 -0
  95. package/lib/testing/services/mock-icon.service.d.ts.map +1 -0
  96. package/lib/testing/services/mock-keycloak.service.d.ts +14 -0
  97. package/lib/testing/services/mock-keycloak.service.d.ts.map +1 -0
  98. package/lib/testing/services/mock-translate.service.d.ts +9 -0
  99. package/lib/testing/services/mock-translate.service.d.ts.map +1 -0
  100. package/lib/translation/custom-multi-translate-http-loader-factory.d.ts +6 -0
  101. package/lib/translation/custom-multi-translate-http-loader-factory.d.ts.map +1 -0
  102. package/lib/translation/custom-multi-translate-http-loader.d.ts +14 -0
  103. package/lib/translation/custom-multi-translate-http-loader.d.ts.map +1 -0
  104. package/lib/translation/index.d.ts +4 -0
  105. package/lib/translation/index.d.ts.map +1 -0
  106. package/lib/translation/multi-translate-http-loader-factory.d.ts +5 -0
  107. package/lib/translation/multi-translate-http-loader-factory.d.ts.map +1 -0
  108. package/lib/utils/global-notification.utils.d.ts +7 -0
  109. package/lib/utils/global-notification.utils.d.ts.map +1 -0
  110. package/lib/utils/index.d.ts +5 -0
  111. package/lib/utils/index.d.ts.map +1 -0
  112. package/lib/utils/route-params.utils.d.ts +8 -0
  113. package/lib/utils/route-params.utils.d.ts.map +1 -0
  114. package/lib/utils/router.utils.d.ts +6 -0
  115. package/lib/utils/router.utils.d.ts.map +1 -0
  116. package/lib/utils/url.utils.d.ts +7 -0
  117. package/lib/utils/url.utils.d.ts.map +1 -0
  118. package/lib/zgw/constants/index.d.ts +3 -0
  119. package/lib/zgw/constants/index.d.ts.map +1 -0
  120. package/lib/zgw/constants/zgw-documenten-api-documents-component-token.d.ts +4 -0
  121. package/lib/zgw/constants/zgw-documenten-api-documents-component-token.d.ts.map +1 -0
  122. package/lib/zgw/constants/zgw-object-type-component-token.d.ts +4 -0
  123. package/lib/zgw/constants/zgw-object-type-component-token.d.ts.map +1 -0
  124. package/lib/zgw/index.d.ts +2 -0
  125. package/lib/zgw/index.d.ts.map +1 -0
  126. package/package.json +26 -0
  127. package/public-api.d.ts +11 -0
  128. package/public-api.d.ts.map +1 -0
  129. package/valtimo-shared.d.ts.map +1 -0
@@ -0,0 +1,1826 @@
1
+ {
2
+ "events": {
3
+ "TaskCompletedEvent": "Task completed > {{taskName}}",
4
+ "TaskAssignedEvent": "Task assigned > {{taskName}}",
5
+ "JsonSchemaDocumentCreatedEvent": "Case created",
6
+ "JsonSchemaDocumentModifiedEvent": "Case modified",
7
+ "ProcessStartedEvent": "Process started: {{processDefinitionKey}}",
8
+ "ProcessEndedEvent": "Process finished: {{processDefinitionKey}}",
9
+ "CaseDocumentGeneratedEvent": "Case document generated",
10
+ "DocumentRelatedFileAddedEvent": "Related file added",
11
+ "DocumentRelatedFileRemovedEvent": "Related file removed",
12
+ "BesluitAddedEvent": "Decision added > {{identificatie}}",
13
+ "DocumentAssigneeChangedEvent": "The assignee has been changed to {{assigneeName}}",
14
+ "DocumentUnassignedEvent": "The assignee has been unassigned",
15
+ "TaskDueDateSetEvent": "Task due date set > {{taskName}}"
16
+ },
17
+ "case": {
18
+ "summaryFormNotFound": "Summary form not found for '{{caseDefinitionKey}}'. A form named '{{caseDefinitionKey}}.summary' must exist using the case definition key.",
19
+ "bulkAssign": {
20
+ "assign": "Assign to",
21
+ "modal": {
22
+ "confirm": "Assign",
23
+ "selectLabel": "Assign to user",
24
+ "selectPlaceholder": "Choose an option",
25
+ "title": "Assign selected cases to"
26
+ }
27
+ },
28
+ "changePageModal": {
29
+ "title": "Change page",
30
+ "content": "Are you sure you want to change pages? All selection will be lost.",
31
+ "confirm": "Change page"
32
+ },
33
+ "changeTabModal": {
34
+ "title": "Change tab",
35
+ "content": "Are you sure you want to change tabs? All selection will be lost.",
36
+ "confirm": "Change tab"
37
+ },
38
+ "noResults": {
39
+ "ALL": {"description": "There is nothing to do here.", "title": "There are no cases"},
40
+ "MINE": {"description": "Time for a short break.", "title": "No cases assigned to you"},
41
+ "OPEN": {"description": "Come back later.", "title": "All cases have been assigned"},
42
+ "search": {
43
+ "description": "There are no cases that match your search criteria.",
44
+ "title": "No cases found"
45
+ }
46
+ },
47
+ "noAccess": {"description": "You do not have access to this case", "title": "Access denied"},
48
+ "pagination": {
49
+ "itemsPerPage": "Cases per page",
50
+ "totalItem": "{{start}}-{{end}} of {{total}} case",
51
+ "totalItems": "{{start}}-{{end}} of {{total}} cases"
52
+ },
53
+ "select": {"single": "1 case selected", "multiple": "{{count}} cases selected"},
54
+ "title": {"single": "Case", "plural": "Cases"},
55
+ "tabs": {
56
+ "noResults": "No tabs configured",
57
+ "noResultsDescription": "No tabs are configured for this case type.",
58
+ "summary": "Summary",
59
+ "progress": "Progress",
60
+ "audit": "Audit",
61
+ "maps": "Maps",
62
+ "documents": "Documents",
63
+ "contact-moments": "Contact moments",
64
+ "custom-dossier": "Custom dossier",
65
+ "custom-maps": "Custom maps",
66
+ "zaakobjecten": "Zaak objects",
67
+ "notes": "Notes",
68
+ "MINE": "My cases",
69
+ "OPEN": "Unassigned cases",
70
+ "ALL": "All cases",
71
+ "componentNotFound": "Tab component not found",
72
+ "componentNotFoundMessage": "No component has been found for this tab. Please contact your system administrator."
73
+ },
74
+ "forms": {
75
+ "globalSearchPlaceHolder": "Everything",
76
+ "referenceNumberPlaceHolder": "Reference number"
77
+ },
78
+ "sendEmailExtension": {
79
+ "buttonText": "Send e-mail",
80
+ "title": "Send an e-mail",
81
+ "subject": "Subject",
82
+ "body": "Body",
83
+ "sendButtonText": "Send",
84
+ "sendSuccess": "Your message has been sent successfully."
85
+ },
86
+ "contactMoments": {
87
+ "makeNoteButton": "Make note",
88
+ "popupTitle": "Make a note",
89
+ "noteText": "Note",
90
+ "saveButtonText": "Save note",
91
+ "saveSuccess": "Your note has been saved successfully."
92
+ },
93
+ "zaakobjecten": {
94
+ "objecttype": "Select the type of object you would like to see",
95
+ "objecttypePlaceholder": "Select an object type",
96
+ "objecten": "Objects",
97
+ "objectenPlaceholder": "Select an object type to load a list of objects of this type.",
98
+ "index": "Index",
99
+ "registrationAt": "Registration at",
100
+ "title": "Title",
101
+ "noFormDefinitionComponent": "No form definition for this object could be found.",
102
+ "noObjectType": "No objects found for this object type.",
103
+ "objectType": {"viewObject": "View object"}
104
+ },
105
+ "notes": {
106
+ "addNote": "Add note",
107
+ "modifyNote": "Edit note",
108
+ "tableItemsText": "Notes",
109
+ "input": {"content": "Note"},
110
+ "deleteConfirmation": {
111
+ "title": "Delete note",
112
+ "description": "Are you sure you want to delete this note?",
113
+ "deletedMessage": "The note was deleted successfully."
114
+ },
115
+ "editedMessage": "The note was edited successfully.",
116
+ "noResults": {"title": "No notes", "description": "There are no notes in this case."}
117
+ },
118
+ "documenten": {
119
+ "deleteConfirmationModal": {
120
+ "title": "Delete document",
121
+ "content": "Are you sure you want to delete this document? This action cannot be undone."
122
+ },
123
+ "noProcessLinked": {
124
+ "regularUser": "The document upload is not available for this case. Please contact an administrator",
125
+ "adminRole": "The process for uploading documents has not been configured. Please configure this process on the case management page"
126
+ },
127
+ "navigateToCaseAdmin": "Configure Zaak",
128
+ "noZaakFoundTitle": "No Zaak found",
129
+ "noZaakFound": "No files could be retrieved because no Zaak was for found for this case.",
130
+ "noFilesTitle": "No files",
131
+ "noFiles": "No files found for this case.",
132
+ "uploadSuccessful": "Successfully uploaded document",
133
+ "uploadFailed": "Failed to upload document to case",
134
+ "removeSuccessful": "Successfully removed document from case",
135
+ "removeFailed": "Failed to remove document from case"
136
+ },
137
+ "caseUpdated": "Case updated",
138
+ "startSubProcess": "Start",
139
+ "noLinkedStartProcessNotification": "There is no start form linked",
140
+ "noLinkedProcessNotification": "There is no form linked",
141
+ "configure": "Configure",
142
+ "claimAssigneeCase": "Claim",
143
+ "deleteConfirmation": {
144
+ "title": "Delete file",
145
+ "description": "Are you sure you want to delete this file?",
146
+ "cancel": "Cancel",
147
+ "delete": "Delete"
148
+ },
149
+ "delete": {
150
+ "delete": "Delete case",
151
+ "description": "Are you sure you want to delete this case and all related information? This action cannot be undone.",
152
+ "confirm": "Delete"
153
+ },
154
+ "formio": {
155
+ "noFormSpecified": "No form definition has been specified for this tab.",
156
+ "formNotFound": "The form definition '{{formDefinitionName}}' could not be found."
157
+ },
158
+ "rowLocked": "You don't have access to this case",
159
+ "widgets": {
160
+ "noData": "No data found",
161
+ "emptyFields": "Nothing here",
162
+ "noWidgets": "No widgets",
163
+ "noWidgetsDescription": "There are no widgets configured for this tab, or you don't have the rights to view them.",
164
+ "noWidget": "Widget not found",
165
+ "noCustomComponentDescription": "The custom component configured for this widget is not available."
166
+ }
167
+ },
168
+ "document": {
169
+ "title": {"single": "Document", "plural": "Documents"},
170
+ "id": "Reference ID",
171
+ "createdBy": "Created by",
172
+ "createdOn": "Created on",
173
+ "sequence": "Sequence",
174
+ "fillInMetadata": "Add file metadata",
175
+ "editMetadata": "Edit file metadata",
176
+ "cancel": "Cancel",
177
+ "upload": "Upload",
178
+ "save": "Save",
179
+ "size": "Size",
180
+ "tags": "Tags (optional)",
181
+ "tagsTooltip": "Tags are used for easy filtering and searching of documents. You can add multiple tags to a document",
182
+ "tagsPlaceholder": "Choose tags",
183
+ "format": "File format",
184
+ "trefwoorden": "Keywords",
185
+ "filename": "Filename (optional)",
186
+ "filenameTooltip": "The name of the physical file in which the content of the document is captured, including extension",
187
+ "filenamePlaceholder": "Add filename",
188
+ "confidentialityLevel": "Confidentiality level (optional)",
189
+ "confidentialityLevelTooltip": "Indication of the extent to which the document is intended for public access",
190
+ "confidentialityPlaceholder": "Choose confidentiality",
191
+ "inputTitle": "Title",
192
+ "inputTitleTooltip": "The name by which the document is formally known",
193
+ "inputTitlePlaceholder": "Add title",
194
+ "inputDescription": "Description (optional)",
195
+ "inputDescriptionTooltip": "A generic description of the content of the document",
196
+ "inputDescriptionPlaceholder": "Add description",
197
+ "openbaar": "Public",
198
+ "beperkt_openbaar": "Restricted public",
199
+ "intern": "Internal",
200
+ "zaakvertrouwelijk": "Case confidential",
201
+ "vertrouwelijk": "Private",
202
+ "confidentieel": "Confidential",
203
+ "geheim": "Secret",
204
+ "zeer_geheim": "Very secret",
205
+ "author": "Author",
206
+ "authorTooltip": "The original author of the document",
207
+ "authorPlaceholder": "Add author",
208
+ "status": "Status (optional)",
209
+ "statusTooltip": "The current status of the document. 'In editing': the document is being worked on; 'To be confirmed': the document is finished but has yet to be confirmed; 'Definitive': the document has been received or confirmed by an authorized person; 'Archived': the document has been stored lastingly.",
210
+ "statusPlaceholder": "Choose status",
211
+ "in_bewerking": "In editing",
212
+ "ter_vaststelling": "To be confirmed",
213
+ "definitief": "Definitive",
214
+ "gearchiveerd": "Archived",
215
+ "creationDate": "Creation date",
216
+ "creationDateTooltip": "The date the document was created",
217
+ "receiptDate": "Receipt date",
218
+ "receiptDateTooltip": "The date the document was received",
219
+ "sendDate": "Send date",
220
+ "sendDateTooltip": "The date the document was sent",
221
+ "language": "Language",
222
+ "languageTooltip": "The language in which the document is written",
223
+ "languagePlaceholder": "Choose language",
224
+ "nld": "Dutch",
225
+ "eng": "English",
226
+ "deu": "German",
227
+ "informatieobjecttype": "Document type",
228
+ "informatieobjecttypeTooltip": "A document type which is related to the zaak type of the current case",
229
+ "informatieobjecttypePlaceholder": "Choose information object type",
230
+ "additionalDate": "Additional date",
231
+ "additionalDateTooltip": "An additional date that can be added to the document as metadata. This additional date is optional. If 'Receipt date' is selected, the document status can only be set to 'definitive' or 'archived'.",
232
+ "noAdditionalDate": "No additional date",
233
+ "delete": "Delete",
234
+ "download": "Download",
235
+ "edit": "Edit",
236
+ "application/octet-stream": "Unknown",
237
+ "application/json": "JSON",
238
+ "application/msword": "DOC",
239
+ "application/pdf": "PDF",
240
+ "application/vnd.ms-powerpoint": "PPT",
241
+ "application/vnd.ms-excel": "XLS",
242
+ "application/vnd.openxmlformats-officedocument.wordprocessingml.document": "DOCX",
243
+ "application/vnd.openxmlformats-officedocument.presentationml.presentation": "PPTX",
244
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": "XLSX",
245
+ "audio/mpeg": "MP3",
246
+ "image/bmp": "BMP",
247
+ "image/gif": "GIF",
248
+ "image/jpeg": "JPEG",
249
+ "image/png": "PNG",
250
+ "image/svg+xml": "SVG",
251
+ "text/csv": "CSV",
252
+ "text/plain": "TXT",
253
+ "video/mp4": "MP4"
254
+ },
255
+ "summary": {
256
+ "userTasksDoneState": "All tasks have been completed",
257
+ "taskLocked": "You don't have access to this task",
258
+ "tasks": "Tasks",
259
+ "myTasks": "My tasks",
260
+ "otherTasks": "Other tasks",
261
+ "taskOpen": "Open",
262
+ "taskCreated": "Created",
263
+ "noResultsMyTasks": "No tasks available for to this user.",
264
+ "noResultsOtherTasks": "No tasks available to other users.",
265
+ "taskIsAssigned": "Task is assigned"
266
+ },
267
+ "progress": {
268
+ "noProcessDocumentInstances": "There is no process started yet",
269
+ "process": "Process",
270
+ "version": "Version",
271
+ "startedBy": "Started by",
272
+ "startedOn": "Started on",
273
+ "system": "System",
274
+ "of": "of"
275
+ },
276
+ "dashboard": {
277
+ "openTasks": {"title": "All tasks"},
278
+ "openTask": {"title": "Open task"},
279
+ "activeProcess": {"title": "Active process"},
280
+ "activeProcesses": {"title": "Active processes"},
281
+ "tasksCompleted": {"title": "Tasks completed"},
282
+ "taskCompleted": {"title": "Task completed"},
283
+ "statistics": {"title": "Statistics"},
284
+ "processes": {"title": "Processes"},
285
+ "process": {"title": "Process", "details": "Process details"},
286
+ "startProcess": {"title": "Start"},
287
+ "version": {"title": "Version"},
288
+ "processingLeadTime": {
289
+ "title": "Processing lead time",
290
+ "description": "average over the last 30 days"
291
+ },
292
+ "tasks": {"title": "Tasks"},
293
+ "task": {"title": "Task"},
294
+ "noDashboards": "No dashboards",
295
+ "noDashboardsDescription": "It's possible that the system administrator hasn't configured any dashboards yet, or you don't have the rights to view dashboards.",
296
+ "noWidgets": "No widgets",
297
+ "noWidgetsDescription": "There are no widgets configured for this dashboard, or you don't have the rights to view them.",
298
+ "of": "of"
299
+ },
300
+ "dashboardManagement": {
301
+ "addDashboard": "Add new dashboard",
302
+ "addModal": {
303
+ "descriptionPlaceholder": "Enter description here",
304
+ "descriptionHelperText": "*Description is only visible in the dashboard configuration page",
305
+ "name": "Dashboard name",
306
+ "namePlaceholder": "Enter name here"
307
+ },
308
+ "assignedTo": "Assigned to",
309
+ "cancel": "Cancel",
310
+ "confirm": "Confirm",
311
+ "create": "Create",
312
+ "delete": "Delete",
313
+ "deleteModalContent": "Are you sure you want to delete this dashboard? This action cannot be undone.",
314
+ "description": "Description",
315
+ "key": "Key",
316
+ "name": "Name",
317
+ "noResults": {
318
+ "description": "Click <strong>Add new dashboard</strong> to start designing your dashboard",
319
+ "title": "No dashboards added"
320
+ },
321
+ "title": "All dashboards",
322
+ "widgets": {
323
+ "complete": "Complete",
324
+ "editDashboard": "Edit dashboard",
325
+ "editButton": "Edit",
326
+ "title": "Widgets",
327
+ "description": "Fill the dashboard by adding new widgets. Arrange these widgets by dragging them to their desired position in the list. ",
328
+ "add": "Add new widget",
329
+ "edit": "Edit widget",
330
+ "save": "Save",
331
+ "cancel": "Cancel",
332
+ "delete": "Delete",
333
+ "deleteDescription": "Are you sure you want to delete this widget? This action cannot be undone.",
334
+ "metadata": "<b>Created by</b> {{createdBy}} | <b>Created on</b> {{createdOn}} | <b>Dashboard key</b> {{key}}",
335
+ "form": {
336
+ "title": "Widget title (required)",
337
+ "titleHelperText": "The name of the widget configuration",
338
+ "key": "Widget key (required)",
339
+ "keyHelperText": "Assign a unique key to this widget",
340
+ "keyTitle": "Copy key",
341
+ "keyCopied": "Key copied to clipboard",
342
+ "keyCopiedTitle": "Success",
343
+ "dataSource": "Data source (required)",
344
+ "dataSourceHelperText": "Select the source of the data you want to display within the widget",
345
+ "chartType": "Chart type (required)",
346
+ "dataSourceField": "Data source field (required)",
347
+ "dashboardTitle": "Dashboard name (required)",
348
+ "dashboardDescription": "Description (required)",
349
+ "dashboardDescriptionHelperText": "*Description is only visible in the dashboard configuration page",
350
+ "roles": "Set visibility",
351
+ "displayType": "Display type",
352
+ "displayTypeHelperText": "Select the way the data of your widget should be displayed",
353
+ "url": "URL path",
354
+ "urlHelperText": "The path to navigate to when clicking on the widget"
355
+ },
356
+ "noResults": {
357
+ "description": "Click <strong>Add new widget</strong> to start designing your dashboard. <br/> Drag your widgets to the desired position.",
358
+ "title": "No widgets added"
359
+ }
360
+ }
361
+ },
362
+ "account": {
363
+ "title": "Account",
364
+ "informationTitle": "Information",
365
+ "quickLinks": "Quick links",
366
+ "links": {
367
+ "profile": "Profile",
368
+ "password": "Password",
369
+ "help": "Help",
370
+ "feedback": "Feedback",
371
+ "resetPassword": "Reset password",
372
+ "signOut": "Sign out",
373
+ "plantATree": "Plant a tree"
374
+ },
375
+ "plantATreeMailBody": "subject=Plant a tree for Valtimo&body=Hello Valtimo user,%0D%0DBy sending this e-mail we will immediately start planting a tree. This%0D therefore partly compensates for the CO2 emissions of your Valtimo use.%0D%0DWith Green Greeting,%0D%0DThe Valtimo team%0D%0D*This tree planting action can be used 1 time by each registered Valtimo user.%0D %0D** Ritense also annually plants trees for all Valtimo installations in use."
376
+ },
377
+ "settings": {
378
+ "title": "Settings",
379
+ "language": {
380
+ "title": "Language",
381
+ "options": {"nl": "Nederlands", "en": "English", "de": "Deutsch"}
382
+ },
383
+ "notification": {
384
+ "title": "Notifications",
385
+ "frequency": {"title": "Notification frequency"},
386
+ "taskNotifications": "Task notifications",
387
+ "taskNotificationsIntro": "Receive an email when a task is assigned to you",
388
+ "emailNotifications": "Daily task overview",
389
+ "emailNotificationsIntro": "Personal overview of your open tasks",
390
+ "emailNotificationOnMonday": "Monday",
391
+ "emailNotificationOnTuesday": "Tuesday",
392
+ "emailNotificationOnWednesday": "Wednesday",
393
+ "emailNotificationOnThursday": "Thursday",
394
+ "emailNotificationOnFriday": "Friday",
395
+ "emailNotificationOnSaturday": "Saturday",
396
+ "emailNotificationOnSunday": "Sunday"
397
+ },
398
+ "version": {"title": "Version information"},
399
+ "interface": {
400
+ "title": "Interface",
401
+ "themePreference": "Theme",
402
+ "themes": {"light": "Light", "dark": "Dark (Beta)", "system": "System (Beta)"},
403
+ "collapsibleMenu": "Navigation bar always collapsible",
404
+ "compactMode": "Compact mode",
405
+ "showUserName": "Show name of user"
406
+ }
407
+ },
408
+ "decisions": {
409
+ "upload": {
410
+ "title": "Upload decision table",
411
+ "description": "Select a .dmn file to upload",
412
+ "fileUploaderTitle": "Upload DMN file",
413
+ "fileUploaderDescription": "Only files with the .dmn extension are allowed.",
414
+ "fileUploaderButton": "Choose DMN file"
415
+ },
416
+ "version": "Version",
417
+ "deploy": "Save",
418
+ "loadFailure": "Something went wrong with loading your decision table.",
419
+ "deploySuccess": "Decision table has been deployed successfully.",
420
+ "deployFailure": "Something went wrong with deploying your decision table."
421
+ },
422
+ "message": {"empty": "No result found"},
423
+ "cta": {"close": "Close", "moreDetails": "More details"},
424
+ "formManagement": {
425
+ "noFormDefinitionFoundAdmin": "There is no form connected to the start event/user task. To link a form go to Admin menu > Process links.",
426
+ "noFormDefinitionFoundUser": "There is no form connected to the start event/user task. Ask an admin user for assistance.",
427
+ "gotoProcessLinksButton": "Configure now",
428
+ "loading": "Loading form...",
429
+ "name": "Name",
430
+ "nameIsRequired": "Name is required",
431
+ "nameIsInUse": "Name is already in use",
432
+ "back": "Back",
433
+ "reset": "Reset",
434
+ "submit": "Submit",
435
+ "delete": "Delete",
436
+ "deploy": "Save",
437
+ "duplicate": "Duplicate",
438
+ "readOnly": "Read-only",
439
+ "add": "Add form",
440
+ "tabs": {"formBuilder": "Form builder", "jsonEditor": "JSON editor", "output": "Output"},
441
+ "intermediateSave": {
442
+ "save": "Save progress",
443
+ "clear": "Undo latest changes",
444
+ "clearConfirm": "Are you sure you want to clear your input fields? This action cannot be undone.",
445
+ "success": "Progress saved successfully",
446
+ "error": "Failed to save progress",
447
+ "lastSavedBy": "Last saved by",
448
+ "on": "on"
449
+ },
450
+ "notifications": {
451
+ "created": "Created new Form",
452
+ "deleted": "Deleted form",
453
+ "deletionError": "Error deleting form",
454
+ "deployed": "Form deployed",
455
+ "deploymentError": "Error deploying form",
456
+ "duplicated": "Form duplicated"
457
+ },
458
+ "upload": {
459
+ "modalTitle": "Upload form definition",
460
+ "title": "Upload file",
461
+ "description": "Only form definition files are supported.",
462
+ "buttonText": "Select file",
463
+ "success": "Upload successful",
464
+ "failure": "Upload failed"
465
+ },
466
+ "noResults": {
467
+ "title": "No form definitions found",
468
+ "caseDescription": "Click here to create a form definition associated with this case",
469
+ "independentDescription": "Click here to create a standalone form definition"
470
+ }
471
+ },
472
+ "caseManagement": {
473
+ "version": "Version: ",
474
+ "preparingDownload": "Preparing download",
475
+ "more": "More",
476
+ "export": "Export {{value}}",
477
+ "exportErrorTitle": "Error",
478
+ "exportErrorMessage": "Something went wrong",
479
+ "exportSuccessTitle": "Download will start shortly",
480
+ "readonly": "Read-only",
481
+ "connectedProcesses": "Connected processes",
482
+ "connectProcess": "Connect process",
483
+ "processLink": "Link process",
484
+ "seeAllVersions": "See all versions",
485
+ "selectProcessDef": "Select process definition",
486
+ "setGlobalActiveVersion": "Set as active version",
487
+ "setGlobalActiveVersionErrorTitle": "Error",
488
+ "setGlobalActiveVersionErrorMessage": "Something went wrong",
489
+ "setGlobalActiveVersionSuccessTitle": "Global active version updated",
490
+ "globallyActive": "Globally active",
491
+ "unlinkProcess": "Unlink",
492
+ "listColumns": {"name": "Name", "key": "Key", "version": "Version"},
493
+ "globalActiveVersionModal": {
494
+ "title": "Set as global active version",
495
+ "description": "Set the currently selected version as the global active version. Please be sure to keep in mind that things might break or not work as intended.",
496
+ "warningTitle": "Warning: Older version",
497
+ "warningMessage": "You're trying to make a case version the global active version, but it's older than the version that's currently active.",
498
+ "continue": "Continue",
499
+ "cancel": "Cancel"
500
+ },
501
+ "confirmationGlobalVersionModal": {
502
+ "title": "Are you sure?",
503
+ "description": "Set the currently selected version as the global active version. Please be sure to keep in mind that things might break or not work as intended.",
504
+ "confirm": "Set as active version",
505
+ "cancel": "Cancel"
506
+ },
507
+ "allVersionsModal": {
508
+ "title": "All {{value}} versions",
509
+ "closeButton": "Close",
510
+ "columns": {"version": "Version", "release": "Released on", "description": "Description"},
511
+ "noResults": {
512
+ "title": "There are no case versions",
513
+ "description": "No version has been configured for this case"
514
+ }
515
+ },
516
+ "deployment": {
517
+ "title": "Version management",
518
+ "buttons": {
519
+ "back": "Back",
520
+ "delete": "Delete draft",
521
+ "finalize": "Finalize draft",
522
+ "createDraft": "Create draft version"
523
+ },
524
+ "deleteDraftConfirmationModal": {
525
+ "loadingText": "Deleting draft version...",
526
+ "title": "Delete draft",
527
+ "description": "Are you sure you want to delete the draft?",
528
+ "confirm": "Delete",
529
+ "successTitle": "Draft deleted",
530
+ "errorTitle": "Error",
531
+ "errorMessage": "Something went wrong"
532
+ },
533
+ "finalizeDraftConfirmationModal": {
534
+ "loadingText": "Finalizing draft version...",
535
+ "title": "Finalize draft",
536
+ "description": "You are about to finalize {{caseDefinitionKey}} {{caseDefinitionVersionTag}} After finalization you can't make any more changes. Are you sure?",
537
+ "confirm": "Finalize",
538
+ "successMessage": "Draft finalized",
539
+ "errorTitle": "Error",
540
+ "errorMessage": "Something went wrong"
541
+ },
542
+ "createDraftConfirmationModal": {
543
+ "loadingText": "Creating draft version...",
544
+ "title": "Create draft version",
545
+ "description": "You are about to create a draft version from version {{caseDefinitionKey}} {{caseDefinitionVersionTag}}. Are you sure?",
546
+ "input": "Version",
547
+ "confirm": "Create",
548
+ "cancel": "Close",
549
+ "successMessage": "Draft version created",
550
+ "errorTitle": "Error",
551
+ "errorMessage": "Something went wrong"
552
+ },
553
+ "releaseVersion": {
554
+ "title": "Release version",
555
+ "fields": {"caseDefinitionVersionTag": "Version", "basedOnVersionTag": "Based on"},
556
+ "warning": {
557
+ "title": "Warning",
558
+ "description": "There is another draft based on {{ basedOnVersionTag }} with version {{ conflictingVersions }}"
559
+ }
560
+ },
561
+ "releaseInformation": {
562
+ "title": "Release information",
563
+ "fields": {
564
+ "createdBy": "Created by",
565
+ "createdDate": "Created on",
566
+ "description": "Description"
567
+ }
568
+ }
569
+ },
570
+ "processLinkNotification": {
571
+ "linkSuccess": "Successfully linked process",
572
+ "linkFailure": "Failed to link process",
573
+ "unlinkSuccess": "Successfully unlinked process",
574
+ "unlinkFailure": "Failed to unlink process"
575
+ },
576
+ "noResults": {
577
+ "title": "There are no case-definitions",
578
+ "description": "Add a case-definition to start"
579
+ },
580
+ "linkProcess": {
581
+ "title": "Link upload process to case",
582
+ "description": "Choose which process should handle file uploads."
583
+ },
584
+ "toggleAssignee": {
585
+ "title": "Case handler",
586
+ "checkboxDescription": "This case type can have a handler"
587
+ },
588
+ "toggleAutoAssignTasks": {
589
+ "title": "Task assignment",
590
+ "checkboxDescription": "Automatically assign user tasks to the case handler"
591
+ },
592
+ "externalStartForm": {
593
+ "title": "External start form",
594
+ "enabledToggle": "External start form enabled",
595
+ "enabledToggleOn": "Yes",
596
+ "enabledToggleOff": "No",
597
+ "externalUrl": "URL of external start form",
598
+ "externalUrlPlaceholder": "Input a valid URL",
599
+ "apply": "Save",
600
+ "description": "Description",
601
+ "descriptionPlaceholder": "A short description of the external start form",
602
+ "notification": {
603
+ "success": "External start form configuration updated successfully",
604
+ "error": "External start form configuration failed to update"
605
+ }
606
+ },
607
+ "tabs": {
608
+ "general": "General",
609
+ "cases": "Configuration",
610
+ "processes": "Processes",
611
+ "document": "Document",
612
+ "zgw": "ZGW",
613
+ "forms": "Forms",
614
+ "decision": "Decision tables",
615
+ "formFlows": "Form Flows",
616
+ "tasks": "Tasks",
617
+ "generalTab": {
618
+ "readOnlyNotification": {
619
+ "title": "Read only",
620
+ "message": "This case cannot be updated because it is final."
621
+ },
622
+ "linkUploadProcess": {
623
+ "title": "Link upload process to case",
624
+ "label": "Choose which process should handle file uploads",
625
+ "placeholder": "Documenten API upload document"
626
+ },
627
+ "caseHandler": {
628
+ "title": "Case handler",
629
+ "canHaveHandler": "Case type can have a handler",
630
+ "assignUser": "Automatically assign user tasks to case handler",
631
+ "disabledAutoAssignTooltip": "Automatically assigning a user task to the case handler can only be enabled when the case itself can have a handler.",
632
+ "toggle": {"onText": "Yes", "offText": "No"}
633
+ }
634
+ },
635
+ "caseListTab": {"title": "Case list", "searchFields": "Search Fields", "columns": "Columns"},
636
+ "caseDetailsTab": {
637
+ "title": "Case details",
638
+ "tabs": "Tabs",
639
+ "statuses": "Statuses",
640
+ "tags": "Tags"
641
+ }
642
+ },
643
+ "tabManagement": {
644
+ "columns": {
645
+ "content": "Content",
646
+ "key": "Tab key",
647
+ "name": "Tab name",
648
+ "type": "Type",
649
+ "showTasks": "Task list visible"
650
+ },
651
+ "addModal": {
652
+ "addTab": "Add tab",
653
+ "customComponent": "Custom component",
654
+ "customComponentDisabled": "There are no custom components available, or they have all been added already.",
655
+ "description": "Select one of the options to add a new tab to your case definition",
656
+ "formIOComponent": "FormIO component",
657
+ "formIOComponentDisabled": "No Form.io form definitions available",
658
+ "standardTab": "Standard tab",
659
+ "standardTabDisabled": "All standard tabs have already been added to your configuration",
660
+ "tabContentLabel": "Choose content",
661
+ "tabKeyLabel": "Key",
662
+ "tabNameLabel": "Tab name (optional)",
663
+ "title": "Add new tab in {{documentDefinitionName}}",
664
+ "uniqueKeyError": "The key for this tab must be unique.",
665
+ "invalidKeyError": "The key for this tab can only contains letters, numbers and dashes.",
666
+ "widgetsComponent": "Widgets component",
667
+ "visibleTitle": "Task list visible on tab",
668
+ "visible": "Visible",
669
+ "invisible": "Not visible"
670
+ },
671
+ "titles": {
672
+ "custom": "Add new tab with custom component",
673
+ "formio": "Add new tab with FormIO component",
674
+ "standard": "Add new tab with standard content",
675
+ "widgets": "Add a new tab with widgets"
676
+ },
677
+ "contentLabels": {
678
+ "custom": "Choose custom component",
679
+ "formio": "Choose FormIO component",
680
+ "standard": "Choose standard content"
681
+ },
682
+ "editModal": {"title": "Edit tab {{name}}", "updateTab": "Update tab"},
683
+ "deleteModal": {
684
+ "title": "Delete tab?",
685
+ "description": "Are you sure you want to delete this tab? This action cannot be undone."
686
+ }
687
+ },
688
+ "tabType": {"custom": "Custom", "formio": "FormIO", "standard": "Standard"},
689
+ "importDefinition": {
690
+ "title": "Import case definition",
691
+ "overwriteWarning": "If your case definition contains configurations, models and/or definitions with the same name or identifier as already on your system, they will be overwritten.",
692
+ "startUpload": "Start upload",
693
+ "checkbox": {
694
+ "message": "I understand that configurations may be overwritten",
695
+ "error": "This field is mandatory"
696
+ },
697
+ "info": {
698
+ "title": "Attention",
699
+ "message": "Before importing, please make sure the plugin configurations that are referenced in process links are present."
700
+ },
701
+ "upload": {
702
+ "title": "Upload file",
703
+ "description": "Max file size is 500kb. Supported file types are ZIP and JSON.",
704
+ "buttonText": "Select file"
705
+ },
706
+ "progressBar": {
707
+ "active": "This may take a while",
708
+ "error": "Unable to import case definition. Nothing was imported due to an error at our end. Please try again later.If the issue keeps happening, contact support.",
709
+ "finished": "Case definition successfully imported",
710
+ "label": "Importing case definition"
711
+ },
712
+ "invalidJsonError": {
713
+ "text": "Please make sure it contains a valid JSON value.",
714
+ "title": "The file contains an error."
715
+ },
716
+ "steps": {
717
+ "accessControl": {
718
+ "message": "Don't forget to set the rights in Access Control. Without the proper rights your new case definition won't be accessible.",
719
+ "title": "Access control"
720
+ },
721
+ "dashboard": {
722
+ "message": "If you want widgets to appear on your dashboard, you'll have to manually configure these. Do this via 'dashboard configuration'",
723
+ "title": "Dashboard"
724
+ },
725
+ "plugins": {
726
+ "message": "This process may use plugins. Make sure you configure them correctly.",
727
+ "title": "Plugin Configuration"
728
+ }
729
+ }
730
+ },
731
+ "createDefinition": {
732
+ "idError": "This definition name is already in use. Please change to a unique name",
733
+ "versionError": "This version is not a valid Semver version",
734
+ "versionExistsError": "This version already exists for this definition",
735
+ "modalTitle": "Create case definition",
736
+ "key": "Case definition key",
737
+ "keyPlaceholder": "Case definition key will be auto-generated here",
738
+ "keyTooltip": "The key is used for the system names, $id etc. No spaces or special characters are allowed other than “-”.",
739
+ "name": "Case definition name",
740
+ "namePlaceholder": "Enter name here",
741
+ "nameTooltip": "The name is used for the visible name of the case definition in the UI",
742
+ "version": "Case definition version",
743
+ "versionPlaceholder": "Enter version here",
744
+ "versionTooltip": "The version is used for the visible version of the case definition in the UI",
745
+ "description": "Case definition description",
746
+ "descriptionPlaceholder": "Enter description here",
747
+ "descriptionTooltip": "The description is used for the visible description of the case definition in the UI"
748
+ },
749
+ "documentDefinition": {
750
+ "cancelModal": {
751
+ "title": "Leaving the editor",
752
+ "content": "Are you sure you want to leave the editor? There can be unsaved changes that will be lost. When saving, beware that removing or changing an attribute can break the case definition."
753
+ },
754
+ "saveModalContent": "Are you sure you want to save the Document definition? Removing or changing an attribute can break the case definition."
755
+ },
756
+ "statuses": {
757
+ "withoutStatus": "Show cases without a status",
758
+ "searchFieldTitle": "Status",
759
+ "add": "Add status",
760
+ "edit": "Edit status",
761
+ "visibleTitle": "Default visibility in case list",
762
+ "visible": "Visible",
763
+ "invisible": "Not visible",
764
+ "deleteText": "Are you sure you want to delete this status? This action cannot be undone.",
765
+ "keyAutoGenerated": "Key will be auto-generated",
766
+ "colorPlaceholder": "Choose a color",
767
+ "columns": {
768
+ "title": "Status name",
769
+ "key": "Status key",
770
+ "visible": "Visible by default",
771
+ "color": "Color"
772
+ },
773
+ "noResults": {
774
+ "title": "No statuses configured",
775
+ "description": "Click here to configure a status for this case type"
776
+ }
777
+ },
778
+ "caseTags": {
779
+ "searchFieldTitle": "Tags",
780
+ "add": "Add tag",
781
+ "edit": "Edit tag",
782
+ "visible": "Visible",
783
+ "invisible": "Not visible",
784
+ "deleteText": "Are you sure you want to delete this tag? This action cannot be undone.",
785
+ "keyAutoGenerated": "Key will be auto-generated",
786
+ "colorPlaceholder": "Choose a color",
787
+ "columns": {"title": "Name", "key": "Key", "visible": "Visible by default", "color": "Color"},
788
+ "noResults": {
789
+ "title": "No tags configured",
790
+ "description": "Click here to configure a tag for this case type"
791
+ }
792
+ },
793
+ "draftWarning": {
794
+ "title": "Not linked to a version of the case",
795
+ "description": "When updating {{name}}, the {{name}} will change for all versions of this case. Not just the selected version!"
796
+ }
797
+ },
798
+ "widgetTabManagement": {
799
+ "tab": {
800
+ "metadata": "<b>Created by</b> {{createdBy}} | <b>Created on</b> {{createdOn}} | <b>Key</b> {{key}}",
801
+ "editButton": "Edit",
802
+ "editWidgetTab": "Edit widget tab",
803
+ "cancel": "Cancel",
804
+ "save": "Save",
805
+ "form": {"tabName": "Tab name"}
806
+ },
807
+ "columns": {"highContrast": "High contrast", "type": "Type", "width": "Width"},
808
+ "list": {
809
+ "add": "Add widget",
810
+ "noResults": {
811
+ "title": "No widgets have been configured",
812
+ "description": "Click here to configure widgets"
813
+ }
814
+ },
815
+ "wizard": {
816
+ "create": "Create widget",
817
+ "edit": "Edit widget",
818
+ "steps": {
819
+ "content": "Choose widget content",
820
+ "style": "Choose widget style",
821
+ "type": "Choose widget type",
822
+ "width": "Choose widget width"
823
+ }
824
+ },
825
+ "notification": {
826
+ "success": "Widget configuration updated successfully",
827
+ "error": "Widget configuration failed to update"
828
+ },
829
+ "types": {
830
+ "description": "Choose the widget type you want to configure.",
831
+ "fields": {"title": "Fields", "description": "Text data with content and a label"},
832
+ "custom": {"title": "Custom component", "description": "For complex content"},
833
+ "formio": {"title": "Form.io", "description": "Prefilled Form.io form"},
834
+ "table": {"title": "Table", "description": "Create a table"},
835
+ "collection": {"title": "Collection", "description": "Create a collection"}
836
+ },
837
+ "width": {
838
+ "description": "Select the desired width for the widget.",
839
+ "fullWidth": "Full-width",
840
+ "half": "Half",
841
+ "small": {"title": "Small", "subtitle": "Contains 1 column of content"},
842
+ "medium": {"title": "Medium", "subtitle": "Contains up to 2 columns of content"},
843
+ "large": {"title": "Large", "subtitle": "Contains up to 3 columns of content"},
844
+ "xtraLarge": {"title": "Xtra large", "subtitle": "Contains up to 4 columns of content"}
845
+ },
846
+ "style": {
847
+ "description": "Select the desired style for the widget",
848
+ "default": {"title": "Default", "description": "For regular content"},
849
+ "highContrast": {"title": "High contrast", "description": "For higher priority content"}
850
+ },
851
+ "content": {
852
+ "description": "Enter the content for each column. Keep in mind that not all fields are the same height. For the best result make sure items are properly distributed.",
853
+ "widgetTitle": "Widget title",
854
+ "widgetTitlePlaceholder": "Choose a short name",
855
+ "widgetTitleTooltip": "Title that displays at the top of the widget",
856
+ "hideWhenEmpty": "Hide when empty",
857
+ "column": "Column {{number}}",
858
+ "fields": {
859
+ "add": "Add field",
860
+ "addEnum": "Add enum value",
861
+ "currencyCode": "Currency code (optional)",
862
+ "currencyCodePlaceholder": "Currency code",
863
+ "currencyCodeTooltip": "The currency code such as 'EUR', 'USD' etc. The default value is 'EUR'",
864
+ "digitsInfo": "Number format (optional)",
865
+ "digitsInfoPlaceholder": "Number format",
866
+ "digitsInfoTooltip": "Represents how many decimals should be displayed via this format: {minIntegerDigits}.{minFractionDigits}-{maxFractionDigits}. minIntegerDigits: Minimum number of digits before the decimal point; Default is 1. minFractionDigits: Minimum number of digits after the decimal point; Default is {{minFractionDigits}}. maxFractionDigits: Maximum number of digits after the decimal point; Default is {{maxFractionDigits}}.",
867
+ "display": "Display (optional)",
868
+ "displayPlaceholder": "Display",
869
+ "displayTooltip": "The format for the currency indicator. One of the following: 'code' for showing the code (i.e. EUR); 'symbol' for showing the symbol (i.e. €); 'string' for just displaying the code as a string. The default option is 'symbol'",
870
+ "format": "Format (optional)",
871
+ "formatPlaceholder": "Format",
872
+ "dateFormatTooltip": "A date format supported by Moment.js (https://momentjs.com/docs/). Default is 'DD-MM-YYYY'",
873
+ "dateTimeFormatTooltip": "A date format supported by Moment.js (https://momentjs.com/docs/). Default is 'DD-MM-YYYY, h:m:s'",
874
+ "enumValue": "Value",
875
+ "enumValueTooltip": "The value of the property you're looking to change.",
876
+ "enumDisplay": "Display",
877
+ "enumDisplayTooltip": "How the value should be displayed",
878
+ "title": "Title",
879
+ "titlePlaceholder": "Choose a title",
880
+ "titleTooltip": "Title for the property",
881
+ "valueTooltip": "A path which leads to the property you want to show. For the document's JSON schema, follow this example: 'doc:customer.firstName'. For document properties, follow these examples: 'case:createdBy', or 'case:sequence', or 'case:assigneeFullName'. Note: When there are special characters in a property, the property must be enclosed in quotes. For example: case:\"loan-accepted\".",
882
+ "type": "Display type",
883
+ "typePlaceholder": "Choose type",
884
+ "value": "Value",
885
+ "valuePlaceholder": "Path to value",
886
+ "ellipsisCharacterLimit": "Ellipsis character limit",
887
+ "ellipsisCharacterLimitTooltip": "Enter the number of characters that will display before an ellipsis is shown",
888
+ "ellipsisCharacterLimitPlaceholder": "Choose a number of characters (optional)"
889
+ },
890
+ "displayType": {
891
+ "text": "Text",
892
+ "boolean": "Yes/No",
893
+ "currency": "Currency",
894
+ "date": "Date",
895
+ "datetime": "Date and time",
896
+ "enum": "Enumeration",
897
+ "number": "Number",
898
+ "percent": "Percentage"
899
+ },
900
+ "custom": {"selectComponent": "Angular component", "placeholder": "Select a component"},
901
+ "formio": {"selectForm": "Form definition", "placeholder": "Select a form definition"},
902
+ "table": {
903
+ "addColumn": "Add column",
904
+ "defaultPageSize": "Rows per page",
905
+ "defaultPageSizePlaceholder": "Choose amount of rows per page",
906
+ "defaultPageSizeTooltip": "Number of entries displayed on each page",
907
+ "collection": "Path to table data",
908
+ "collectionPlaceholder": "Specify the path to table data",
909
+ "collectionTooltip": "A path which leads to the collection of values which you want to display. For showing properties in the document's JSON schema, follow this example: 'doc:children'. Note: When there are special characters in a property, the property must be enclosed in quotes. For example: doc:\"loans-accepted\".",
910
+ "columns": "Columns",
911
+ "options": "Options",
912
+ "firstColumnAsTitle": "First column is the title of the row",
913
+ "titleTooltip": "Title for the column",
914
+ "valueTooltip": "Name of the property you wish to access within the previously filled table data path"
915
+ },
916
+ "collection": {
917
+ "defaultPageSize": "Cards per page",
918
+ "defaultPageSizePlaceholder": "Choose amount of cards per page",
919
+ "defaultPageSizeTooltip": "Number of entries displayed on each page",
920
+ "collection": "Path to collection data",
921
+ "collectionPlaceholder": "Specify the path to collection data",
922
+ "collectionTooltip": "A path which leads to the collection of values which you want to display. For showing properties in the document's JSON schema, follow this example: 'doc:children'. Note: When there are special characters in a property, the property must be enclosed in quotes. For example: doc:\"loans-accepted\".",
923
+ "cardTitle": "Card title",
924
+ "cardFields": "Card fields",
925
+ "fieldWidth": "Field width",
926
+ "fieldWidthPlaceholder": "Choose field width",
927
+ "titleTooltip": "Title for the property",
928
+ "valueTooltip": "Name of the property you wish to access within the previously filled collection data path"
929
+ }
930
+ },
931
+ "cancelModal": {
932
+ "title": "Leaving the editor",
933
+ "content": "Are you sure you want to leave the editor? There can be unsaved changes that will be lost."
934
+ },
935
+ "processes": {
936
+ "buttonTextLabel": "New process button text (Optional)",
937
+ "buttonTextPlaceholder": "Button text",
938
+ "selectorLabel": "New process button (Optional)",
939
+ "selectorPlaceholder": "Choose a process"
940
+ },
941
+ "saveModalContent": "Are you sure you want to save the widget configuration?"
942
+ },
943
+ "zgw": {
944
+ "columns": {
945
+ "column": "Column",
946
+ "add": "Add column",
947
+ "edit": "Edit column",
948
+ "deleteText": "Are you sure you want to delete this column?",
949
+ "notSortable": "This column is not sortable",
950
+ "defaultWarning": "When selecting a default sort, the previous sort will be overwritten"
951
+ },
952
+ "documentColumns": {
953
+ "auteur": "Author",
954
+ "beschrijving": "Description",
955
+ "bestandsnaam": "File name",
956
+ "bestandsomvang": "File size",
957
+ "bronorganisatie": "Source organisation",
958
+ "creatiedatum": "Creation date",
959
+ "formaat": "Format",
960
+ "identificatie": "Id",
961
+ "informatieobjecttype": "Information object type",
962
+ "informatieobjecttypeOmschrijving": "Information object type",
963
+ "locked": "Locked",
964
+ "status": "Status",
965
+ "taal": "Language",
966
+ "titel": "Title",
967
+ "trefwoorden": "Tags",
968
+ "versie": "Version",
969
+ "vertrouwelijkheidaanduiding": "Confidentiality level"
970
+ },
971
+ "documents": {
972
+ "noResults": {
973
+ "filterTitle": "No documents found",
974
+ "filterDescription": "There are no documents that match your search criteria"
975
+ },
976
+ "noColumns": {
977
+ "description": "Click here to configure a column for this document",
978
+ "title": "No configured columns"
979
+ }
980
+ },
981
+ "tags": {
982
+ "tag": "Tag",
983
+ "add": "Add tag",
984
+ "deleteText": "Are you sure you want to delete this tag?",
985
+ "deleteMultipleText": "Are you sure you want to delete these tags?",
986
+ "addModal": {"header": "Add tag"},
987
+ "list": {"noResultsTitle": "No tags", "noResultsDescription": "Add a tag to start"},
988
+ "search": {
989
+ "noResultsTitle": "No results",
990
+ "noResultsDescription": "Try adjusting your search or filter options to find what you're looking for."
991
+ },
992
+ "fields": {
993
+ "value": "Tag",
994
+ "valueRequired": "Tag is required.",
995
+ "valueMaxLength": "Tag is too long. Maximum length is {{ maxlength }} characters."
996
+ }
997
+ },
998
+ "uploadFields": {
999
+ "uploadField": "Upload field",
1000
+ "add": "Add upload field",
1001
+ "deleteText": "Are you sure you want to delete this upload field?",
1002
+ "deleteMultipleText": "Are you sure you want to delete these upload fields?",
1003
+ "addModal": {"header": "Add upload field"},
1004
+ "editModal": {"header": "Edit upload field"},
1005
+ "list": {
1006
+ "noResultsTitle": "No upload fields",
1007
+ "noResultsDescription": "Add a upload field to start"
1008
+ },
1009
+ "search": {
1010
+ "noResultsTitle": "No results",
1011
+ "noResultsDescription": "Try adjusting your search or filter options to find what you're looking for."
1012
+ },
1013
+ "fields": {
1014
+ "field": "Field",
1015
+ "defaultValue": "Default value",
1016
+ "visible": "Visible",
1017
+ "readonly": "Readonly"
1018
+ },
1019
+ "keys": {
1020
+ "bestandsnaam": "File Name",
1021
+ "titel": "Title",
1022
+ "auteur": "Author",
1023
+ "beschrijving": "Description",
1024
+ "taal": "Language",
1025
+ "vertrouwelijkheidaanduiding": "Confidentiality Indication",
1026
+ "creatiedatum": "Creation Date",
1027
+ "informatieobjecttype": "Information Object Type",
1028
+ "status": "Status",
1029
+ "verzenddatum": "Send Date",
1030
+ "ontvangstdatum": "Receive Date",
1031
+ "aanvullendeDatum": "Additional Date",
1032
+ "trefwoorden": "Tags"
1033
+ }
1034
+ },
1035
+ "tabs": {
1036
+ "documentColumns": "Document columns",
1037
+ "documentTags": "Document tags",
1038
+ "documentUploadFields": "Document upload fields"
1039
+ }
1040
+ },
1041
+ "task-list": {
1042
+ "fieldLabels": {
1043
+ "created": "Created on",
1044
+ "name": "Name",
1045
+ "valtimoAssignee.fullName": "Assignee",
1046
+ "due": "Due date",
1047
+ "context": "Context",
1048
+ "case": "Case"
1049
+ },
1050
+ "mine": {
1051
+ "title": "My tasks",
1052
+ "description": "Overview of all tasks assigned to you",
1053
+ "noResultsDescription": "Time for a short break.",
1054
+ "noResultsTitle": "No tasks assigned to you"
1055
+ },
1056
+ "open": {
1057
+ "title": "Unassigned tasks",
1058
+ "description": "Overview of all unassigned tasks",
1059
+ "noResultsDescription": "Come back later.",
1060
+ "noResultsTitle": "All tasks have been assigned"
1061
+ },
1062
+ "all": {
1063
+ "title": "All tasks",
1064
+ "description": "Overview of all tasks",
1065
+ "noResultsDescription": "There is nothing to do here.",
1066
+ "noResultsTitle": "No open tasks"
1067
+ },
1068
+ "goToCase": "Go to case",
1069
+ "caseLocked": "You don't have access to this case",
1070
+ "rowLocked": "You don't have access to this task",
1071
+ "allCases": "All cases",
1072
+ "noSearchResultsTitle": "No tasks found",
1073
+ "noSearchResultsDescription": "There are no tasks that match your search criteria."
1074
+ },
1075
+ "Task": "Task",
1076
+ "Tasks": "Tasks",
1077
+ "Analysis": "Analysis",
1078
+ "Choice fields": "Choice fields",
1079
+ "Overview of all Choice fields": "Overview of all Choice fields",
1080
+ "Create new Choice field": "Create new Choice field",
1081
+ "Choice field details": "Choice field details",
1082
+ "Choice field values": "Choice field values",
1083
+ "Overview of all Choice field values": "Overview of all Choice field values",
1084
+ "Create new Choice field value": "Create new Choice field value",
1085
+ "Choice field value details": "Choice field value details",
1086
+ "Process": "Process",
1087
+ "Processes": "Processes",
1088
+ "Overview of all Processes": "Overview of all Processes",
1089
+ "Create new Process": "Create new Process",
1090
+ "Process details": "Process details",
1091
+ "Decision tables": "Decision tables",
1092
+ "Edit decision table": "Edit decision table",
1093
+ "Create decision table": "Create decision table",
1094
+ "Overview of all Decision tables": "Overview of all decision tables",
1095
+ "Create new Milestone": "Create new Milestone",
1096
+ "Create new Milestone Set": "Create new Milestone Set",
1097
+ "Forms": "Forms",
1098
+ "Overview of all Forms": "Overview of all Forms",
1099
+ "Create Form": "Create Form",
1100
+ "Form Builder": "Form Builder",
1101
+ "Process links": "Process links",
1102
+ "Translations": "Translations",
1103
+ "uploadFormDefinition": "Upload form definition",
1104
+ "Process migration": "Process migration",
1105
+ "Process migration warning": "<b>Warning:</b> When migrating a process, the candidate groups of running instances will not be updated. This can be done in the database if necessary. (For example if a specific user task is open for ROLE_USER and the candidate group for the user task is updated in the process to ROLE_ADMIN, this user task is still accessible for ROLE_USER. Only newly started processes will use the updated candidate group)",
1106
+ "Case": "Case",
1107
+ "Cases": "Cases",
1108
+ "Deployment": "Deployment",
1109
+ "document definition": "Document definition",
1110
+ "Upload document definition": "Upload document definition",
1111
+ "Remove document definition": "Remove document definition",
1112
+ "remove-document-definition-confirmation": "Warning: <br/><br/> This document definition and all related cases will be removed. Linked processes will be unlinked.<br/> Please note that removing a document definition and its cases cannot be reversed",
1113
+ "remove-document-definition-confirmation-button": "Remove",
1114
+ "remove-document-definition-success": "Removed document definition",
1115
+ "Download document definition": "Download document definition",
1116
+ "Select a document definition": "Select a file to upload",
1117
+ "Overview of all Cases": "Overview of all Cases",
1118
+ "Start Case": "Create New Case",
1119
+ "Case details": "Case details",
1120
+ "Related documents": "Related documents",
1121
+ "Overview of all documents in this case": "Overview of all documents in this case",
1122
+ "Basics": "Basics",
1123
+ "Other": "Other",
1124
+ "Download": "Download",
1125
+ "Upload": "Upload",
1126
+ "Import": "Import",
1127
+ "Select process definition for document definition": "Select process definition for document definition",
1128
+ "Select options for the selected process": "Select options for the selected process",
1129
+ "Save": "Save",
1130
+ "Customers": "Customers",
1131
+ "Objects": "Objects",
1132
+ "processManagement": {
1133
+ "download": "Download",
1134
+ "clear": "Clear",
1135
+ "deploy": "Save",
1136
+ "name": "Name",
1137
+ "key": "Key",
1138
+ "readOnly": "Read-only",
1139
+ "createProcess": "Create process",
1140
+ "systemProcess": "System process",
1141
+ "systemProcessWarningMessage": "This is a system process. Pay close attention when making adjustments to this process",
1142
+ "readOnlySystemProcessWarningMessage": "This is a system process, so it is marked as read-only. This process can be used but not modified.",
1143
+ "version": "Version: ",
1144
+ "noResults": {
1145
+ "title": "No processes found",
1146
+ "caseDescription": "Click here to create a process associated with this case",
1147
+ "independentDescription": "Click here to create an standalone process"
1148
+ },
1149
+ "deleteModal": {
1150
+ "title": "Delete process",
1151
+ "content": "Are you sure you want to delete this process?"
1152
+ },
1153
+ "successNotification": "Process deployed successfully",
1154
+ "errorNotification": "Process failed to deploy",
1155
+ "deleteNotification": "Process deleted successfully",
1156
+ "upload": {
1157
+ "modalTitle": "Upload process definition",
1158
+ "title": "Upload file",
1159
+ "description": "Only BPMN files are supported.",
1160
+ "buttonText": "Select file",
1161
+ "success": "Deployment successful",
1162
+ "failure": "Deployment failed"
1163
+ },
1164
+ "canInitializeDocument": "Starts case",
1165
+ "startableByUser": "Startable by user"
1166
+ },
1167
+ "processCaseConnection": {
1168
+ "noProcessesTitle": "No processes",
1169
+ "noProcessesDescription": "There are no processes connected to this Case definition yet",
1170
+ "processCreatesCase": "Process creates new case",
1171
+ "processCreatesCaseTooltip": "When this option is selected, a new case is created when this process is started. For this to be possible, a start form must be linked to the first step in the process.",
1172
+ "startableWithinCase": "Can be started within existing case",
1173
+ "startableWithinCaseTooltip": "When this option is selected, this process definition will be available to start from within an existing case. This is done through the sub process menu on the detail page of the case."
1174
+ },
1175
+ "openZaak": {
1176
+ "links": "Connected zaak type",
1177
+ "documentenApi": {
1178
+ "title": "Documenten API",
1179
+ "documentenApiVersion": "The Documenten API plugin is using version",
1180
+ "noVersionWarningTitle": "No Documents API plugin version detected",
1181
+ "noVersionWarningMessage": "Please configure the Documents API plugin version and configure the upload process",
1182
+ "multipleVersionsWarningTitle": "Multiple Documenten API plugins detected",
1183
+ "multipleVersionsWarningMessage": "The upload process links to multiple Documenten APIs with different versions"
1184
+ },
1185
+ "success": {
1186
+ "serviceTaskLinked": "Service task linked",
1187
+ "serviceTaskLinkUpdated": "Service task link updated",
1188
+ "serviceTaskUnlinked": "Service task unlinked"
1189
+ },
1190
+ "error": {
1191
+ "configNotFound": "OpenZaak configuration not found, go to Admin > Open Zaak",
1192
+ "serviceTaskLinkFailed": "Failed to link Service task",
1193
+ "serviceTaskLinkUpdateFailed": "Failed to update Service task link",
1194
+ "serviceTaskUnlinkFailed": "Failed to unlink Service task"
1195
+ },
1196
+ "linkZaakType": "Link zaak type",
1197
+ "linkSuccessful": "Successfully linked zaaktype to case",
1198
+ "linkFailed": "Failed to link zaaktype to case",
1199
+ "delinkSuccessful": "Successfully de-linked zaaktype",
1200
+ "delinkFailed": "Failed to de-link zaaktype",
1201
+ "autoCreateForCase": "Automatically create for each case",
1202
+ "selectZaakTypeForCase": "Select zaak type for case",
1203
+ "selectZaakType": "Select zaak type",
1204
+ "selectZakenApiPluginForCase": "Select Zaken Api plugin for case",
1205
+ "selectZakenApiPlugin": "Select Zaken Api plugin",
1206
+ "zakenApiPlugin": "Zaken Api plugin",
1207
+ "rsin": "RSIN used when creating the Zaak in the Zaken Api",
1208
+ "selectInfoObjectType": "Select information object type"
1209
+ },
1210
+ "zaakdetails": {
1211
+ "title": "Zaak detail synchronisation",
1212
+ "enabled": "Enabled",
1213
+ "yes": "Yes",
1214
+ "no": "No",
1215
+ "objectManagementConfigurationTitle": "Object management configuration",
1216
+ "submitButton": "Configure case detail synchronisation",
1217
+ "editModal": {
1218
+ "title": "Add case detail synchronisation",
1219
+ "objectManagementConfiguration": "Object management configuration",
1220
+ "objectManagementConfigurationPlaceholder": "Select an object management configuration",
1221
+ "enabled": "Enabled"
1222
+ }
1223
+ },
1224
+ "interface": {
1225
+ "mainMenu": "Main menu",
1226
+ "toggleMenu": "Menu",
1227
+ "typeToSearch": "Type here to search",
1228
+ "noSearchResults": "No results",
1229
+ "noResults": "No results",
1230
+ "loading": "Loading...",
1231
+ "edit": "Edit",
1232
+ "noItemsFound": "No items found",
1233
+ "clearAll": "Clear all",
1234
+ "clear": "Clear",
1235
+ "show": "Show",
1236
+ "display": "Display",
1237
+ "items": "items",
1238
+ "of": "of",
1239
+ "visible": "visible",
1240
+ "nextArrow": "Next >",
1241
+ "previous": "< Previous",
1242
+ "addRow": "Add row",
1243
+ "deleteRow": "Delete row",
1244
+ "on": "On",
1245
+ "off": "Off",
1246
+ "builds": {
1247
+ "valtimo-backend-libraries": "Valtimo back-end",
1248
+ "valtimo-frontend-libraries": "Valtimo front-end"
1249
+ },
1250
+ "email": "E-mail",
1251
+ "username": "Username",
1252
+ "name": "Name",
1253
+ "delete": "Delete",
1254
+ "deleteConfirmation": "Are you sure you want to delete?",
1255
+ "cancel": "Cancel",
1256
+ "close": "Close",
1257
+ "discard": "Discard",
1258
+ "next": "Next",
1259
+ "skip": "Skip",
1260
+ "confirm": "Confirm",
1261
+ "collapse": "Collapse",
1262
+ "expand": "Expand",
1263
+ "download": "Download",
1264
+ "duplicate": "Duplicate",
1265
+ "openInNewTab": "Open in new tab",
1266
+ "create": "Create",
1267
+ "save": "Save",
1268
+ "more": "More",
1269
+ "export": "Export",
1270
+ "defaultSort": "Default sort",
1271
+ "list": {
1272
+ "itemsPerPage": "Items per page",
1273
+ "multipleSelect": "{{count}} items selected",
1274
+ "ofLastPage": "of {{last}} page",
1275
+ "ofLastPages": "of {{last}} pages",
1276
+ "singleSelect": "1 item selected",
1277
+ "totalItems": "{{start}}-{{end}} of {{total}} items",
1278
+ "totalItem": "{{start}}-{{end}} of {{total}} item"
1279
+ },
1280
+ "pendingChanges": {
1281
+ "title": "Leaving page",
1282
+ "content": "You are leaving the page. Any unsaved changes will be lost. Are you sure you want to continue?",
1283
+ "keepEditing": "Keep editing"
1284
+ },
1285
+ "required": "required",
1286
+ "filter": "Filter...",
1287
+ "back": "Back",
1288
+ "warning": "Warning",
1289
+ "success": "Success",
1290
+ "error": "Error",
1291
+ "finish": "Finish",
1292
+ "add": "Add",
1293
+ "tags": "Tags",
1294
+ "tagType": {
1295
+ "red": "Red",
1296
+ "magenta": "Magenta",
1297
+ "purple": "Purple",
1298
+ "blue": "Blue",
1299
+ "cyan": "Cyan",
1300
+ "teal": "Teal",
1301
+ "green": "Green",
1302
+ "gray": "Gray",
1303
+ "cool-gray": "Cool gray",
1304
+ "warm-gray": "Warm gray",
1305
+ "high-contrast": "High contrast",
1306
+ "outline": "Outline",
1307
+ "orange": "Orange"
1308
+ },
1309
+ "labels": {"dateCreationFrom": "Date creation from", "dateCreationTo": "Date creation to"},
1310
+ "sorting": {
1311
+ "ascending": "Ascending",
1312
+ "descending": "Descending",
1313
+ "noDefault": "No default sort"
1314
+ },
1315
+ "editor": {"visualEditor": "Visual editor", "jsonEditor": "JSON editor"},
1316
+ "key": "Key",
1317
+ "value": "Value",
1318
+ "title": "Title",
1319
+ "yes": "Yes",
1320
+ "no": "No",
1321
+ "upload": "Upload"
1322
+ },
1323
+ "taskDetail": {"taskCreated": "Created", "taskCompleted": "has successfully been completed"},
1324
+ "assignTask": {
1325
+ "assignedTo": "Assigned to",
1326
+ "header": "Assign a user to this task",
1327
+ "placeholder": "Select user",
1328
+ "remove": "Unassign",
1329
+ "save": "Save",
1330
+ "fetchingUsers": "Fetching users...",
1331
+ "buttonText": "Assign user",
1332
+ "submitButtonText": "Assign user to task",
1333
+ "comboboxLabel": "Select user to assign"
1334
+ },
1335
+ "assignDocument": {
1336
+ "assignedTo": "Assigned to ",
1337
+ "header": "Assign a user to this case",
1338
+ "remove": "Unassign",
1339
+ "fetchingUsers": "Fetching users..."
1340
+ },
1341
+ "dropzone": {
1342
+ "drop": "Choose a file or drag it here",
1343
+ "maxFileSize": "Maximum file size: ",
1344
+ "jsonDocDef": "The case definition must be in the JSON format",
1345
+ "formJsonDocDef": "The form definition must be in the JSON format",
1346
+ "objecttypeDef": "The objecttype definition must be in JSON format",
1347
+ "error": {
1348
+ "tooBig": "The file you tried to submit is too large",
1349
+ "wrongType": "The filetype of the file you tried to submit is not supported",
1350
+ "generic": "Something went wrong. Please try again.",
1351
+ "invalidDocDef": "The case definition could not be uploaded. Please try again.",
1352
+ "invalidFormDef": "The form definition is not valid. Please try again.",
1353
+ "invalidJson": "The file contains an error. Please make sure it contains a valid JSON value.",
1354
+ "invalidObjecttypeDef": "The objecttype definition is not valid. Please try again.",
1355
+ "objecttypeAlreadyExists": "The JSON file contains an object type that already exists."
1356
+ }
1357
+ },
1358
+ "fieldLabels": {
1359
+ "referenceNumber": "Reference number",
1360
+ "createdBy": "Created by",
1361
+ "createdOn": "Created on",
1362
+ "lastModified": "Last modified",
1363
+ "files": "Files",
1364
+ "firstName": "First name",
1365
+ "lastName": "Last name",
1366
+ "assigneeFullName": "Assignee",
1367
+ "accepted": "Accepted",
1368
+ "title": "Title",
1369
+ "readOnly": "Read-only",
1370
+ "height": "Amount"
1371
+ },
1372
+ "list": {
1373
+ "currentPage": "Page {{current}} of {{total}}",
1374
+ "show": "Show",
1375
+ "entries": "entries",
1376
+ "noMatchingItems": "No matching items found for ",
1377
+ "noFieldDefinitions": "No fields definitions defined",
1378
+ "noResults": "No result found",
1379
+ "showingResults": "Showing {{number}} of {{total}} results",
1380
+ "showingResult": "Showing {{number}} result",
1381
+ "automaticallyGenerated": "Automatically generated",
1382
+ "search": "Search..."
1383
+ },
1384
+ "webcam": {"takePicture": "Take picture", "save": "Save", "redo": "Redo"},
1385
+ "customers": {
1386
+ "name": "Name",
1387
+ "citizenServiceNumber": "Citizen service number",
1388
+ "citizenServiceNumberPlaceholder": "e.g. 070003816",
1389
+ "dateOfBirth": "Date of birth",
1390
+ "dateOfBirthPlaceholder": "e.g. 1970-03-17",
1391
+ "familyName": "Family name",
1392
+ "familyNamePlaceholder": "e.g. Jansen",
1393
+ "title": "Customers",
1394
+ "subtitle": "Overview of all customers",
1395
+ "searchBasedOn": "Search with",
1396
+ "lastNameAndDateOfBirth": "Family name and date of birth"
1397
+ },
1398
+ "stepper": {
1399
+ "cancelButtonText": "Cancel",
1400
+ "nextButtonText": "Next step",
1401
+ "completeButtonText": "Complete"
1402
+ },
1403
+ "pages": {
1404
+ "plugins": {"title": "Plugins", "noResults": "There are no plugins configured yet"},
1405
+ "customercases": {
1406
+ "title": "Cases",
1407
+ "description": "On this page you can view the cases of a specific customer."
1408
+ }
1409
+ },
1410
+ "pluginSteps": {
1411
+ "step0": "Select your plugin",
1412
+ "step1": "Select your configuration",
1413
+ "step2": "Select your action",
1414
+ "step3": "Configure action",
1415
+ "complete": "Connect plugin action"
1416
+ },
1417
+ "plugin": {
1418
+ "noConfigurationComponent": "No configuration component is available.",
1419
+ "configurationId": "Configuration ID",
1420
+ "configurationIdTooltip": "The plugin will be saved under this ID. The ID must be in the format of a UUID"
1421
+ },
1422
+ "pluginManagement": {
1423
+ "tableItemsText": "plugin configurations",
1424
+ "add": "Configure plugin",
1425
+ "noDefinitions": "No plugin definitions found.",
1426
+ "save": "Save configuration",
1427
+ "remove": "Delete configuration",
1428
+ "labels": {
1429
+ "pluginName": "Plugin name",
1430
+ "identifier": "Identifier",
1431
+ "configurationName": "Configuration name"
1432
+ },
1433
+ "addSteps": {
1434
+ "step0": "Choose your plugin",
1435
+ "step1": "Enter data",
1436
+ "complete": "Save configuration"
1437
+ }
1438
+ },
1439
+ "customerCases": {
1440
+ "tableItemsText": "cases",
1441
+ "labels": {"zaakNummer": "Case number", "zaakStatus": "Status", "zaakType": "Type"}
1442
+ },
1443
+ "processLink": {
1444
+ "create": "Create process link",
1445
+ "edit": "Edit process link",
1446
+ "saveChanges": "Save changes",
1447
+ "unlink": "Unlink",
1448
+ "noPluginFunctions": "This plugin does not support any plugin actions."
1449
+ },
1450
+ "keycloak": {
1451
+ "expiryPromptTitle": "The session is about to expire",
1452
+ "expiryPromptDescription": "You will be logged out in {{expiryTime}}.",
1453
+ "expiryPromptCancel": "Logout",
1454
+ "expiryPromptConfirm": "Continue session"
1455
+ },
1456
+ "searchFields": {
1457
+ "noneConfigured": "No search fields have been configured for this document type.",
1458
+ "expandButtonText": "Show search fields",
1459
+ "collapseButtonText": "Hide",
1460
+ "searchButtonText": "Search",
1461
+ "clearButtonText": "Clear",
1462
+ "downloadButtonText": "Download configuration",
1463
+ "to": "to",
1464
+ "text": "Text",
1465
+ "number": "Number",
1466
+ "date": "Date",
1467
+ "datetime": "Date and time",
1468
+ "time": "Time",
1469
+ "boolean": "Yes / no",
1470
+ "numberRange": "Number range",
1471
+ "dateRange": "Date range",
1472
+ "datetimeRange": "Date and time range",
1473
+ "booleanPositive": "Yes",
1474
+ "booleanNegative": "No"
1475
+ },
1476
+ "searchFieldsTooltips": {
1477
+ "text": "A text field",
1478
+ "number": "A number field",
1479
+ "date": "A date field",
1480
+ "datetime": "A date and time field",
1481
+ "boolean": "A boolean field",
1482
+ "numberRange": "A number range field",
1483
+ "dateRange": "A date range field",
1484
+ "datetimeRange": "A date and time range field"
1485
+ },
1486
+ "searchFieldsOverview": {
1487
+ "title": "Title",
1488
+ "key": "Key",
1489
+ "add": "Add search field",
1490
+ "edit": "Edit search field",
1491
+ "path": "Path",
1492
+ "dataType": "Data type",
1493
+ "fieldType": "Field type",
1494
+ "matchType": "Match",
1495
+ "exact": "Exact",
1496
+ "like": "Contains",
1497
+ "single": "Single",
1498
+ "multiple": "Multiple",
1499
+ "single-select-dropdown": "Single select dropdown",
1500
+ "multi-select-dropdown": "Multi select dropdown",
1501
+ "range": "Range",
1502
+ "submit": "Submit",
1503
+ "close": "Close",
1504
+ "save": "save",
1505
+ "delete": "Delete",
1506
+ "download": "Download",
1507
+ "addRow": "Add search field",
1508
+ "searchFieldPlaceholder": "Select a type...",
1509
+ "noSearchFieldsConfiguredWarningTitle": "No search fields configured",
1510
+ "deleteSearchField": "Delete search field",
1511
+ "deleteSearchFieldConfirmation": "Are you sure you want to delete this search field?",
1512
+ "dropdownDataProvider": "Dropdown data source",
1513
+ "dropdownDatabaseDataProvider": "Fixed value",
1514
+ "dropdownJsonFileDataProvider": "Config file",
1515
+ "configFile": "Config file",
1516
+ "dropdownListValues": "Dropdown list values",
1517
+ "id": "ID",
1518
+ "text": "Text",
1519
+ "textContains": "Text contains",
1520
+ "noSearchfieldsTitle": "No search fields",
1521
+ "noSearchfieldsDescription": "There are no search fields configured for this case type."
1522
+ },
1523
+ "searchFieldsOverviewTooltips": {
1524
+ "title": "The title is an optional field that appears as a label for the current search field. When the title is not set, the default value will be the search field key translation (if there is no translation available, the original key value will be displayed).",
1525
+ "key": "A unique key by which the search field is identified. If the key is not unique, you will not be able to save the search field.",
1526
+ "path": "A path which leads to the property you want to search on. For searching in the document's JSON schema, follow this example: 'doc:customer.firstName'. For searching in the document properties, follow these examples: 'case:createdBy', or 'case:sequence', or 'case:assigneeFullName'. Note: When there are special characters in a property, the property must be enclosed in quotes. For example: case:\"loan-accepted\".",
1527
+ "objectsApiPath": "A path which leads to the property you want to search on. For searching in the objects API JSON, follow this example: 'object:/customer/firstName'.",
1528
+ "dataType": "The data type decides what input is shown to the user. For example, for the data type 'Date', a date picker is shown.",
1529
+ "fieldType": "The field type decides the values the user can input. For the option 'Single', the user can only input a single value. For the option 'Range', the user may input two values, and these values, and all the values in between, are searched for.",
1530
+ "matchType": "The match type decides how values in the database are matched to the search values. For the match type 'Exact', the value '1' would only be matched to the value '1'. For the match type 'Contains', the value '1' would be matched to the value '1', '123', and all other values containing '1'.",
1531
+ "dropdownDataProvider": "The dropdown data source determines where the data for the dropdown comes from.",
1532
+ "configFile": "Use a config file with dropdown values. The config value must be present on the server",
1533
+ "dropdownListValues": "Set custom values for the dropdown list. The value shown in the dropdown list should be entered in the right text-field. The left text-field should contain the id of that value."
1534
+ },
1535
+ "searchFieldDataType": {"select": "Select a data type"},
1536
+ "searchFieldFieldType": {"select": "Select a field type"},
1537
+ "listColumn": {
1538
+ "title": "Title",
1539
+ "titleTitle": "Title (optional)",
1540
+ "titleTooltip": "If this field is filled in, this title will display as the column header, overriding any available translations.",
1541
+ "key": "Key",
1542
+ "keyTooltip": "A unique key by which the column is identified. If the key is not unique, you will not be able to save the column.",
1543
+ "path": "Path",
1544
+ "pathTooltip": "A path which leads to the property you want to show. For the document's JSON schema, follow this example: 'doc:customer.firstName'. For document properties, follow these examples: 'case:createdBy', or 'case:sequence', or 'case:assigneeFullName'. Note: When there are special characters in a property, the property must be enclosed in quotes. For example: case:\"loan-accepted\".",
1545
+ "objectsApiPathTooltip": "A path which leads to the property you want to search on. For searching in the objects API JSON, follow this example: 'object:/customer/firstName'.",
1546
+ "displayType": "Display Type",
1547
+ "displayTypeTooltip": "This option decides how the data is eventually displayed in the table.",
1548
+ "displayTypeParameters": "Parameters",
1549
+ "sortable": "Sortable",
1550
+ "defaultSort": "Default Sort",
1551
+ "defaultSortTitle": "Default Sort (optional)",
1552
+ "defaultSortTooltip": "If this field has a value, the table will be sorted by default on this property, in the direction specified. Only one column at a time can have this property. On creating a new column, if another column already has a default sort specified, this input field will be disabled.",
1553
+ "selectDefaultSort": "Select a default sort",
1554
+ "sortableYes": "Yes",
1555
+ "sortableNo": "No",
1556
+ "sortableAsc": "Ascending",
1557
+ "sortableDesc": "Descending",
1558
+ "hasEnvConfigWarningTitle": "Case type already has a column configuration",
1559
+ "hasEnvConfigWarning": "This case type already has a column configuration in the environment configuration. Delete this in order to add columns here.",
1560
+ "noConfigWarningTitle": "No columns",
1561
+ "noConfigWarning": "There are no columns configured for this case type.",
1562
+ "addButtonText": "Add column",
1563
+ "editColumnTitle": "Edit column",
1564
+ "close": "Close",
1565
+ "save": "Save column",
1566
+ "dateFormat": "Date format (optional)",
1567
+ "dateFormatTooltip": "A date format supported by Moment.js (https://momentjs.com/docs/).",
1568
+ "uniqueKeyWarning": "The key for this column must be unique.",
1569
+ "enumTitle": "Enumeration values",
1570
+ "enumTitleOptional": "Values (optional)",
1571
+ "enumTooltip": "The keys and values used to transform display data in the table.",
1572
+ "enumTooltipOptional": "The values used to transform display data in the table.",
1573
+ "downloadButtonText": "Download configuration",
1574
+ "deleteColumn": "Delete column",
1575
+ "deleteColumnConfirmation": "Are you sure you want to delete this column?",
1576
+ "tagAmount": "How many tags should be displayed",
1577
+ "tagAmountTooltip": "The amount of tags must be a positive number bigger than zero."
1578
+ },
1579
+ "listColumnDisplayType": {
1580
+ "select": "Select a display type",
1581
+ "text": "Text",
1582
+ "date": "Date",
1583
+ "boolean": "Yes/no",
1584
+ "enum": "Enumeration",
1585
+ "arrayCount": "Count",
1586
+ "underscoresToSpaces": "Underscores to spaces",
1587
+ "tags": "Tags"
1588
+ },
1589
+ "object": {
1590
+ "title": "Objects",
1591
+ "createObject": "New object",
1592
+ "editObject": "Edit object",
1593
+ "deleteObject": "Delete object",
1594
+ "labels": {"recordIndex": "Record index", "objectUrl": "Object URL"},
1595
+ "header": "Object details",
1596
+ "tabs": {"general": "General"},
1597
+ "close": "Close",
1598
+ "save": "Save object",
1599
+ "delete": "Delete object",
1600
+ "deleteObjectConfirmation": "Are you sure you want to delete this object",
1601
+ "messages": {
1602
+ "objectCreated": "Object created successfully",
1603
+ "objectCreationError": "An error occurred while creating the object",
1604
+ "objectUpdated": "Object updated successfully",
1605
+ "objectUpdateError": "An error occurred while updating the object",
1606
+ "objectDeleted": "Object deleted successfully",
1607
+ "objectDeleteError": "An error occurred while deleting the object",
1608
+ "objectRetrievingFormError": "An error occurred while retrieving the form definition"
1609
+ }
1610
+ },
1611
+ "objectManagement": {
1612
+ "title": "Objecttypes",
1613
+ "createObjecttype": "Create objecttype",
1614
+ "editObjecttype": "Edit objecttype",
1615
+ "uploadObjecttype": "Upload objecttype",
1616
+ "labels": {
1617
+ "title": "Title",
1618
+ "objects": "Objects API plugin configuration",
1619
+ "objecttypes": "Objecttypen API plugin configuration",
1620
+ "objecttypeId": "Objecttype ID",
1621
+ "objecttypeVersion": "Objecttype version",
1622
+ "formDefinitionView": "View form definition",
1623
+ "formDefinitionEdit": "Edit form definition",
1624
+ "showInDataMenu": "Show in menu"
1625
+ },
1626
+ "tooltips": {
1627
+ "title": "The name of this configuration. Under this name, this configuration can be found in the rest of the application.",
1628
+ "objecttypeId": "The ID of the object type",
1629
+ "objecttypeVersion": "The version of the object type",
1630
+ "formDefinitionView": "The name of the form IO definition that will be used to display the object.",
1631
+ "formDefinitionEdit": "The name of the form IO definition that will be used to edit the object.",
1632
+ "showInDataMenu": "Indicates whether the object type is visible in the menu"
1633
+ },
1634
+ "cancel": "Cancel",
1635
+ "add": "Add object",
1636
+ "edit": "Change object",
1637
+ "download": "Download",
1638
+ "visibleInMenu": "Visible in menu",
1639
+ "tabs": {"general": "General", "list": "List", "searchFields": "Search Fields"}
1640
+ },
1641
+ "formioTranslations": {
1642
+ "Submit": "Submit",
1643
+ "Save": "Save",
1644
+ "Cancel": "Cancel",
1645
+ "Remove": "Remove",
1646
+ "Next": "Next",
1647
+ "Previous": "Previous",
1648
+ "formioIbanComponent": {"errorMessage": "Not a valid IBAN. Please enter a valid IBAN."},
1649
+ "formioCurrencyComponent": {
1650
+ "errorMessage": "Not a valid decimal number. Please enter a valid decimal number."
1651
+ },
1652
+ "formioFormViewModelComponent": {"submitError": "Invalid submissions"}
1653
+ },
1654
+ "viewTypeConverter": {
1655
+ "Yes": "Yes",
1656
+ "No": "No",
1657
+ "errors": {"boolean": "Value is not a valid boolean", "number": "Value is not a valid number"}
1658
+ },
1659
+ "processLinkConfiguration": {
1660
+ "configureStep": "Configure process step",
1661
+ "modalTitle": "Process step: {{processStepName}}",
1662
+ "chooseProcessLinkTypeDescription": "A process step can perform a variety of actions. Choose below to what type of action you would like to link this step.",
1663
+ "chooseFormDescription": "Choose the form that you want to link to the process step.",
1664
+ "chooseFormFlowDescription": "Choose the FormFlow that you want to link to the process step.",
1665
+ "choosePluginConfigurationDescription": "Choose the plugin configuration you want to link to the process step.",
1666
+ "choosePluginActionDescription": "Choose the action you want to perform with the plugin.",
1667
+ "chooseForm": "Choose form",
1668
+ "cancel": "Cancel",
1669
+ "complete": "Complete",
1670
+ "back": "Go back",
1671
+ "next": "Next",
1672
+ "pluginDescription": "Plugin description",
1673
+ "unlink": "Unlink",
1674
+ "toggleViewModel": {
1675
+ "title": "View Model enabled?",
1676
+ "checkboxDescription": "Enables Form View Model form processing"
1677
+ },
1678
+ "importConfiguration": "Import configuration",
1679
+ "selectProcess": "Select process",
1680
+ "process": "Process",
1681
+ "version": "Version",
1682
+ "selectVersion": "Select version",
1683
+ "activity": "Process activity",
1684
+ "selectActivity": "Select process activity",
1685
+ "noProcess": "No upload process"
1686
+ },
1687
+ "processLinkType": {
1688
+ "plugin": "Plugin",
1689
+ "form": "Form",
1690
+ "form-flow": "FormFlow",
1691
+ "url": "URL",
1692
+ "ui-component": "UI Component"
1693
+ },
1694
+ "processLinkSteps": {
1695
+ "chooseProcessLinkType": "Choose link type",
1696
+ "empty": "........",
1697
+ "selectForm": "Select your form",
1698
+ "selectFormPlaceholder": "Select a form",
1699
+ "displayType": {
1700
+ "label": "Select form display type",
1701
+ "placeholder": "Select how to display the form",
1702
+ "options": {"modal": "Modal", "panel": "Panel"}
1703
+ },
1704
+ "formSize": {
1705
+ "label": "Select modal size",
1706
+ "placeholder": "Select a modal size",
1707
+ "options": {
1708
+ "extraSmall": "Extra small",
1709
+ "small": "Small",
1710
+ "medium": "Medium",
1711
+ "large": "Large"
1712
+ }
1713
+ },
1714
+ "selectFormFlow": "Select your FormFlow",
1715
+ "choosePluginConfiguration": "Select plugin configuration",
1716
+ "choosePluginAction": "Choose your action",
1717
+ "configurePluginAction": "Configure your action",
1718
+ "selectURL": "Configure your URL",
1719
+ "subtitles": "Subtitles",
1720
+ "addSubtitle": "Add subtitle",
1721
+ "uiComponent": "Select UI component"
1722
+ },
1723
+ "processLinkTypeDisabledTooltip": {
1724
+ "plugin": "No plugin configurations are available. Create a plugin configuration to be able to link it to a process step.",
1725
+ "form": "There are no forms available. Create a form to be able to link it to a process step.",
1726
+ "form-flow": "There are no FormFlows available. Create a FormFlow to be able to link it to a process step.",
1727
+ "ui-component": "There are no custom components registered please create one if you wish to use this option."
1728
+ },
1729
+ "processLinkUrlInvalid": "Invalid URL {{ URL }}",
1730
+ "accessControl": {
1731
+ "roles": {
1732
+ "title": "All roles",
1733
+ "key": "Role key",
1734
+ "add": "Add new role",
1735
+ "name": "Role name",
1736
+ "deleteModalContent": "Are you sure you want to delete these roles and all underlying permissions? This action cannot be undone.",
1737
+ "editMetadata": "Edit metadata",
1738
+ "editRole": "Edit Role",
1739
+ "savedSuccessTitle": "Saved successfully",
1740
+ "savedSuccessTitleMessage": "{{roleKey}} was saved successfully",
1741
+ "singleExport": "One JSON file",
1742
+ "multipleExport": "Separate files per role",
1743
+ "noResults": {
1744
+ "description": "Click <strong>Add new role</strong> to start designing your role",
1745
+ "title": "No roles added"
1746
+ }
1747
+ }
1748
+ },
1749
+ "translationManagement": {
1750
+ "add": "Add translation",
1751
+ "modalTitle": "Save translations",
1752
+ "modalContent": "Displaying new translations in the application might require a page reload.",
1753
+ "saveWithoutReload": "Save",
1754
+ "saveWithReload": "Save and reload"
1755
+ },
1756
+ "caseMigration": {
1757
+ "warningBeta": "Case migration is still in beta. Migrating cases might give unexpected results. Please use with care.",
1758
+ "caseDefinition": "Case definition",
1759
+ "sourceCaseDefinitionKey": "Source case definition name",
1760
+ "sourceCaseDefinitionVersionTag": "Source case definition version",
1761
+ "targetCaseDefinitionKey": "Target case definition name",
1762
+ "targetCaseDefinitionVersionTag": "Target case definition version",
1763
+ "patches": "Patches ",
1764
+ "patchTooltip": "The old case can be migrated to the new case by using patches. Patches work by moving case properties from the source location to the target location. For example: source: '/oldLocation/firstName', target: '/newLocation/firstName'. A property can be removed by leaving the target empty. For example: source: '/gulden', target: ''. A property can be given a default value in the source field. For example, source: 'John', target: '/firstName'. A patch will always try to convert the type to the target type. For example, source: '/my/number', target: '/my/text'. A property can be set to [NULL] by using SpEL expressions. For example, source: '${null}', target: '/driversLicense'. A Spring bean can be called for more elaborate patches. For example, source: ${myBean.getAge(source.person.birthYear)}, target: '${myOtherBean.doMore(builder, sourceValue)}'",
1765
+ "patchSource": "Source case field",
1766
+ "patchTarget": "Target case field",
1767
+ "errors": "Errors",
1768
+ "noErrors": "Success. No errors found.",
1769
+ "checkPatches": "Verify patches",
1770
+ "migrate": "Migrate cases",
1771
+ "modalTitle": "Migrate cases",
1772
+ "modalContent": "Are you sure you migrate the cases? Some changes can not be undone."
1773
+ },
1774
+ "formFlow": {
1775
+ "title": "All form flows",
1776
+ "key": "Key",
1777
+ "version": "Version",
1778
+ "readOnly": "Read only",
1779
+ "add": "Add new form flow",
1780
+ "deleteModalContent": "Are you sure you want to delete this form flow?",
1781
+ "deletedSuccessfully": "{{key}} was deleted successfully",
1782
+ "savedSuccessTitle": "Saved successfully",
1783
+ "savedSuccessTitleMessage": "{{key}} was saved successfully",
1784
+ "noResults": {
1785
+ "description": "Click <strong>Add new form flow</strong> to start designing your form flow",
1786
+ "title": "No form flows added"
1787
+ }
1788
+ },
1789
+ "taskManagement": {
1790
+ "columns": "Columns",
1791
+ "searchFields": "Search fields",
1792
+ "caseName": "Case name"
1793
+ },
1794
+ "valuePathSelector": {
1795
+ "placeholder": "Select a path",
1796
+ "dropdown": "Dropdown",
1797
+ "manual": "Manual",
1798
+ "selectCaseDefPlaceholder": "Select a case"
1799
+ },
1800
+ "logging": {
1801
+ "columns": {"timestamp": "Timestamp", "formattedMessage": "Message", "level": "Log level"},
1802
+ "search": {
1803
+ "addProperty": "Add property",
1804
+ "afterTimestamp": "From timestamp",
1805
+ "beforeTimestamp": "To timestamp",
1806
+ "properties": "Properties"
1807
+ },
1808
+ "noResults": {
1809
+ "description": "No lines have been logged yet",
1810
+ "searchDescription": "No logs match your search criteria",
1811
+ "title": "There are no logs"
1812
+ },
1813
+ "detailsTitle": "Log details",
1814
+ "timestamp": "Timestamp",
1815
+ "formattedMessage": "Message",
1816
+ "properties": "Properties",
1817
+ "stacktrace": "Stacktrace"
1818
+ },
1819
+ "setTaskDueDate": {
1820
+ "buttonText": "Set due date",
1821
+ "submitButtonText": "Set due date",
1822
+ "dueDateText": "Due date:",
1823
+ "removeButtonText": "Remove due date"
1824
+ },
1825
+ "processStartSuccessful": "{{processName}} has successfully been started"
1826
+ }