@valtimo/shared 13.32.0 → 13.33.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.
- package/assets/core/en.json +277 -2
- package/assets/core/nl.json +277 -2
- package/fesm2022/valtimo-shared.mjs +1 -1
- package/fesm2022/valtimo-shared.mjs.map +1 -1
- package/package.json +1 -1
package/assets/core/en.json
CHANGED
|
@@ -169,7 +169,271 @@
|
|
|
169
169
|
"noFormSpecified": "No form definition has been specified for this tab.",
|
|
170
170
|
"formNotFound": "The form definition '{{formDefinitionName}}' could not be found."
|
|
171
171
|
},
|
|
172
|
-
"rowLocked": "You don't have access to this case"
|
|
172
|
+
"rowLocked": "You don't have access to this case",
|
|
173
|
+
"inspection": {
|
|
174
|
+
"openInspector": "Inspect case",
|
|
175
|
+
"pageTitle": "Case inspection",
|
|
176
|
+
"placeholder": "This tab will be populated in a later phase.",
|
|
177
|
+
"tabs": {
|
|
178
|
+
"document": "Document",
|
|
179
|
+
"processes": "Processes",
|
|
180
|
+
"buildingBlocks": "Building blocks",
|
|
181
|
+
"logs": "Logs",
|
|
182
|
+
"zgw": "ZGW",
|
|
183
|
+
"metadata": "Metadata"
|
|
184
|
+
},
|
|
185
|
+
"document": {
|
|
186
|
+
"loading": "Loading document...",
|
|
187
|
+
"saved": "Document updated"
|
|
188
|
+
},
|
|
189
|
+
"buildingBlocks": {
|
|
190
|
+
"loading": "Loading building blocks...",
|
|
191
|
+
"emptyTitle": "No building blocks",
|
|
192
|
+
"empty": "This case has no building block instances.",
|
|
193
|
+
"notEnabled": "Building blocks are not enabled for this Valtimo installation.",
|
|
194
|
+
"saved": "Building block document updated",
|
|
195
|
+
"listAriaLabel": "Building blocks",
|
|
196
|
+
"detail": {
|
|
197
|
+
"instanceId": "Instance ID",
|
|
198
|
+
"documentId": "Document ID",
|
|
199
|
+
"processInstance": "Process instance",
|
|
200
|
+
"parent": "Parent",
|
|
201
|
+
"content": "Document content",
|
|
202
|
+
"loading": "Loading building block..."
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
"processes": {
|
|
206
|
+
"loading": "Loading processes...",
|
|
207
|
+
"empty": "No process instances are associated with this case.",
|
|
208
|
+
"listAriaLabel": "Process instances",
|
|
209
|
+
"buildingBlockTag": "BB",
|
|
210
|
+
"buildingBlockTagTooltip": "This process belongs to a building block",
|
|
211
|
+
"instanceId": "Instance ID",
|
|
212
|
+
"buildingBlock": "Building block",
|
|
213
|
+
"detailsTab": "Details",
|
|
214
|
+
"diagramTab": "Diagram",
|
|
215
|
+
"version": "Version",
|
|
216
|
+
"active": "Active",
|
|
217
|
+
"completed": "Completed",
|
|
218
|
+
"incidentsHeader": "Incidents",
|
|
219
|
+
"incidentTooltip": "Active incidents on this instance",
|
|
220
|
+
"incidentType": "Type",
|
|
221
|
+
"activity": "Activity",
|
|
222
|
+
"message": "Message",
|
|
223
|
+
"timestamp": "Timestamp",
|
|
224
|
+
"tasksHeader": "Tasks",
|
|
225
|
+
"taskName": "Task",
|
|
226
|
+
"taskAssignee": "Assignee",
|
|
227
|
+
"taskCreated": "Created",
|
|
228
|
+
"noTasks": "No active tasks.",
|
|
229
|
+
"variablesHeader": "Variables",
|
|
230
|
+
"variableName": "Name",
|
|
231
|
+
"variableType": "Type",
|
|
232
|
+
"variableValue": "Value",
|
|
233
|
+
"noVariables": "No variables.",
|
|
234
|
+
"jobsHeader": "Jobs",
|
|
235
|
+
"jobType": "Type",
|
|
236
|
+
"jobActivity": "Activity",
|
|
237
|
+
"jobRetries": "Retries left",
|
|
238
|
+
"jobDueDate": "Due",
|
|
239
|
+
"jobException": "Exception",
|
|
240
|
+
"jobTypeLabel": {
|
|
241
|
+
"TIMER": "Timer",
|
|
242
|
+
"ASYNC_CONTINUATION": "Async continuation",
|
|
243
|
+
"MESSAGE": "Message",
|
|
244
|
+
"BATCH": "Batch",
|
|
245
|
+
"OTHER": "Other"
|
|
246
|
+
},
|
|
247
|
+
"noJobs": "No jobs.",
|
|
248
|
+
"startedBy": "Started by",
|
|
249
|
+
"startedOn": "Started on",
|
|
250
|
+
"viewLogs": "View logs",
|
|
251
|
+
"variableActions": {
|
|
252
|
+
"add": "Add variable",
|
|
253
|
+
"edit": "Edit",
|
|
254
|
+
"delete": "Delete",
|
|
255
|
+
"deleteConfirmTitle": "Delete variable",
|
|
256
|
+
"deleteConfirmContent": "Are you sure you want to delete the variable '{{name}}'? This affects the running process.",
|
|
257
|
+
"createdToast": "Variable '{{name}}' created",
|
|
258
|
+
"updatedToast": "Variable '{{name}}' updated",
|
|
259
|
+
"deletedToast": "Variable '{{name}}' deleted",
|
|
260
|
+
"createFailed": "Failed to create variable",
|
|
261
|
+
"updateFailed": "Failed to update variable",
|
|
262
|
+
"deleteFailed": "Failed to delete variable",
|
|
263
|
+
"alreadyExists": "A variable with this name already exists"
|
|
264
|
+
},
|
|
265
|
+
"variableModal": {
|
|
266
|
+
"addTitle": "Add process variable",
|
|
267
|
+
"editTitle": "Edit process variable",
|
|
268
|
+
"name": "Name",
|
|
269
|
+
"type": "Type",
|
|
270
|
+
"value": "Value",
|
|
271
|
+
"invalidJson": "Value is not valid JSON",
|
|
272
|
+
"invalidNumber": "Value is not a valid number",
|
|
273
|
+
"save": "Save",
|
|
274
|
+
"cancel": "Cancel",
|
|
275
|
+
"types": {
|
|
276
|
+
"STRING": "String",
|
|
277
|
+
"INTEGER": "Integer",
|
|
278
|
+
"LONG": "Long",
|
|
279
|
+
"DOUBLE": "Double",
|
|
280
|
+
"BOOLEAN": "Boolean",
|
|
281
|
+
"JSON": "JSON / Object"
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
},
|
|
285
|
+
"logs": {
|
|
286
|
+
"loading": "Loading logs...",
|
|
287
|
+
"empty": "No log entries are stored for this case.",
|
|
288
|
+
"emptyFiltered": "No log entries match the current filters.",
|
|
289
|
+
"filters": {
|
|
290
|
+
"message": "Message contains",
|
|
291
|
+
"messagePlaceholder": "Search message...",
|
|
292
|
+
"level": "Minimum level",
|
|
293
|
+
"levelPlaceholder": "All levels",
|
|
294
|
+
"after": "From",
|
|
295
|
+
"before": "Until",
|
|
296
|
+
"apply": "Apply",
|
|
297
|
+
"reset": "Reset",
|
|
298
|
+
"processInstanceChip": "Process instance",
|
|
299
|
+
"clearProcessInstance": "Clear process filter"
|
|
300
|
+
},
|
|
301
|
+
"columns": {
|
|
302
|
+
"timestamp": "Timestamp",
|
|
303
|
+
"level": "Level",
|
|
304
|
+
"message": "Message"
|
|
305
|
+
},
|
|
306
|
+
"detail": {
|
|
307
|
+
"properties": "Context (MDC)",
|
|
308
|
+
"stacktrace": "Stacktrace"
|
|
309
|
+
}
|
|
310
|
+
},
|
|
311
|
+
"metadata": {
|
|
312
|
+
"loading": "Loading metadata...",
|
|
313
|
+
"documentId": "Document ID",
|
|
314
|
+
"definitionName": "Definition",
|
|
315
|
+
"sequence": "Sequence",
|
|
316
|
+
"version": "Version",
|
|
317
|
+
"createdBy": "Created by",
|
|
318
|
+
"createdOn": "Created on",
|
|
319
|
+
"modifiedOn": "Modified on",
|
|
320
|
+
"assignee": "Assignee",
|
|
321
|
+
"assignedTeam": "Assigned team",
|
|
322
|
+
"internalStatus": "Internal status",
|
|
323
|
+
"tags": "Tags",
|
|
324
|
+
"relations": "Relations",
|
|
325
|
+
"relatedFiles": "Related files",
|
|
326
|
+
"unassigned": "Unassigned",
|
|
327
|
+
"noStatus": "No status",
|
|
328
|
+
"noTags": "No tags",
|
|
329
|
+
"noRelations": "No relations"
|
|
330
|
+
},
|
|
331
|
+
"zgw": {
|
|
332
|
+
"loading": "Loading ZGW information...",
|
|
333
|
+
"empty": "This case is not linked to a zaak.",
|
|
334
|
+
"yes": "Yes",
|
|
335
|
+
"no": "No",
|
|
336
|
+
"zaakUnreachable": {
|
|
337
|
+
"title": "Failed to load zaak",
|
|
338
|
+
"message": "The zaak linked to this case could not be loaded. The link may be stale, the Zaken API plugin may be misconfigured, or the zaak may have been deleted.",
|
|
339
|
+
"details": "Error details"
|
|
340
|
+
},
|
|
341
|
+
"warnings": {
|
|
342
|
+
"title": "Some sections failed to load"
|
|
343
|
+
},
|
|
344
|
+
"actions": {
|
|
345
|
+
"copy": "Copy",
|
|
346
|
+
"openExternal": "Open in external system",
|
|
347
|
+
"resolveContent": "Resolve content",
|
|
348
|
+
"viewLatestContent": "View latest content"
|
|
349
|
+
},
|
|
350
|
+
"zaak": {
|
|
351
|
+
"title": "Zaak",
|
|
352
|
+
"identificatie": "Identificatie",
|
|
353
|
+
"uuid": "UUID",
|
|
354
|
+
"url": "Zaak URL",
|
|
355
|
+
"bronorganisatie": "Bronorganisatie",
|
|
356
|
+
"zaaktype": "Zaaktype",
|
|
357
|
+
"registratiedatum": "Registratiedatum",
|
|
358
|
+
"startdatum": "Startdatum",
|
|
359
|
+
"einddatum": "Einddatum",
|
|
360
|
+
"einddatumGepland": "Einddatum (gepland)",
|
|
361
|
+
"uiterlijkeEinddatumAfdoening": "Uiterlijke einddatum afdoening",
|
|
362
|
+
"vertrouwelijkheidaanduiding": "Vertrouwelijkheidaanduiding",
|
|
363
|
+
"archiefstatus": "Archiefstatus",
|
|
364
|
+
"betalingsindicatie": "Betalingsindicatie",
|
|
365
|
+
"currentStatus": "Current status",
|
|
366
|
+
"currentResultaat": "Current resultaat",
|
|
367
|
+
"noStatus": "No status set",
|
|
368
|
+
"noResultaat": "No resultaat set"
|
|
369
|
+
},
|
|
370
|
+
"eigenschappen": {
|
|
371
|
+
"title": "Eigenschappen",
|
|
372
|
+
"empty": "No eigenschappen for this zaak.",
|
|
373
|
+
"naam": "Naam",
|
|
374
|
+
"waarde": "Waarde",
|
|
375
|
+
"eigenschapUrl": "Eigenschap",
|
|
376
|
+
"zaakeigenschapUrl": "Zaakeigenschap"
|
|
377
|
+
},
|
|
378
|
+
"rollen": {
|
|
379
|
+
"title": "Rollen",
|
|
380
|
+
"empty": "No rollen for this zaak.",
|
|
381
|
+
"betrokkeneType": "Betrokkene type",
|
|
382
|
+
"roltype": "Roltype",
|
|
383
|
+
"identificatie": "Identificatie (BSN / KvK)",
|
|
384
|
+
"indicatieMachtiging": "Indicatie machtiging",
|
|
385
|
+
"url": "Rol URL"
|
|
386
|
+
},
|
|
387
|
+
"statusHistory": {
|
|
388
|
+
"title": "Status history",
|
|
389
|
+
"empty": "No statuses recorded.",
|
|
390
|
+
"datumStatusGezet": "Datum status gezet",
|
|
391
|
+
"statustype": "Statustype",
|
|
392
|
+
"statustoelichting": "Statustoelichting"
|
|
393
|
+
},
|
|
394
|
+
"resultaat": {
|
|
395
|
+
"title": "Resultaat",
|
|
396
|
+
"empty": "No resultaat for this zaak.",
|
|
397
|
+
"resultaattype": "Resultaattype",
|
|
398
|
+
"toelichting": "Toelichting"
|
|
399
|
+
},
|
|
400
|
+
"zaakobjecten": {
|
|
401
|
+
"title": "Zaakobjecten",
|
|
402
|
+
"empty": "No zaakobjecten linked to this zaak.",
|
|
403
|
+
"objectUrl": "Object URL",
|
|
404
|
+
"objectType": "Object type",
|
|
405
|
+
"relatieomschrijving": "Relatieomschrijving",
|
|
406
|
+
"resolveLoading": "Resolving content...",
|
|
407
|
+
"notResolved": "Could not resolve content"
|
|
408
|
+
},
|
|
409
|
+
"zaakinformatieobjecten": {
|
|
410
|
+
"title": "Zaakinformatieobjecten",
|
|
411
|
+
"empty": "No documents linked to this zaak.",
|
|
412
|
+
"titel": "Title",
|
|
413
|
+
"url": "Document URL",
|
|
414
|
+
"registratiedatum": "Registratiedatum"
|
|
415
|
+
},
|
|
416
|
+
"besluiten": {
|
|
417
|
+
"title": "Besluiten",
|
|
418
|
+
"empty": "No besluiten linked to this zaak.",
|
|
419
|
+
"url": "Besluit URL"
|
|
420
|
+
},
|
|
421
|
+
"zaakdetails": {
|
|
422
|
+
"title": "Zaakdetails sync object",
|
|
423
|
+
"notConfigured": "No portal sync configured for this case type.",
|
|
424
|
+
"objectManagementTitle": "Object management configuration",
|
|
425
|
+
"caseDefinitionKey": "Case definition",
|
|
426
|
+
"enabled": "Enabled",
|
|
427
|
+
"objectUrl": "Zaakdetails object URL",
|
|
428
|
+
"linkedToZaak": "Linked to zaak",
|
|
429
|
+
"contentLoading": "Resolving content...",
|
|
430
|
+
"contentNotResolved": "Could not resolve content"
|
|
431
|
+
},
|
|
432
|
+
"rawJson": {
|
|
433
|
+
"title": "Raw zaak JSON"
|
|
434
|
+
}
|
|
435
|
+
}
|
|
436
|
+
}
|
|
173
437
|
},
|
|
174
438
|
"document": {
|
|
175
439
|
"title": {"single": "Document", "plural": "Documents"},
|
|
@@ -995,7 +1259,10 @@
|
|
|
995
1259
|
"collection": {"title": "Collection", "description": "Create a collection"},
|
|
996
1260
|
"divider": {"title": "Divider"},
|
|
997
1261
|
"map": {"title": "Map", "description": "Create a map widget"},
|
|
998
|
-
"person-card": {
|
|
1262
|
+
"person-card": {
|
|
1263
|
+
"title": "Person card",
|
|
1264
|
+
"description": "A person with their key details and contact info"
|
|
1265
|
+
},
|
|
999
1266
|
"metroline": {
|
|
1000
1267
|
"title": "Metroline",
|
|
1001
1268
|
"description": "Show progression as a metroline"
|
|
@@ -2610,6 +2877,14 @@
|
|
|
2610
2877
|
"openInNewTab": "Open in new tab"
|
|
2611
2878
|
}
|
|
2612
2879
|
},
|
|
2880
|
+
"widgetLayout": {
|
|
2881
|
+
"label": "Layout algorithm",
|
|
2882
|
+
"muuriGapFree": "Default (less gaps)",
|
|
2883
|
+
"muuri": "Default",
|
|
2884
|
+
"beautiful": "Gap free",
|
|
2885
|
+
"infoTitle": "About the layout algorithm",
|
|
2886
|
+
"info": "Default and Default (less gaps) keep the widgets in their configured order as much as possible, which can leave empty gaps. Gap free may reorder widgets within a section to remove those gaps and almost always shows a clean layout without holes."
|
|
2887
|
+
},
|
|
2613
2888
|
"ikoManagement": {
|
|
2614
2889
|
"preparingDownload": "Preparing download",
|
|
2615
2890
|
"ikoServer": "IKO Server",
|
package/assets/core/nl.json
CHANGED
|
@@ -172,7 +172,271 @@
|
|
|
172
172
|
"noFormSpecified": "Voor dit tabblad is geen formulierdefinitie opgegeven.",
|
|
173
173
|
"formNotFound": "De formulierdefinitie '{{formDefinitionName}}' kan niet worden gevonden."
|
|
174
174
|
},
|
|
175
|
-
"rowLocked": "Je hebt geen toegang tot dit dossier"
|
|
175
|
+
"rowLocked": "Je hebt geen toegang tot dit dossier",
|
|
176
|
+
"inspection": {
|
|
177
|
+
"openInspector": "Dossier inspecteren",
|
|
178
|
+
"pageTitle": "Dossier inspectie",
|
|
179
|
+
"placeholder": "Dit tabblad wordt in een latere fase ingevuld.",
|
|
180
|
+
"tabs": {
|
|
181
|
+
"document": "Document",
|
|
182
|
+
"processes": "Processen",
|
|
183
|
+
"buildingBlocks": "Bouwblokken",
|
|
184
|
+
"logs": "Logs",
|
|
185
|
+
"zgw": "ZGW",
|
|
186
|
+
"metadata": "Metadata"
|
|
187
|
+
},
|
|
188
|
+
"document": {
|
|
189
|
+
"loading": "Document laden...",
|
|
190
|
+
"saved": "Document bijgewerkt"
|
|
191
|
+
},
|
|
192
|
+
"buildingBlocks": {
|
|
193
|
+
"loading": "Bouwblokken laden...",
|
|
194
|
+
"emptyTitle": "Geen bouwblokken",
|
|
195
|
+
"empty": "Dit dossier heeft geen bouwblok-instanties.",
|
|
196
|
+
"notEnabled": "Bouwblokken zijn niet ingeschakeld voor deze Valtimo-installatie.",
|
|
197
|
+
"saved": "Bouwblok-document bijgewerkt",
|
|
198
|
+
"listAriaLabel": "Bouwblokken",
|
|
199
|
+
"detail": {
|
|
200
|
+
"instanceId": "Instantie-ID",
|
|
201
|
+
"documentId": "Document-ID",
|
|
202
|
+
"processInstance": "Procesinstantie",
|
|
203
|
+
"parent": "Parent",
|
|
204
|
+
"content": "Documentinhoud",
|
|
205
|
+
"loading": "Bouwblok laden..."
|
|
206
|
+
}
|
|
207
|
+
},
|
|
208
|
+
"processes": {
|
|
209
|
+
"loading": "Processen laden...",
|
|
210
|
+
"empty": "Er zijn geen procesinstanties gekoppeld aan dit dossier.",
|
|
211
|
+
"listAriaLabel": "Procesinstanties",
|
|
212
|
+
"buildingBlockTag": "Bouwblok",
|
|
213
|
+
"buildingBlockTagTooltip": "Dit proces hoort bij een bouwblok",
|
|
214
|
+
"instanceId": "Instantie-ID",
|
|
215
|
+
"buildingBlock": "Bouwblok",
|
|
216
|
+
"detailsTab": "Details",
|
|
217
|
+
"diagramTab": "Diagram",
|
|
218
|
+
"version": "Versie",
|
|
219
|
+
"active": "Actief",
|
|
220
|
+
"completed": "Afgerond",
|
|
221
|
+
"incidentsHeader": "Incidenten",
|
|
222
|
+
"incidentTooltip": "Actieve incidenten op deze instantie",
|
|
223
|
+
"incidentType": "Type",
|
|
224
|
+
"activity": "Activiteit",
|
|
225
|
+
"message": "Bericht",
|
|
226
|
+
"timestamp": "Tijdstip",
|
|
227
|
+
"tasksHeader": "Taken",
|
|
228
|
+
"taskName": "Taak",
|
|
229
|
+
"taskAssignee": "Behandelaar",
|
|
230
|
+
"taskCreated": "Aangemaakt",
|
|
231
|
+
"noTasks": "Geen actieve taken.",
|
|
232
|
+
"variablesHeader": "Variabelen",
|
|
233
|
+
"variableName": "Naam",
|
|
234
|
+
"variableType": "Type",
|
|
235
|
+
"variableValue": "Waarde",
|
|
236
|
+
"noVariables": "Geen variabelen.",
|
|
237
|
+
"jobsHeader": "Jobs",
|
|
238
|
+
"jobType": "Type",
|
|
239
|
+
"jobActivity": "Activiteit",
|
|
240
|
+
"jobRetries": "Pogingen over",
|
|
241
|
+
"jobDueDate": "Vervaldatum",
|
|
242
|
+
"jobException": "Foutmelding",
|
|
243
|
+
"jobTypeLabel": {
|
|
244
|
+
"TIMER": "Timer",
|
|
245
|
+
"ASYNC_CONTINUATION": "Asynchrone continuatie",
|
|
246
|
+
"MESSAGE": "Bericht",
|
|
247
|
+
"BATCH": "Batch",
|
|
248
|
+
"OTHER": "Anders"
|
|
249
|
+
},
|
|
250
|
+
"noJobs": "Geen jobs.",
|
|
251
|
+
"startedBy": "Gestart door",
|
|
252
|
+
"startedOn": "Gestart op",
|
|
253
|
+
"viewLogs": "Logs bekijken",
|
|
254
|
+
"variableActions": {
|
|
255
|
+
"add": "Variabele toevoegen",
|
|
256
|
+
"edit": "Bewerken",
|
|
257
|
+
"delete": "Verwijderen",
|
|
258
|
+
"deleteConfirmTitle": "Variabele verwijderen",
|
|
259
|
+
"deleteConfirmContent": "Weet je zeker dat je de variabele '{{name}}' wil verwijderen? Dit heeft effect op het lopende proces.",
|
|
260
|
+
"createdToast": "Variabele '{{name}}' toegevoegd",
|
|
261
|
+
"updatedToast": "Variabele '{{name}}' bijgewerkt",
|
|
262
|
+
"deletedToast": "Variabele '{{name}}' verwijderd",
|
|
263
|
+
"createFailed": "Toevoegen van variabele mislukt",
|
|
264
|
+
"updateFailed": "Bijwerken van variabele mislukt",
|
|
265
|
+
"deleteFailed": "Verwijderen van variabele mislukt",
|
|
266
|
+
"alreadyExists": "Er bestaat al een variabele met deze naam"
|
|
267
|
+
},
|
|
268
|
+
"variableModal": {
|
|
269
|
+
"addTitle": "Procesvariabele toevoegen",
|
|
270
|
+
"editTitle": "Procesvariabele bewerken",
|
|
271
|
+
"name": "Naam",
|
|
272
|
+
"type": "Type",
|
|
273
|
+
"value": "Waarde",
|
|
274
|
+
"invalidJson": "Waarde is geen geldige JSON",
|
|
275
|
+
"invalidNumber": "Waarde is geen geldig getal",
|
|
276
|
+
"save": "Opslaan",
|
|
277
|
+
"cancel": "Annuleren",
|
|
278
|
+
"types": {
|
|
279
|
+
"STRING": "Tekst",
|
|
280
|
+
"INTEGER": "Geheel getal",
|
|
281
|
+
"LONG": "Long",
|
|
282
|
+
"DOUBLE": "Decimaal getal",
|
|
283
|
+
"BOOLEAN": "Boolean",
|
|
284
|
+
"JSON": "JSON / Object"
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
},
|
|
288
|
+
"logs": {
|
|
289
|
+
"loading": "Logs laden...",
|
|
290
|
+
"empty": "Er zijn geen logregels opgeslagen voor dit dossier.",
|
|
291
|
+
"emptyFiltered": "Geen logregels die aan de huidige filters voldoen.",
|
|
292
|
+
"filters": {
|
|
293
|
+
"message": "Bericht bevat",
|
|
294
|
+
"messagePlaceholder": "Zoek in bericht...",
|
|
295
|
+
"level": "Minimaal niveau",
|
|
296
|
+
"levelPlaceholder": "Alle niveaus",
|
|
297
|
+
"after": "Vanaf",
|
|
298
|
+
"before": "Tot",
|
|
299
|
+
"apply": "Toepassen",
|
|
300
|
+
"reset": "Reset",
|
|
301
|
+
"processInstanceChip": "Procesinstantie",
|
|
302
|
+
"clearProcessInstance": "Procesfilter wissen"
|
|
303
|
+
},
|
|
304
|
+
"columns": {
|
|
305
|
+
"timestamp": "Tijdstip",
|
|
306
|
+
"level": "Niveau",
|
|
307
|
+
"message": "Bericht"
|
|
308
|
+
},
|
|
309
|
+
"detail": {
|
|
310
|
+
"properties": "Context (MDC)",
|
|
311
|
+
"stacktrace": "Stacktrace"
|
|
312
|
+
}
|
|
313
|
+
},
|
|
314
|
+
"metadata": {
|
|
315
|
+
"loading": "Metadata laden...",
|
|
316
|
+
"documentId": "Document ID",
|
|
317
|
+
"definitionName": "Definitie",
|
|
318
|
+
"sequence": "Volgnummer",
|
|
319
|
+
"version": "Versie",
|
|
320
|
+
"createdBy": "Aangemaakt door",
|
|
321
|
+
"createdOn": "Aangemaakt op",
|
|
322
|
+
"modifiedOn": "Gewijzigd op",
|
|
323
|
+
"assignee": "Behandelaar",
|
|
324
|
+
"assignedTeam": "Toegewezen team",
|
|
325
|
+
"internalStatus": "Interne status",
|
|
326
|
+
"tags": "Tags",
|
|
327
|
+
"relations": "Relaties",
|
|
328
|
+
"relatedFiles": "Gerelateerde bestanden",
|
|
329
|
+
"unassigned": "Niet toegewezen",
|
|
330
|
+
"noStatus": "Geen status",
|
|
331
|
+
"noTags": "Geen tags",
|
|
332
|
+
"noRelations": "Geen relaties"
|
|
333
|
+
},
|
|
334
|
+
"zgw": {
|
|
335
|
+
"loading": "ZGW-informatie laden...",
|
|
336
|
+
"empty": "Dit dossier is niet gekoppeld aan een zaak.",
|
|
337
|
+
"yes": "Ja",
|
|
338
|
+
"no": "Nee",
|
|
339
|
+
"zaakUnreachable": {
|
|
340
|
+
"title": "Zaak laden mislukt",
|
|
341
|
+
"message": "De zaak die aan dit dossier is gekoppeld kon niet geladen worden. De koppeling kan verouderd zijn, de Zaken API-plugin kan verkeerd geconfigureerd zijn, of de zaak is verwijderd.",
|
|
342
|
+
"details": "Foutdetails"
|
|
343
|
+
},
|
|
344
|
+
"warnings": {
|
|
345
|
+
"title": "Enkele secties konden niet geladen worden"
|
|
346
|
+
},
|
|
347
|
+
"actions": {
|
|
348
|
+
"copy": "Kopiëren",
|
|
349
|
+
"openExternal": "Openen in extern systeem",
|
|
350
|
+
"resolveContent": "Inhoud ophalen",
|
|
351
|
+
"viewLatestContent": "Laatste inhoud bekijken"
|
|
352
|
+
},
|
|
353
|
+
"zaak": {
|
|
354
|
+
"title": "Zaak",
|
|
355
|
+
"identificatie": "Identificatie",
|
|
356
|
+
"uuid": "UUID",
|
|
357
|
+
"url": "Zaak-URL",
|
|
358
|
+
"bronorganisatie": "Bronorganisatie",
|
|
359
|
+
"zaaktype": "Zaaktype",
|
|
360
|
+
"registratiedatum": "Registratiedatum",
|
|
361
|
+
"startdatum": "Startdatum",
|
|
362
|
+
"einddatum": "Einddatum",
|
|
363
|
+
"einddatumGepland": "Einddatum (gepland)",
|
|
364
|
+
"uiterlijkeEinddatumAfdoening": "Uiterlijke einddatum afdoening",
|
|
365
|
+
"vertrouwelijkheidaanduiding": "Vertrouwelijkheidaanduiding",
|
|
366
|
+
"archiefstatus": "Archiefstatus",
|
|
367
|
+
"betalingsindicatie": "Betalingsindicatie",
|
|
368
|
+
"currentStatus": "Huidige status",
|
|
369
|
+
"currentResultaat": "Huidig resultaat",
|
|
370
|
+
"noStatus": "Geen status ingesteld",
|
|
371
|
+
"noResultaat": "Geen resultaat ingesteld"
|
|
372
|
+
},
|
|
373
|
+
"eigenschappen": {
|
|
374
|
+
"title": "Eigenschappen",
|
|
375
|
+
"empty": "Geen eigenschappen voor deze zaak.",
|
|
376
|
+
"naam": "Naam",
|
|
377
|
+
"waarde": "Waarde",
|
|
378
|
+
"eigenschapUrl": "Eigenschap",
|
|
379
|
+
"zaakeigenschapUrl": "Zaakeigenschap"
|
|
380
|
+
},
|
|
381
|
+
"rollen": {
|
|
382
|
+
"title": "Rollen",
|
|
383
|
+
"empty": "Geen rollen voor deze zaak.",
|
|
384
|
+
"betrokkeneType": "Type betrokkene",
|
|
385
|
+
"roltype": "Roltype",
|
|
386
|
+
"identificatie": "Identificatie (BSN / KvK)",
|
|
387
|
+
"indicatieMachtiging": "Indicatie machtiging",
|
|
388
|
+
"url": "Rol-URL"
|
|
389
|
+
},
|
|
390
|
+
"statusHistory": {
|
|
391
|
+
"title": "Statusgeschiedenis",
|
|
392
|
+
"empty": "Geen statussen geregistreerd.",
|
|
393
|
+
"datumStatusGezet": "Datum status gezet",
|
|
394
|
+
"statustype": "Statustype",
|
|
395
|
+
"statustoelichting": "Statustoelichting"
|
|
396
|
+
},
|
|
397
|
+
"resultaat": {
|
|
398
|
+
"title": "Resultaat",
|
|
399
|
+
"empty": "Geen resultaat voor deze zaak.",
|
|
400
|
+
"resultaattype": "Resultaattype",
|
|
401
|
+
"toelichting": "Toelichting"
|
|
402
|
+
},
|
|
403
|
+
"zaakobjecten": {
|
|
404
|
+
"title": "Zaakobjecten",
|
|
405
|
+
"empty": "Geen zaakobjecten gekoppeld aan deze zaak.",
|
|
406
|
+
"objectUrl": "Object-URL",
|
|
407
|
+
"objectType": "Objecttype",
|
|
408
|
+
"relatieomschrijving": "Relatieomschrijving",
|
|
409
|
+
"resolveLoading": "Inhoud ophalen...",
|
|
410
|
+
"notResolved": "Kan inhoud niet ophalen"
|
|
411
|
+
},
|
|
412
|
+
"zaakinformatieobjecten": {
|
|
413
|
+
"title": "Zaakinformatieobjecten",
|
|
414
|
+
"empty": "Geen documenten gekoppeld aan deze zaak.",
|
|
415
|
+
"titel": "Titel",
|
|
416
|
+
"url": "Document-URL",
|
|
417
|
+
"registratiedatum": "Registratiedatum"
|
|
418
|
+
},
|
|
419
|
+
"besluiten": {
|
|
420
|
+
"title": "Besluiten",
|
|
421
|
+
"empty": "Geen besluiten gekoppeld aan deze zaak.",
|
|
422
|
+
"url": "Besluit-URL"
|
|
423
|
+
},
|
|
424
|
+
"zaakdetails": {
|
|
425
|
+
"title": "Zaakdetails sync-object",
|
|
426
|
+
"notConfigured": "Geen portaal-synchronisatie geconfigureerd voor dit zaaktype.",
|
|
427
|
+
"objectManagementTitle": "Objectbeheer-configuratie",
|
|
428
|
+
"caseDefinitionKey": "Dossierdefinitie",
|
|
429
|
+
"enabled": "Ingeschakeld",
|
|
430
|
+
"objectUrl": "Zaakdetails object-URL",
|
|
431
|
+
"linkedToZaak": "Gekoppeld aan zaak",
|
|
432
|
+
"contentLoading": "Inhoud ophalen...",
|
|
433
|
+
"contentNotResolved": "Kan inhoud niet ophalen"
|
|
434
|
+
},
|
|
435
|
+
"rawJson": {
|
|
436
|
+
"title": "Ruwe zaak-JSON"
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
}
|
|
176
440
|
},
|
|
177
441
|
"document": {
|
|
178
442
|
"title": {"single": "Document", "plural": "Document's"},
|
|
@@ -1014,7 +1278,10 @@
|
|
|
1014
1278
|
"collection": {"title": "Collectie", "description": "Maak een collectie aan"},
|
|
1015
1279
|
"divider": {"title": "Scheidingslijn"},
|
|
1016
1280
|
"map": {"title": "Kaart", "description": "Maak een kaart widget aan"},
|
|
1017
|
-
"person-card": {
|
|
1281
|
+
"person-card": {
|
|
1282
|
+
"title": "Persoonskaart",
|
|
1283
|
+
"description": "Een persoon met de belangrijkste gegevens en contactinformatie"
|
|
1284
|
+
},
|
|
1018
1285
|
"metroline": {
|
|
1019
1286
|
"title": "Metrolijn",
|
|
1020
1287
|
"description": "Toon de voortgang van een zaak als een metrolijn"
|
|
@@ -2643,6 +2910,14 @@
|
|
|
2643
2910
|
"openInNewTab": "Open in nieuw tabblad"
|
|
2644
2911
|
}
|
|
2645
2912
|
},
|
|
2913
|
+
"widgetLayout": {
|
|
2914
|
+
"label": "Lay-out algoritme",
|
|
2915
|
+
"muuriGapFree": "Standaard (minder witruimtes)",
|
|
2916
|
+
"muuri": "Standaard",
|
|
2917
|
+
"beautiful": "Witruimtevrij",
|
|
2918
|
+
"infoTitle": "Over het lay-out algoritme",
|
|
2919
|
+
"info": "Standaard en Standaard (minder witruimtes) houden de widgets zoveel mogelijk in de ingestelde volgorde, wat witruimtes kan opleveren. Witruimtevrij kan widgets binnen een sectie herordenen om die witruimtes te verwijderen en toont vrijwel altijd een nette lay-out zonder witruimtes."
|
|
2920
|
+
},
|
|
2646
2921
|
"ikoManagement": {
|
|
2647
2922
|
"preparingDownload": "Download aan het voorbereiden",
|
|
2648
2923
|
"title": "Configuratie",
|