@valtimo/shared 13.35.0 → 13.36.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/core/en.json +128 -19
- package/assets/core/nl.json +128 -19
- package/fesm2022/valtimo-shared.mjs +172 -20
- package/fesm2022/valtimo-shared.mjs.map +1 -1
- package/lib/components/carousel/carousel.component.d.ts +30 -0
- package/lib/components/carousel/carousel.component.d.ts.map +1 -0
- package/lib/generated/generated-backend-types.d.ts +34 -0
- package/lib/generated/generated-backend-types.d.ts.map +1 -1
- package/lib/guards/index.d.ts +2 -0
- package/lib/guards/index.d.ts.map +1 -0
- package/lib/guards/zgw-features.guard.d.ts +3 -0
- package/lib/guards/zgw-features.guard.d.ts.map +1 -0
- package/lib/models/config.d.ts +1 -0
- package/lib/models/config.d.ts.map +1 -1
- package/lib/models/menu-item.model.d.ts +3 -2
- package/lib/models/menu-item.model.d.ts.map +1 -1
- package/lib/services/menu-include.service.d.ts +5 -0
- package/lib/services/menu-include.service.d.ts.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/public-api.d.ts.map +1 -1
package/assets/core/en.json
CHANGED
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
},
|
|
47
47
|
"draftProcessConfirmation": {
|
|
48
48
|
"title": "Start draft process",
|
|
49
|
+
"content": "Are you sure you want to start this draft process?",
|
|
49
50
|
"warningTitle": "Warning: Draft process",
|
|
50
51
|
"warningDescription": "This process definition is still in draft and may not work as expected.",
|
|
51
52
|
"confirm": "Start anyway",
|
|
@@ -723,6 +724,7 @@
|
|
|
723
724
|
},
|
|
724
725
|
"message": {"empty": "No result found"},
|
|
725
726
|
"cta": {"close": "Close", "moreDetails": "More details"},
|
|
727
|
+
"carousel": {"previous": "Previous", "next": "Next", "goToSlide": "Go to slide"},
|
|
726
728
|
"formManagement": {
|
|
727
729
|
"noFormDefinitionFoundAdmin": "There is no form connected to the start event/user task. To configure this, click on the button below.",
|
|
728
730
|
"noFormDefinitionFoundUser": "There is no form connected to the start event/user task. Ask an admin user for assistance.",
|
|
@@ -1296,6 +1298,10 @@
|
|
|
1296
1298
|
"title": "Highlight",
|
|
1297
1299
|
"description": "A small widget that highlights a single value or a count"
|
|
1298
1300
|
},
|
|
1301
|
+
"image": {
|
|
1302
|
+
"title": "Image",
|
|
1303
|
+
"description": "Show an uploaded image"
|
|
1304
|
+
},
|
|
1299
1305
|
"generic": {
|
|
1300
1306
|
"title": "Generic widgets",
|
|
1301
1307
|
"description": "Broadly applicable — wire them up to any data structure (fields, tables, collections). More configuration, but no limits on what they can show."
|
|
@@ -1484,6 +1490,13 @@
|
|
|
1484
1490
|
"valuePlaceholder": "Select or type a path",
|
|
1485
1491
|
"valueHelper": "Shows the value at this path. If it resolves to an array, the count of items is shown instead.",
|
|
1486
1492
|
"accentColor": "Accent color"
|
|
1493
|
+
},
|
|
1494
|
+
"image": {
|
|
1495
|
+
"description": "",
|
|
1496
|
+
"value": "Value",
|
|
1497
|
+
"valuePlaceholder": "Select or type a path",
|
|
1498
|
+
"valueHelper": "Shows the image stored at this path. The path must resolve to an uploaded file resource.",
|
|
1499
|
+
"displayAsCarousel": "Display as carousel"
|
|
1487
1500
|
}
|
|
1488
1501
|
},
|
|
1489
1502
|
"filters": {
|
|
@@ -1825,14 +1838,14 @@
|
|
|
1825
1838
|
"canInitializeDocument": "Starts case",
|
|
1826
1839
|
"startableByUser": "Startable by user",
|
|
1827
1840
|
"expressionErrors": {
|
|
1828
|
-
"MISSING_EL_MARKERS": "Expression must use ${...} or #{...} syntax",
|
|
1829
|
-
"UNCLOSED_PARENTHESIS": "Expression has an unclosed parenthesis '('",
|
|
1830
|
-
"UNCLOSED_BRACE": "Expression is missing a closing brace '}'",
|
|
1831
|
-
"UNCLOSED_BRACKET": "Expression has an unclosed bracket '['",
|
|
1832
|
-
"MISMATCHED_DELIMITER": "Expression has mismatched brackets or braces",
|
|
1833
|
-
"INCOMPLETE_EXPRESSION": "Expression is incomplete",
|
|
1834
|
-
"INVALID_SYNTAX": "Expression has invalid syntax",
|
|
1835
|
-
"BEAN_NOT_FOUND": "
|
|
1841
|
+
"MISSING_EL_MARKERS": "Expression {{expression}} must use ${...} or #{...} syntax",
|
|
1842
|
+
"UNCLOSED_PARENTHESIS": "Expression {{expression}} has an unclosed parenthesis '('",
|
|
1843
|
+
"UNCLOSED_BRACE": "Expression {{expression}} is missing a closing brace '}'",
|
|
1844
|
+
"UNCLOSED_BRACKET": "Expression {{expression}} has an unclosed bracket '['",
|
|
1845
|
+
"MISMATCHED_DELIMITER": "Expression {{expression}} has mismatched brackets or braces",
|
|
1846
|
+
"INCOMPLETE_EXPRESSION": "Expression {{expression}} is incomplete",
|
|
1847
|
+
"INVALID_SYNTAX": "Expression {{expression}} has invalid syntax",
|
|
1848
|
+
"BEAN_NOT_FOUND": "No bean found with this name: {{expression}}. If using a process variable, ensure it exists at runtime"
|
|
1836
1849
|
},
|
|
1837
1850
|
"warningConfirmation": {
|
|
1838
1851
|
"title": "Process has warnings",
|
|
@@ -2548,6 +2561,9 @@
|
|
|
2548
2561
|
"key": "Role key",
|
|
2549
2562
|
"add": "Add new role",
|
|
2550
2563
|
"name": "Role name",
|
|
2564
|
+
"selectRole": "Select a role",
|
|
2565
|
+
"chooseFromList": "Choose from list",
|
|
2566
|
+
"enterManually": "Enter manually",
|
|
2551
2567
|
"deleteModalContent": "Are you sure you want to delete these roles and all underlying permissions? This action cannot be undone.",
|
|
2552
2568
|
"editMetadata": "Edit metadata",
|
|
2553
2569
|
"editRole": "Edit Role",
|
|
@@ -2561,6 +2577,7 @@
|
|
|
2561
2577
|
},
|
|
2562
2578
|
"tabs": {
|
|
2563
2579
|
"summary": "Summary",
|
|
2580
|
+
"editor": "Editor",
|
|
2564
2581
|
"jsonEditor": "JSON editor"
|
|
2565
2582
|
}
|
|
2566
2583
|
},
|
|
@@ -2587,16 +2604,32 @@
|
|
|
2587
2604
|
"operatonTask": "Task"
|
|
2588
2605
|
},
|
|
2589
2606
|
"actions": {
|
|
2590
|
-
"view": "
|
|
2591
|
-
"view_list": "
|
|
2592
|
-
"create": "
|
|
2593
|
-
"modify": "
|
|
2594
|
-
"delete": "
|
|
2595
|
-
"assign": "
|
|
2596
|
-
"assignable": "
|
|
2597
|
-
"claim": "
|
|
2598
|
-
"complete": "
|
|
2599
|
-
"export": "
|
|
2607
|
+
"view": "View",
|
|
2608
|
+
"view_list": "View list",
|
|
2609
|
+
"create": "Create",
|
|
2610
|
+
"modify": "Modify",
|
|
2611
|
+
"delete": "Delete",
|
|
2612
|
+
"assign": "Assign",
|
|
2613
|
+
"assignable": "Be assigned to",
|
|
2614
|
+
"claim": "Claim",
|
|
2615
|
+
"complete": "Complete",
|
|
2616
|
+
"export": "Export",
|
|
2617
|
+
"inspect": "Inspect",
|
|
2618
|
+
"inspect_modify": "Inspect and modify"
|
|
2619
|
+
},
|
|
2620
|
+
"actionDescriptions": {
|
|
2621
|
+
"view": "Open and read a single resource.",
|
|
2622
|
+
"view_list": "See the resource in lists and search results.",
|
|
2623
|
+
"create": "Create a new resource.",
|
|
2624
|
+
"modify": "Change an existing resource.",
|
|
2625
|
+
"delete": "Permanently remove a resource.",
|
|
2626
|
+
"assign": "Assign the resource to a user.",
|
|
2627
|
+
"assignable": "Be selectable as the assignee of the resource.",
|
|
2628
|
+
"claim": "Claim the resource to work on it yourself.",
|
|
2629
|
+
"complete": "Mark the resource as completed.",
|
|
2630
|
+
"export": "Export the resource's data.",
|
|
2631
|
+
"inspect": "View the resource's details without changing it.",
|
|
2632
|
+
"inspect_modify": "View the resource's details and change it."
|
|
2600
2633
|
},
|
|
2601
2634
|
"filter": {
|
|
2602
2635
|
"resourceType": "Resource type",
|
|
@@ -2604,6 +2637,77 @@
|
|
|
2604
2637
|
"allResourceTypes": "All resource types",
|
|
2605
2638
|
"allActions": "All actions"
|
|
2606
2639
|
},
|
|
2640
|
+
"editor": {
|
|
2641
|
+
"permission": "Permission",
|
|
2642
|
+
"permissions": "Permissions",
|
|
2643
|
+
"newPermission": "New permission",
|
|
2644
|
+
"hasConditions": "Conditions",
|
|
2645
|
+
"hasContext": "Context",
|
|
2646
|
+
"preview": {
|
|
2647
|
+
"actions": "Actions",
|
|
2648
|
+
"includes": "Includes"
|
|
2649
|
+
},
|
|
2650
|
+
"addPermission": "Add permission",
|
|
2651
|
+
"removePermission": "Remove permission",
|
|
2652
|
+
"removePermissionModal": {
|
|
2653
|
+
"title": "Remove permission?",
|
|
2654
|
+
"content": "This permission is removed from the list. It is not actually deleted until you save the whole set of permissions."
|
|
2655
|
+
},
|
|
2656
|
+
"resourceAndActions": "Resource & actions",
|
|
2657
|
+
"resourceActionsHint": "Choose the resource this permission applies to and the actions it grants.",
|
|
2658
|
+
"permissionsHint": "You're configuring a permission on {{resource}} for the {{role}} role. Only options the system supports can be selected.",
|
|
2659
|
+
"permissionsHintNew": "You're configuring a permission for the {{role}} role. Only options the system supports can be selected.",
|
|
2660
|
+
"resourceType": "Resource type",
|
|
2661
|
+
"resourceTypePlaceholder": "Select a resource type",
|
|
2662
|
+
"actions": "Allowed actions",
|
|
2663
|
+
"noActions": "No actions are available for this resource type.",
|
|
2664
|
+
"conditions": "Conditions",
|
|
2665
|
+
"conditionsHint": "Access is only granted when all conditions are met. Leave empty to always grant access.",
|
|
2666
|
+
"conditionType": "Condition type",
|
|
2667
|
+
"conditionTypes": {
|
|
2668
|
+
"field": "Field",
|
|
2669
|
+
"expression": "JSON field",
|
|
2670
|
+
"container": "Related resource"
|
|
2671
|
+
},
|
|
2672
|
+
"field": "Field to read from",
|
|
2673
|
+
"fieldPlaceholder": "Select a field",
|
|
2674
|
+
"operator": "Operator to compare with",
|
|
2675
|
+
"value": "Value to compare to",
|
|
2676
|
+
"valuePlaceholder": "e.g. null, true, 42, ${currentUserId} or [\"OPEN\", \"CLOSED\"]",
|
|
2677
|
+
"path": "JSON path",
|
|
2678
|
+
"pathPlaceholder": "e.g. /root/status",
|
|
2679
|
+
"clazz": "Value type (class)",
|
|
2680
|
+
"clazzPlaceholder": "e.g. java.lang.String",
|
|
2681
|
+
"valueTypeFromList": "Choose from list",
|
|
2682
|
+
"valueTypeManual": "Enter manually",
|
|
2683
|
+
"relatedResource": "Related resource",
|
|
2684
|
+
"relatedResourcePlaceholder": "Select a related resource",
|
|
2685
|
+
"addCondition": "Add condition",
|
|
2686
|
+
"contextSection": "Context",
|
|
2687
|
+
"contextHint": "Choose whether and how context affects this permission.",
|
|
2688
|
+
"contextModeNone": "No restriction",
|
|
2689
|
+
"contextModeNoContext": "Only without context",
|
|
2690
|
+
"contextModeSpecific": "Specific context",
|
|
2691
|
+
"noContextHint": "This permission only applies when the resource is accessed on its own — not within any related resource.",
|
|
2692
|
+
"contextResourceType": "Context resource",
|
|
2693
|
+
"contextResourceTypePlaceholder": "Select a context resource",
|
|
2694
|
+
"empty": {
|
|
2695
|
+
"title": "No permissions yet",
|
|
2696
|
+
"message": "Add a permission to start granting this role access to resources."
|
|
2697
|
+
},
|
|
2698
|
+
"tooltips": {
|
|
2699
|
+
"resourceType": "The type of resource this permission grants access to. For example: a case definition, document or task.",
|
|
2700
|
+
"actions": "What this role is allowed to do with the resource. For example: view, modify or delete. At least one must be selected.",
|
|
2701
|
+
"conditionType": "Field compares a property of the resource. JSON field reads a value at a JSON path inside the field's JSON content. Related resource checks a linked resource (e.g. the document of a case).",
|
|
2702
|
+
"field": "A property of the resource to check. For example: name, createdBy or active.",
|
|
2703
|
+
"operator": "How the field is compared to the value. For example: equals, is one of, or contains.",
|
|
2704
|
+
"value": "The value to compare against — e.g. text like OPEN, a number like 42, true/false, or one of the supported placeholders: ${currentUserId}, ${currentUsername}, ${currentUserEmail}, ${currentUserRoles}, ${currentUserTeams}. For the 'is one of' and 'contains' operators, enter a JSON array such as [\"OPEN\", \"CLOSED\"]. Type null for no value — the field may not be left empty.",
|
|
2705
|
+
"path": "A JSON path into the content of the field chosen in 'Field to read from'. For example: /root/status or /aanvrager/bsn.",
|
|
2706
|
+
"clazz": "The fully-qualified Java type of the value. For example: java.lang.String or java.lang.Boolean.",
|
|
2707
|
+
"relatedResource": "The linked resource to evaluate the nested conditions against. For example: the document attached to a case.",
|
|
2708
|
+
"contextResourceType": "Only grant this permission when the resource is accessed within another resource. For example: documents within a specific case definition."
|
|
2709
|
+
}
|
|
2710
|
+
},
|
|
2607
2711
|
"overview": {
|
|
2608
2712
|
"canDo": "Can",
|
|
2609
2713
|
"can": "can",
|
|
@@ -2616,7 +2720,7 @@
|
|
|
2616
2720
|
"where": "where",
|
|
2617
2721
|
"atJsonPath": "at JSON path",
|
|
2618
2722
|
"inContextOf": "in the context of",
|
|
2619
|
-
"noContext": "
|
|
2723
|
+
"noContext": "Without context",
|
|
2620
2724
|
"customField": "(custom field)",
|
|
2621
2725
|
"customResource": "(custom resource)",
|
|
2622
2726
|
"noAccess": "No access",
|
|
@@ -2897,6 +3001,11 @@
|
|
|
2897
3001
|
"noWidgetsDescription": "There are no widgets configured for this tab, or you don't have the rights to view them.",
|
|
2898
3002
|
"noWidget": "Widget not found",
|
|
2899
3003
|
"noCustomComponentDescription": "The custom component configured for this widget is not available.",
|
|
3004
|
+
"image": {
|
|
3005
|
+
"noImage": "No image found",
|
|
3006
|
+
"openInNewTab": "Open in new tab",
|
|
3007
|
+
"download": "Download"
|
|
3008
|
+
},
|
|
2900
3009
|
"map": {
|
|
2901
3010
|
"title": "Map"
|
|
2902
3011
|
},
|
package/assets/core/nl.json
CHANGED
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
},
|
|
47
47
|
"draftProcessConfirmation": {
|
|
48
48
|
"title": "Concept-proces starten",
|
|
49
|
+
"content": "Weet je zeker dat je dit concept-proces wilt starten?",
|
|
49
50
|
"warningTitle": "Waarschuwing: Concept-proces",
|
|
50
51
|
"warningDescription": "Deze procesdefinitie is nog in concept en werkt mogelijk niet zoals verwacht.",
|
|
51
52
|
"confirm": "Toch starten",
|
|
@@ -726,6 +727,7 @@
|
|
|
726
727
|
},
|
|
727
728
|
"message": {"empty": "Geen resultaat gevonden"},
|
|
728
729
|
"cta": {"close": "Sluiten", "moreDetails": "Meer details"},
|
|
730
|
+
"carousel": {"previous": "Vorige", "next": "Volgende", "goToSlide": "Ga naar dia"},
|
|
729
731
|
"formManagement": {
|
|
730
732
|
"noFormDefinitionFoundAdmin": "Er is geen formulier gekoppeld aan de start event/user task. Druk op de knop om deze te configureren.",
|
|
731
733
|
"noFormDefinitionFoundUser": "Er is geen formulier gekoppeld aan de start event/user task. Vraag een beheerder om hulp.",
|
|
@@ -1315,6 +1317,10 @@
|
|
|
1315
1317
|
"title": "Markering",
|
|
1316
1318
|
"description": "Een kleine widget die één waarde of een aantal benadrukt"
|
|
1317
1319
|
},
|
|
1320
|
+
"image": {
|
|
1321
|
+
"title": "Afbeelding",
|
|
1322
|
+
"description": "Toon een geüploade afbeelding"
|
|
1323
|
+
},
|
|
1318
1324
|
"generic": {
|
|
1319
1325
|
"title": "Generieke widgets",
|
|
1320
1326
|
"description": "Breed toepasbaar — koppel ze aan elke gegevensstructuur (velden, tabellen, collecties). Meer configuratie, maar geen beperkingen op wat ze kunnen tonen."
|
|
@@ -1509,6 +1515,13 @@
|
|
|
1509
1515
|
"valuePlaceholder": "Selecteer of typ een pad",
|
|
1510
1516
|
"valueHelper": "Toont de waarde op dit pad. Als het een array is, wordt het aantal elementen weergegeven.",
|
|
1511
1517
|
"accentColor": "Accentkleur"
|
|
1518
|
+
},
|
|
1519
|
+
"image": {
|
|
1520
|
+
"description": "",
|
|
1521
|
+
"value": "Waarde",
|
|
1522
|
+
"valuePlaceholder": "Selecteer of typ een pad",
|
|
1523
|
+
"valueHelper": "Toont de afbeelding op dit pad. Het pad moet verwijzen naar een geüploade bestandsresource.",
|
|
1524
|
+
"displayAsCarousel": "Weergeven als carrousel"
|
|
1512
1525
|
}
|
|
1513
1526
|
},
|
|
1514
1527
|
"filters": {
|
|
@@ -1853,14 +1866,14 @@
|
|
|
1853
1866
|
"canInitializeDocument": "Start een dossier",
|
|
1854
1867
|
"startableByUser": "Door gebruiker te starten",
|
|
1855
1868
|
"expressionErrors": {
|
|
1856
|
-
"MISSING_EL_MARKERS": "Expressie moet ${...} of #{...} syntax gebruiken",
|
|
1857
|
-
"UNCLOSED_PARENTHESIS": "Expressie heeft een niet-gesloten haakje '('",
|
|
1858
|
-
"UNCLOSED_BRACE": "Expressie mist een sluitende accolade '}'",
|
|
1859
|
-
"UNCLOSED_BRACKET": "Expressie heeft een niet-gesloten blokhaak '['",
|
|
1860
|
-
"MISMATCHED_DELIMITER": "Expressie heeft niet-overeenkomende haakjes of accolades",
|
|
1861
|
-
"INCOMPLETE_EXPRESSION": "Expressie is onvolledig",
|
|
1862
|
-
"INVALID_SYNTAX": "Expressie heeft ongeldige syntax",
|
|
1863
|
-
"BEAN_NOT_FOUND": "
|
|
1869
|
+
"MISSING_EL_MARKERS": "Expressie {{expression}} moet ${...} of #{...} syntax gebruiken",
|
|
1870
|
+
"UNCLOSED_PARENTHESIS": "Expressie {{expression}} heeft een niet-gesloten haakje '('",
|
|
1871
|
+
"UNCLOSED_BRACE": "Expressie {{expression}} mist een sluitende accolade '}'",
|
|
1872
|
+
"UNCLOSED_BRACKET": "Expressie {{expression}} heeft een niet-gesloten blokhaak '['",
|
|
1873
|
+
"MISMATCHED_DELIMITER": "Expressie {{expression}} heeft niet-overeenkomende haakjes of accolades",
|
|
1874
|
+
"INCOMPLETE_EXPRESSION": "Expressie {{expression}} is onvolledig",
|
|
1875
|
+
"INVALID_SYNTAX": "Expressie {{expression}} heeft ongeldige syntax",
|
|
1876
|
+
"BEAN_NOT_FOUND": "Geen bean gevonden met deze naam: {{expression}}. Als u een procesvariabele gebruikt, zorg dat deze tijdens runtime bestaat"
|
|
1864
1877
|
},
|
|
1865
1878
|
"warningConfirmation": {
|
|
1866
1879
|
"title": "Proces bevat waarschuwingen",
|
|
@@ -2581,6 +2594,9 @@
|
|
|
2581
2594
|
"key": "Rol-key",
|
|
2582
2595
|
"add": "Nieuwe rol toevoegen",
|
|
2583
2596
|
"name": "Rol-naam",
|
|
2597
|
+
"selectRole": "Selecteer een rol",
|
|
2598
|
+
"chooseFromList": "Kies uit lijst",
|
|
2599
|
+
"enterManually": "Handmatig invoeren",
|
|
2584
2600
|
"deleteModalContent": "Weet u zeker dat u deze rollen en alle onderliggende machtigingen wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt.",
|
|
2585
2601
|
"editMetadata": "Metadata bewerken",
|
|
2586
2602
|
"editRole": "Rol bewerken",
|
|
@@ -2594,6 +2610,7 @@
|
|
|
2594
2610
|
},
|
|
2595
2611
|
"tabs": {
|
|
2596
2612
|
"summary": "Samenvatting",
|
|
2613
|
+
"editor": "Editor",
|
|
2597
2614
|
"jsonEditor": "JSON-editor"
|
|
2598
2615
|
}
|
|
2599
2616
|
},
|
|
@@ -2620,16 +2637,32 @@
|
|
|
2620
2637
|
"operatonTask": "Taak"
|
|
2621
2638
|
},
|
|
2622
2639
|
"actions": {
|
|
2623
|
-
"view": "
|
|
2624
|
-
"view_list": "
|
|
2625
|
-
"create": "
|
|
2626
|
-
"modify": "
|
|
2627
|
-
"delete": "
|
|
2628
|
-
"assign": "
|
|
2629
|
-
"assignable": "
|
|
2630
|
-
"claim": "
|
|
2631
|
-
"complete": "
|
|
2632
|
-
"export": "
|
|
2640
|
+
"view": "Bekijken",
|
|
2641
|
+
"view_list": "Lijst bekijken",
|
|
2642
|
+
"create": "Aanmaken",
|
|
2643
|
+
"modify": "Wijzigen",
|
|
2644
|
+
"delete": "Verwijderen",
|
|
2645
|
+
"assign": "Toewijzen",
|
|
2646
|
+
"assignable": "Toewijsbaar",
|
|
2647
|
+
"claim": "Claimen",
|
|
2648
|
+
"complete": "Afronden",
|
|
2649
|
+
"export": "Exporteren",
|
|
2650
|
+
"inspect": "Inspecteren",
|
|
2651
|
+
"inspect_modify": "Inspecteren en wijzigen"
|
|
2652
|
+
},
|
|
2653
|
+
"actionDescriptions": {
|
|
2654
|
+
"view": "Een enkele resource openen en bekijken.",
|
|
2655
|
+
"view_list": "De resource in lijsten en zoekresultaten zien.",
|
|
2656
|
+
"create": "Een nieuwe resource aanmaken.",
|
|
2657
|
+
"modify": "Een bestaande resource wijzigen.",
|
|
2658
|
+
"delete": "Een resource permanent verwijderen.",
|
|
2659
|
+
"assign": "De resource aan een gebruiker toewijzen.",
|
|
2660
|
+
"assignable": "Selecteerbaar zijn als behandelaar van de resource.",
|
|
2661
|
+
"claim": "De resource claimen om er zelf aan te werken.",
|
|
2662
|
+
"complete": "De resource als afgerond markeren.",
|
|
2663
|
+
"export": "De gegevens van de resource exporteren.",
|
|
2664
|
+
"inspect": "De details van de resource bekijken zonder te wijzigen.",
|
|
2665
|
+
"inspect_modify": "De details van de resource bekijken en wijzigen."
|
|
2633
2666
|
},
|
|
2634
2667
|
"filter": {
|
|
2635
2668
|
"resourceType": "Resource-type",
|
|
@@ -2637,6 +2670,77 @@
|
|
|
2637
2670
|
"allResourceTypes": "Alle resource-types",
|
|
2638
2671
|
"allActions": "Alle acties"
|
|
2639
2672
|
},
|
|
2673
|
+
"editor": {
|
|
2674
|
+
"permission": "Permissie",
|
|
2675
|
+
"permissions": "Permissies",
|
|
2676
|
+
"newPermission": "Nieuwe permissie",
|
|
2677
|
+
"hasConditions": "Voorwaarden",
|
|
2678
|
+
"hasContext": "Context",
|
|
2679
|
+
"preview": {
|
|
2680
|
+
"actions": "Acties",
|
|
2681
|
+
"includes": "Bevat"
|
|
2682
|
+
},
|
|
2683
|
+
"addPermission": "Permissie toevoegen",
|
|
2684
|
+
"removePermission": "Permissie verwijderen",
|
|
2685
|
+
"removePermissionModal": {
|
|
2686
|
+
"title": "Permissie verwijderen?",
|
|
2687
|
+
"content": "Deze permissie wordt uit de lijst verwijderd. Ze wordt pas echt verwijderd wanneer je de volledige set permissies opslaat."
|
|
2688
|
+
},
|
|
2689
|
+
"resourceAndActions": "Resource & acties",
|
|
2690
|
+
"resourceActionsHint": "Kies de resource waarop deze permissie van toepassing is en de acties die het verleent.",
|
|
2691
|
+
"permissionsHint": "Je stelt een permissie op {{resource}} in voor de rol {{role}}. Alleen opties die het systeem ondersteunt kunnen worden geselecteerd.",
|
|
2692
|
+
"permissionsHintNew": "Je stelt een permissie in voor de rol {{role}}. Alleen opties die het systeem ondersteunt kunnen worden geselecteerd.",
|
|
2693
|
+
"resourceType": "Resource-type",
|
|
2694
|
+
"resourceTypePlaceholder": "Selecteer een resource-type",
|
|
2695
|
+
"actions": "Toegestane acties",
|
|
2696
|
+
"noActions": "Er zijn geen acties beschikbaar voor dit resource-type.",
|
|
2697
|
+
"conditions": "Voorwaarden",
|
|
2698
|
+
"conditionsHint": "Toegang wordt alleen verleend wanneer aan alle voorwaarden wordt voldaan. Laat leeg om altijd toegang te verlenen.",
|
|
2699
|
+
"conditionType": "Type voorwaarde",
|
|
2700
|
+
"conditionTypes": {
|
|
2701
|
+
"field": "Veld",
|
|
2702
|
+
"expression": "JSON-veld",
|
|
2703
|
+
"container": "Gerelateerde resource"
|
|
2704
|
+
},
|
|
2705
|
+
"field": "Veld om uit te lezen",
|
|
2706
|
+
"fieldPlaceholder": "Selecteer een veld",
|
|
2707
|
+
"operator": "Operator om te vergelijken",
|
|
2708
|
+
"value": "Waarde om mee te vergelijken",
|
|
2709
|
+
"valuePlaceholder": "bijv. null, true, 42, ${currentUserId} of [\"OPEN\", \"CLOSED\"]",
|
|
2710
|
+
"path": "JSON-pad",
|
|
2711
|
+
"pathPlaceholder": "bijv. /root/status",
|
|
2712
|
+
"clazz": "Waardetype (class)",
|
|
2713
|
+
"clazzPlaceholder": "bijv. java.lang.String",
|
|
2714
|
+
"valueTypeFromList": "Kies uit lijst",
|
|
2715
|
+
"valueTypeManual": "Handmatig invoeren",
|
|
2716
|
+
"relatedResource": "Gerelateerde resource",
|
|
2717
|
+
"relatedResourcePlaceholder": "Selecteer een gerelateerde resource",
|
|
2718
|
+
"addCondition": "Voorwaarde toevoegen",
|
|
2719
|
+
"contextSection": "Context",
|
|
2720
|
+
"contextHint": "Bepaal of en hoe context invloed heeft op deze permissie.",
|
|
2721
|
+
"contextModeNone": "Geen beperking",
|
|
2722
|
+
"contextModeNoContext": "Alleen zonder context",
|
|
2723
|
+
"contextModeSpecific": "Specifieke context",
|
|
2724
|
+
"noContextHint": "Deze permissie geldt alleen wanneer de resource op zichzelf wordt benaderd — niet binnen een gerelateerde resource.",
|
|
2725
|
+
"contextResourceType": "Context-resource",
|
|
2726
|
+
"contextResourceTypePlaceholder": "Selecteer een context-resource",
|
|
2727
|
+
"empty": {
|
|
2728
|
+
"title": "Nog geen permissies",
|
|
2729
|
+
"message": "Voeg een permissie toe om deze rol toegang tot resources te geven."
|
|
2730
|
+
},
|
|
2731
|
+
"tooltips": {
|
|
2732
|
+
"resourceType": "Het type resource waarvoor deze permissie toegang geeft. Bijvoorbeeld: een zaakdefinitie, document of taak.",
|
|
2733
|
+
"actions": "Wat deze rol met de resource mag doen. Bijvoorbeeld: bekijken, wijzigen of verwijderen. Er moet minstens één geselecteerd zijn.",
|
|
2734
|
+
"conditionType": "Veld vergelijkt een eigenschap van de resource. JSON-veld leest een waarde op een JSON-pad in de JSON-inhoud van het veld. Gerelateerde resource controleert een gekoppelde resource (bijv. het document van een zaak).",
|
|
2735
|
+
"field": "Een eigenschap van de resource om te controleren. Bijvoorbeeld: name, createdBy of active.",
|
|
2736
|
+
"operator": "Hoe het veld met de waarde wordt vergeleken. Bijvoorbeeld: is gelijk aan, is een van, of bevat.",
|
|
2737
|
+
"value": "De waarde om mee te vergelijken — bijv. tekst zoals OPEN, een getal zoals 42, true/false, of een van de ondersteunde placeholders: ${currentUserId}, ${currentUsername}, ${currentUserEmail}, ${currentUserRoles}, ${currentUserTeams}. Voor de operatoren 'is een van' en 'bevat' voer je een JSON-array in, zoals [\"OPEN\", \"CLOSED\"]. Typ null voor geen waarde — het veld mag niet leeg zijn.",
|
|
2738
|
+
"path": "Een JSON-pad in de inhoud van het veld dat is gekozen bij 'Veld om uit te lezen'. Bijvoorbeeld: /root/status of /aanvrager/bsn.",
|
|
2739
|
+
"clazz": "Het volledige Java-type van de waarde. Bijvoorbeeld: java.lang.String of java.lang.Boolean.",
|
|
2740
|
+
"relatedResource": "De gekoppelde resource waartegen de geneste voorwaarden worden geëvalueerd. Bijvoorbeeld: het document dat aan een zaak hangt.",
|
|
2741
|
+
"contextResourceType": "Verleen deze permissie alleen wanneer de resource binnen een andere resource wordt benaderd. Bijvoorbeeld: documenten binnen een specifieke zaakdefinitie."
|
|
2742
|
+
}
|
|
2743
|
+
},
|
|
2640
2744
|
"overview": {
|
|
2641
2745
|
"canDo": "Kan",
|
|
2642
2746
|
"can": "kan",
|
|
@@ -2649,7 +2753,7 @@
|
|
|
2649
2753
|
"where": "waar",
|
|
2650
2754
|
"atJsonPath": "op JSON-pad",
|
|
2651
2755
|
"inContextOf": "in de context van",
|
|
2652
|
-
"noContext": "
|
|
2756
|
+
"noContext": "Zonder context",
|
|
2653
2757
|
"customField": "(aangepast veld)",
|
|
2654
2758
|
"customResource": "(aangepaste resource)",
|
|
2655
2759
|
"noAccess": "Geen toegang",
|
|
@@ -2930,6 +3034,11 @@
|
|
|
2930
3034
|
"noWidgetsDescription": "Er zijn geen widgets geconfigureerd voor dit tabblad, of je hebt niet de juiste rechten om deze te zien.",
|
|
2931
3035
|
"noWidget": "Widget niet beschikbaar",
|
|
2932
3036
|
"noCustomComponentDescription": "De component die geconfigureerd is voor deze widget kon niet gevonden worden.",
|
|
3037
|
+
"image": {
|
|
3038
|
+
"noImage": "Geen afbeelding gevonden",
|
|
3039
|
+
"openInNewTab": "Openen in nieuw tabblad",
|
|
3040
|
+
"download": "Downloaden"
|
|
3041
|
+
},
|
|
2933
3042
|
"map": {
|
|
2934
3043
|
"title": "Kaart"
|
|
2935
3044
|
},
|