@valtimo/shared 13.35.0 → 13.36.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 +119 -11
- package/assets/core/nl.json +119 -11
- 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
|
@@ -723,6 +723,7 @@
|
|
|
723
723
|
},
|
|
724
724
|
"message": {"empty": "No result found"},
|
|
725
725
|
"cta": {"close": "Close", "moreDetails": "More details"},
|
|
726
|
+
"carousel": {"previous": "Previous", "next": "Next", "goToSlide": "Go to slide"},
|
|
726
727
|
"formManagement": {
|
|
727
728
|
"noFormDefinitionFoundAdmin": "There is no form connected to the start event/user task. To configure this, click on the button below.",
|
|
728
729
|
"noFormDefinitionFoundUser": "There is no form connected to the start event/user task. Ask an admin user for assistance.",
|
|
@@ -1296,6 +1297,10 @@
|
|
|
1296
1297
|
"title": "Highlight",
|
|
1297
1298
|
"description": "A small widget that highlights a single value or a count"
|
|
1298
1299
|
},
|
|
1300
|
+
"image": {
|
|
1301
|
+
"title": "Image",
|
|
1302
|
+
"description": "Show an uploaded image"
|
|
1303
|
+
},
|
|
1299
1304
|
"generic": {
|
|
1300
1305
|
"title": "Generic widgets",
|
|
1301
1306
|
"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 +1489,13 @@
|
|
|
1484
1489
|
"valuePlaceholder": "Select or type a path",
|
|
1485
1490
|
"valueHelper": "Shows the value at this path. If it resolves to an array, the count of items is shown instead.",
|
|
1486
1491
|
"accentColor": "Accent color"
|
|
1492
|
+
},
|
|
1493
|
+
"image": {
|
|
1494
|
+
"description": "",
|
|
1495
|
+
"value": "Value",
|
|
1496
|
+
"valuePlaceholder": "Select or type a path",
|
|
1497
|
+
"valueHelper": "Shows the image stored at this path. The path must resolve to an uploaded file resource.",
|
|
1498
|
+
"displayAsCarousel": "Display as carousel"
|
|
1487
1499
|
}
|
|
1488
1500
|
},
|
|
1489
1501
|
"filters": {
|
|
@@ -2548,6 +2560,9 @@
|
|
|
2548
2560
|
"key": "Role key",
|
|
2549
2561
|
"add": "Add new role",
|
|
2550
2562
|
"name": "Role name",
|
|
2563
|
+
"selectRole": "Select a role",
|
|
2564
|
+
"chooseFromList": "Choose from list",
|
|
2565
|
+
"enterManually": "Enter manually",
|
|
2551
2566
|
"deleteModalContent": "Are you sure you want to delete these roles and all underlying permissions? This action cannot be undone.",
|
|
2552
2567
|
"editMetadata": "Edit metadata",
|
|
2553
2568
|
"editRole": "Edit Role",
|
|
@@ -2561,6 +2576,7 @@
|
|
|
2561
2576
|
},
|
|
2562
2577
|
"tabs": {
|
|
2563
2578
|
"summary": "Summary",
|
|
2579
|
+
"editor": "Editor",
|
|
2564
2580
|
"jsonEditor": "JSON editor"
|
|
2565
2581
|
}
|
|
2566
2582
|
},
|
|
@@ -2587,16 +2603,32 @@
|
|
|
2587
2603
|
"operatonTask": "Task"
|
|
2588
2604
|
},
|
|
2589
2605
|
"actions": {
|
|
2590
|
-
"view": "
|
|
2591
|
-
"view_list": "
|
|
2592
|
-
"create": "
|
|
2593
|
-
"modify": "
|
|
2594
|
-
"delete": "
|
|
2595
|
-
"assign": "
|
|
2596
|
-
"assignable": "
|
|
2597
|
-
"claim": "
|
|
2598
|
-
"complete": "
|
|
2599
|
-
"export": "
|
|
2606
|
+
"view": "View",
|
|
2607
|
+
"view_list": "View list",
|
|
2608
|
+
"create": "Create",
|
|
2609
|
+
"modify": "Modify",
|
|
2610
|
+
"delete": "Delete",
|
|
2611
|
+
"assign": "Assign",
|
|
2612
|
+
"assignable": "Be assigned to",
|
|
2613
|
+
"claim": "Claim",
|
|
2614
|
+
"complete": "Complete",
|
|
2615
|
+
"export": "Export",
|
|
2616
|
+
"inspect": "Inspect",
|
|
2617
|
+
"inspect_modify": "Inspect and modify"
|
|
2618
|
+
},
|
|
2619
|
+
"actionDescriptions": {
|
|
2620
|
+
"view": "Open and read a single resource.",
|
|
2621
|
+
"view_list": "See the resource in lists and search results.",
|
|
2622
|
+
"create": "Create a new resource.",
|
|
2623
|
+
"modify": "Change an existing resource.",
|
|
2624
|
+
"delete": "Permanently remove a resource.",
|
|
2625
|
+
"assign": "Assign the resource to a user.",
|
|
2626
|
+
"assignable": "Be selectable as the assignee of the resource.",
|
|
2627
|
+
"claim": "Claim the resource to work on it yourself.",
|
|
2628
|
+
"complete": "Mark the resource as completed.",
|
|
2629
|
+
"export": "Export the resource's data.",
|
|
2630
|
+
"inspect": "View the resource's details without changing it.",
|
|
2631
|
+
"inspect_modify": "View the resource's details and change it."
|
|
2600
2632
|
},
|
|
2601
2633
|
"filter": {
|
|
2602
2634
|
"resourceType": "Resource type",
|
|
@@ -2604,6 +2636,77 @@
|
|
|
2604
2636
|
"allResourceTypes": "All resource types",
|
|
2605
2637
|
"allActions": "All actions"
|
|
2606
2638
|
},
|
|
2639
|
+
"editor": {
|
|
2640
|
+
"permission": "Permission",
|
|
2641
|
+
"permissions": "Permissions",
|
|
2642
|
+
"newPermission": "New permission",
|
|
2643
|
+
"hasConditions": "Conditions",
|
|
2644
|
+
"hasContext": "Context",
|
|
2645
|
+
"preview": {
|
|
2646
|
+
"actions": "Actions",
|
|
2647
|
+
"includes": "Includes"
|
|
2648
|
+
},
|
|
2649
|
+
"addPermission": "Add permission",
|
|
2650
|
+
"removePermission": "Remove permission",
|
|
2651
|
+
"removePermissionModal": {
|
|
2652
|
+
"title": "Remove permission?",
|
|
2653
|
+
"content": "This permission is removed from the list. It is not actually deleted until you save the whole set of permissions."
|
|
2654
|
+
},
|
|
2655
|
+
"resourceAndActions": "Resource & actions",
|
|
2656
|
+
"resourceActionsHint": "Choose the resource this permission applies to and the actions it grants.",
|
|
2657
|
+
"permissionsHint": "You're configuring a permission on {{resource}} for the {{role}} role. Only options the system supports can be selected.",
|
|
2658
|
+
"permissionsHintNew": "You're configuring a permission for the {{role}} role. Only options the system supports can be selected.",
|
|
2659
|
+
"resourceType": "Resource type",
|
|
2660
|
+
"resourceTypePlaceholder": "Select a resource type",
|
|
2661
|
+
"actions": "Allowed actions",
|
|
2662
|
+
"noActions": "No actions are available for this resource type.",
|
|
2663
|
+
"conditions": "Conditions",
|
|
2664
|
+
"conditionsHint": "Access is only granted when all conditions are met. Leave empty to always grant access.",
|
|
2665
|
+
"conditionType": "Condition type",
|
|
2666
|
+
"conditionTypes": {
|
|
2667
|
+
"field": "Field",
|
|
2668
|
+
"expression": "JSON field",
|
|
2669
|
+
"container": "Related resource"
|
|
2670
|
+
},
|
|
2671
|
+
"field": "Field to read from",
|
|
2672
|
+
"fieldPlaceholder": "Select a field",
|
|
2673
|
+
"operator": "Operator to compare with",
|
|
2674
|
+
"value": "Value to compare to",
|
|
2675
|
+
"valuePlaceholder": "e.g. null, true, 42, ${currentUserId} or [\"OPEN\", \"CLOSED\"]",
|
|
2676
|
+
"path": "JSON path",
|
|
2677
|
+
"pathPlaceholder": "e.g. /root/status",
|
|
2678
|
+
"clazz": "Value type (class)",
|
|
2679
|
+
"clazzPlaceholder": "e.g. java.lang.String",
|
|
2680
|
+
"valueTypeFromList": "Choose from list",
|
|
2681
|
+
"valueTypeManual": "Enter manually",
|
|
2682
|
+
"relatedResource": "Related resource",
|
|
2683
|
+
"relatedResourcePlaceholder": "Select a related resource",
|
|
2684
|
+
"addCondition": "Add condition",
|
|
2685
|
+
"contextSection": "Context",
|
|
2686
|
+
"contextHint": "Choose whether and how context affects this permission.",
|
|
2687
|
+
"contextModeNone": "No restriction",
|
|
2688
|
+
"contextModeNoContext": "Only without context",
|
|
2689
|
+
"contextModeSpecific": "Specific context",
|
|
2690
|
+
"noContextHint": "This permission only applies when the resource is accessed on its own — not within any related resource.",
|
|
2691
|
+
"contextResourceType": "Context resource",
|
|
2692
|
+
"contextResourceTypePlaceholder": "Select a context resource",
|
|
2693
|
+
"empty": {
|
|
2694
|
+
"title": "No permissions yet",
|
|
2695
|
+
"message": "Add a permission to start granting this role access to resources."
|
|
2696
|
+
},
|
|
2697
|
+
"tooltips": {
|
|
2698
|
+
"resourceType": "The type of resource this permission grants access to. For example: a case definition, document or task.",
|
|
2699
|
+
"actions": "What this role is allowed to do with the resource. For example: view, modify or delete. At least one must be selected.",
|
|
2700
|
+
"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).",
|
|
2701
|
+
"field": "A property of the resource to check. For example: name, createdBy or active.",
|
|
2702
|
+
"operator": "How the field is compared to the value. For example: equals, is one of, or contains.",
|
|
2703
|
+
"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.",
|
|
2704
|
+
"path": "A JSON path into the content of the field chosen in 'Field to read from'. For example: /root/status or /aanvrager/bsn.",
|
|
2705
|
+
"clazz": "The fully-qualified Java type of the value. For example: java.lang.String or java.lang.Boolean.",
|
|
2706
|
+
"relatedResource": "The linked resource to evaluate the nested conditions against. For example: the document attached to a case.",
|
|
2707
|
+
"contextResourceType": "Only grant this permission when the resource is accessed within another resource. For example: documents within a specific case definition."
|
|
2708
|
+
}
|
|
2709
|
+
},
|
|
2607
2710
|
"overview": {
|
|
2608
2711
|
"canDo": "Can",
|
|
2609
2712
|
"can": "can",
|
|
@@ -2616,7 +2719,7 @@
|
|
|
2616
2719
|
"where": "where",
|
|
2617
2720
|
"atJsonPath": "at JSON path",
|
|
2618
2721
|
"inContextOf": "in the context of",
|
|
2619
|
-
"noContext": "
|
|
2722
|
+
"noContext": "Without context",
|
|
2620
2723
|
"customField": "(custom field)",
|
|
2621
2724
|
"customResource": "(custom resource)",
|
|
2622
2725
|
"noAccess": "No access",
|
|
@@ -2897,6 +3000,11 @@
|
|
|
2897
3000
|
"noWidgetsDescription": "There are no widgets configured for this tab, or you don't have the rights to view them.",
|
|
2898
3001
|
"noWidget": "Widget not found",
|
|
2899
3002
|
"noCustomComponentDescription": "The custom component configured for this widget is not available.",
|
|
3003
|
+
"image": {
|
|
3004
|
+
"noImage": "No image found",
|
|
3005
|
+
"openInNewTab": "Open in new tab",
|
|
3006
|
+
"download": "Download"
|
|
3007
|
+
},
|
|
2900
3008
|
"map": {
|
|
2901
3009
|
"title": "Map"
|
|
2902
3010
|
},
|
package/assets/core/nl.json
CHANGED
|
@@ -726,6 +726,7 @@
|
|
|
726
726
|
},
|
|
727
727
|
"message": {"empty": "Geen resultaat gevonden"},
|
|
728
728
|
"cta": {"close": "Sluiten", "moreDetails": "Meer details"},
|
|
729
|
+
"carousel": {"previous": "Vorige", "next": "Volgende", "goToSlide": "Ga naar dia"},
|
|
729
730
|
"formManagement": {
|
|
730
731
|
"noFormDefinitionFoundAdmin": "Er is geen formulier gekoppeld aan de start event/user task. Druk op de knop om deze te configureren.",
|
|
731
732
|
"noFormDefinitionFoundUser": "Er is geen formulier gekoppeld aan de start event/user task. Vraag een beheerder om hulp.",
|
|
@@ -1315,6 +1316,10 @@
|
|
|
1315
1316
|
"title": "Markering",
|
|
1316
1317
|
"description": "Een kleine widget die één waarde of een aantal benadrukt"
|
|
1317
1318
|
},
|
|
1319
|
+
"image": {
|
|
1320
|
+
"title": "Afbeelding",
|
|
1321
|
+
"description": "Toon een geüploade afbeelding"
|
|
1322
|
+
},
|
|
1318
1323
|
"generic": {
|
|
1319
1324
|
"title": "Generieke widgets",
|
|
1320
1325
|
"description": "Breed toepasbaar — koppel ze aan elke gegevensstructuur (velden, tabellen, collecties). Meer configuratie, maar geen beperkingen op wat ze kunnen tonen."
|
|
@@ -1509,6 +1514,13 @@
|
|
|
1509
1514
|
"valuePlaceholder": "Selecteer of typ een pad",
|
|
1510
1515
|
"valueHelper": "Toont de waarde op dit pad. Als het een array is, wordt het aantal elementen weergegeven.",
|
|
1511
1516
|
"accentColor": "Accentkleur"
|
|
1517
|
+
},
|
|
1518
|
+
"image": {
|
|
1519
|
+
"description": "",
|
|
1520
|
+
"value": "Waarde",
|
|
1521
|
+
"valuePlaceholder": "Selecteer of typ een pad",
|
|
1522
|
+
"valueHelper": "Toont de afbeelding op dit pad. Het pad moet verwijzen naar een geüploade bestandsresource.",
|
|
1523
|
+
"displayAsCarousel": "Weergeven als carrousel"
|
|
1512
1524
|
}
|
|
1513
1525
|
},
|
|
1514
1526
|
"filters": {
|
|
@@ -2581,6 +2593,9 @@
|
|
|
2581
2593
|
"key": "Rol-key",
|
|
2582
2594
|
"add": "Nieuwe rol toevoegen",
|
|
2583
2595
|
"name": "Rol-naam",
|
|
2596
|
+
"selectRole": "Selecteer een rol",
|
|
2597
|
+
"chooseFromList": "Kies uit lijst",
|
|
2598
|
+
"enterManually": "Handmatig invoeren",
|
|
2584
2599
|
"deleteModalContent": "Weet u zeker dat u deze rollen en alle onderliggende machtigingen wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt.",
|
|
2585
2600
|
"editMetadata": "Metadata bewerken",
|
|
2586
2601
|
"editRole": "Rol bewerken",
|
|
@@ -2594,6 +2609,7 @@
|
|
|
2594
2609
|
},
|
|
2595
2610
|
"tabs": {
|
|
2596
2611
|
"summary": "Samenvatting",
|
|
2612
|
+
"editor": "Editor",
|
|
2597
2613
|
"jsonEditor": "JSON-editor"
|
|
2598
2614
|
}
|
|
2599
2615
|
},
|
|
@@ -2620,16 +2636,32 @@
|
|
|
2620
2636
|
"operatonTask": "Taak"
|
|
2621
2637
|
},
|
|
2622
2638
|
"actions": {
|
|
2623
|
-
"view": "
|
|
2624
|
-
"view_list": "
|
|
2625
|
-
"create": "
|
|
2626
|
-
"modify": "
|
|
2627
|
-
"delete": "
|
|
2628
|
-
"assign": "
|
|
2629
|
-
"assignable": "
|
|
2630
|
-
"claim": "
|
|
2631
|
-
"complete": "
|
|
2632
|
-
"export": "
|
|
2639
|
+
"view": "Bekijken",
|
|
2640
|
+
"view_list": "Lijst bekijken",
|
|
2641
|
+
"create": "Aanmaken",
|
|
2642
|
+
"modify": "Wijzigen",
|
|
2643
|
+
"delete": "Verwijderen",
|
|
2644
|
+
"assign": "Toewijzen",
|
|
2645
|
+
"assignable": "Toewijsbaar",
|
|
2646
|
+
"claim": "Claimen",
|
|
2647
|
+
"complete": "Afronden",
|
|
2648
|
+
"export": "Exporteren",
|
|
2649
|
+
"inspect": "Inspecteren",
|
|
2650
|
+
"inspect_modify": "Inspecteren en wijzigen"
|
|
2651
|
+
},
|
|
2652
|
+
"actionDescriptions": {
|
|
2653
|
+
"view": "Een enkele resource openen en bekijken.",
|
|
2654
|
+
"view_list": "De resource in lijsten en zoekresultaten zien.",
|
|
2655
|
+
"create": "Een nieuwe resource aanmaken.",
|
|
2656
|
+
"modify": "Een bestaande resource wijzigen.",
|
|
2657
|
+
"delete": "Een resource permanent verwijderen.",
|
|
2658
|
+
"assign": "De resource aan een gebruiker toewijzen.",
|
|
2659
|
+
"assignable": "Selecteerbaar zijn als behandelaar van de resource.",
|
|
2660
|
+
"claim": "De resource claimen om er zelf aan te werken.",
|
|
2661
|
+
"complete": "De resource als afgerond markeren.",
|
|
2662
|
+
"export": "De gegevens van de resource exporteren.",
|
|
2663
|
+
"inspect": "De details van de resource bekijken zonder te wijzigen.",
|
|
2664
|
+
"inspect_modify": "De details van de resource bekijken en wijzigen."
|
|
2633
2665
|
},
|
|
2634
2666
|
"filter": {
|
|
2635
2667
|
"resourceType": "Resource-type",
|
|
@@ -2637,6 +2669,77 @@
|
|
|
2637
2669
|
"allResourceTypes": "Alle resource-types",
|
|
2638
2670
|
"allActions": "Alle acties"
|
|
2639
2671
|
},
|
|
2672
|
+
"editor": {
|
|
2673
|
+
"permission": "Permissie",
|
|
2674
|
+
"permissions": "Permissies",
|
|
2675
|
+
"newPermission": "Nieuwe permissie",
|
|
2676
|
+
"hasConditions": "Voorwaarden",
|
|
2677
|
+
"hasContext": "Context",
|
|
2678
|
+
"preview": {
|
|
2679
|
+
"actions": "Acties",
|
|
2680
|
+
"includes": "Bevat"
|
|
2681
|
+
},
|
|
2682
|
+
"addPermission": "Permissie toevoegen",
|
|
2683
|
+
"removePermission": "Permissie verwijderen",
|
|
2684
|
+
"removePermissionModal": {
|
|
2685
|
+
"title": "Permissie verwijderen?",
|
|
2686
|
+
"content": "Deze permissie wordt uit de lijst verwijderd. Ze wordt pas echt verwijderd wanneer je de volledige set permissies opslaat."
|
|
2687
|
+
},
|
|
2688
|
+
"resourceAndActions": "Resource & acties",
|
|
2689
|
+
"resourceActionsHint": "Kies de resource waarop deze permissie van toepassing is en de acties die het verleent.",
|
|
2690
|
+
"permissionsHint": "Je stelt een permissie op {{resource}} in voor de rol {{role}}. Alleen opties die het systeem ondersteunt kunnen worden geselecteerd.",
|
|
2691
|
+
"permissionsHintNew": "Je stelt een permissie in voor de rol {{role}}. Alleen opties die het systeem ondersteunt kunnen worden geselecteerd.",
|
|
2692
|
+
"resourceType": "Resource-type",
|
|
2693
|
+
"resourceTypePlaceholder": "Selecteer een resource-type",
|
|
2694
|
+
"actions": "Toegestane acties",
|
|
2695
|
+
"noActions": "Er zijn geen acties beschikbaar voor dit resource-type.",
|
|
2696
|
+
"conditions": "Voorwaarden",
|
|
2697
|
+
"conditionsHint": "Toegang wordt alleen verleend wanneer aan alle voorwaarden wordt voldaan. Laat leeg om altijd toegang te verlenen.",
|
|
2698
|
+
"conditionType": "Type voorwaarde",
|
|
2699
|
+
"conditionTypes": {
|
|
2700
|
+
"field": "Veld",
|
|
2701
|
+
"expression": "JSON-veld",
|
|
2702
|
+
"container": "Gerelateerde resource"
|
|
2703
|
+
},
|
|
2704
|
+
"field": "Veld om uit te lezen",
|
|
2705
|
+
"fieldPlaceholder": "Selecteer een veld",
|
|
2706
|
+
"operator": "Operator om te vergelijken",
|
|
2707
|
+
"value": "Waarde om mee te vergelijken",
|
|
2708
|
+
"valuePlaceholder": "bijv. null, true, 42, ${currentUserId} of [\"OPEN\", \"CLOSED\"]",
|
|
2709
|
+
"path": "JSON-pad",
|
|
2710
|
+
"pathPlaceholder": "bijv. /root/status",
|
|
2711
|
+
"clazz": "Waardetype (class)",
|
|
2712
|
+
"clazzPlaceholder": "bijv. java.lang.String",
|
|
2713
|
+
"valueTypeFromList": "Kies uit lijst",
|
|
2714
|
+
"valueTypeManual": "Handmatig invoeren",
|
|
2715
|
+
"relatedResource": "Gerelateerde resource",
|
|
2716
|
+
"relatedResourcePlaceholder": "Selecteer een gerelateerde resource",
|
|
2717
|
+
"addCondition": "Voorwaarde toevoegen",
|
|
2718
|
+
"contextSection": "Context",
|
|
2719
|
+
"contextHint": "Bepaal of en hoe context invloed heeft op deze permissie.",
|
|
2720
|
+
"contextModeNone": "Geen beperking",
|
|
2721
|
+
"contextModeNoContext": "Alleen zonder context",
|
|
2722
|
+
"contextModeSpecific": "Specifieke context",
|
|
2723
|
+
"noContextHint": "Deze permissie geldt alleen wanneer de resource op zichzelf wordt benaderd — niet binnen een gerelateerde resource.",
|
|
2724
|
+
"contextResourceType": "Context-resource",
|
|
2725
|
+
"contextResourceTypePlaceholder": "Selecteer een context-resource",
|
|
2726
|
+
"empty": {
|
|
2727
|
+
"title": "Nog geen permissies",
|
|
2728
|
+
"message": "Voeg een permissie toe om deze rol toegang tot resources te geven."
|
|
2729
|
+
},
|
|
2730
|
+
"tooltips": {
|
|
2731
|
+
"resourceType": "Het type resource waarvoor deze permissie toegang geeft. Bijvoorbeeld: een zaakdefinitie, document of taak.",
|
|
2732
|
+
"actions": "Wat deze rol met de resource mag doen. Bijvoorbeeld: bekijken, wijzigen of verwijderen. Er moet minstens één geselecteerd zijn.",
|
|
2733
|
+
"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).",
|
|
2734
|
+
"field": "Een eigenschap van de resource om te controleren. Bijvoorbeeld: name, createdBy of active.",
|
|
2735
|
+
"operator": "Hoe het veld met de waarde wordt vergeleken. Bijvoorbeeld: is gelijk aan, is een van, of bevat.",
|
|
2736
|
+
"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.",
|
|
2737
|
+
"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.",
|
|
2738
|
+
"clazz": "Het volledige Java-type van de waarde. Bijvoorbeeld: java.lang.String of java.lang.Boolean.",
|
|
2739
|
+
"relatedResource": "De gekoppelde resource waartegen de geneste voorwaarden worden geëvalueerd. Bijvoorbeeld: het document dat aan een zaak hangt.",
|
|
2740
|
+
"contextResourceType": "Verleen deze permissie alleen wanneer de resource binnen een andere resource wordt benaderd. Bijvoorbeeld: documenten binnen een specifieke zaakdefinitie."
|
|
2741
|
+
}
|
|
2742
|
+
},
|
|
2640
2743
|
"overview": {
|
|
2641
2744
|
"canDo": "Kan",
|
|
2642
2745
|
"can": "kan",
|
|
@@ -2649,7 +2752,7 @@
|
|
|
2649
2752
|
"where": "waar",
|
|
2650
2753
|
"atJsonPath": "op JSON-pad",
|
|
2651
2754
|
"inContextOf": "in de context van",
|
|
2652
|
-
"noContext": "
|
|
2755
|
+
"noContext": "Zonder context",
|
|
2653
2756
|
"customField": "(aangepast veld)",
|
|
2654
2757
|
"customResource": "(aangepaste resource)",
|
|
2655
2758
|
"noAccess": "Geen toegang",
|
|
@@ -2930,6 +3033,11 @@
|
|
|
2930
3033
|
"noWidgetsDescription": "Er zijn geen widgets geconfigureerd voor dit tabblad, of je hebt niet de juiste rechten om deze te zien.",
|
|
2931
3034
|
"noWidget": "Widget niet beschikbaar",
|
|
2932
3035
|
"noCustomComponentDescription": "De component die geconfigureerd is voor deze widget kon niet gevonden worden.",
|
|
3036
|
+
"image": {
|
|
3037
|
+
"noImage": "Geen afbeelding gevonden",
|
|
3038
|
+
"openInNewTab": "Openen in nieuw tabblad",
|
|
3039
|
+
"download": "Downloaden"
|
|
3040
|
+
},
|
|
2933
3041
|
"map": {
|
|
2934
3042
|
"title": "Kaart"
|
|
2935
3043
|
},
|