@valtimo/shared 13.22.0 → 13.23.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 +114 -12
- package/assets/core/nl.json +115 -10
- package/fesm2022/valtimo-shared.mjs +50 -48
- package/fesm2022/valtimo-shared.mjs.map +1 -1
- package/lib/generated/generated-backend-types.d.ts +83 -42
- package/lib/generated/generated-backend-types.d.ts.map +1 -1
- package/lib/models/config.d.ts +4 -2
- package/lib/models/config.d.ts.map +1 -1
- package/lib/models/search.model.d.ts +1 -1
- package/lib/models/search.model.d.ts.map +1 -1
- package/package.json +1 -1
package/assets/core/en.json
CHANGED
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"modal": {
|
|
26
26
|
"confirm": "Assign",
|
|
27
27
|
"selectLabel": "Assign to user",
|
|
28
|
+
"selectTeamLabel": "Assign to team",
|
|
28
29
|
"selectPlaceholder": "Choose an option",
|
|
29
30
|
"title": "Assign selected cases to",
|
|
30
31
|
"warningTitle": "Warning",
|
|
@@ -46,6 +47,7 @@
|
|
|
46
47
|
"ALL": {"description": "There is nothing to do here.", "title": "There are no cases"},
|
|
47
48
|
"MINE": {"description": "Time for a short break.", "title": "No cases assigned to you"},
|
|
48
49
|
"OPEN": {"description": "Come back later.", "title": "All cases have been assigned"},
|
|
50
|
+
"TEAM": {"description": "No cases have been assigned to your teams yet.", "title": "No team cases"},
|
|
49
51
|
"search": {
|
|
50
52
|
"description": "There are no cases that match your search criteria.",
|
|
51
53
|
"title": "No cases found"
|
|
@@ -75,6 +77,7 @@
|
|
|
75
77
|
"MINE": "My cases",
|
|
76
78
|
"OPEN": "Unassigned cases",
|
|
77
79
|
"ALL": "All cases",
|
|
80
|
+
"TEAM": "Team cases",
|
|
78
81
|
"componentNotFound": "Tab component not found",
|
|
79
82
|
"componentNotFoundMessage": "No component has been found for this tab. Please contact your system administrator."
|
|
80
83
|
},
|
|
@@ -232,6 +235,7 @@
|
|
|
232
235
|
"delete": "Delete",
|
|
233
236
|
"download": "Download",
|
|
234
237
|
"edit": "Edit",
|
|
238
|
+
"preview": "Preview",
|
|
235
239
|
"application/octet-stream": "Unknown",
|
|
236
240
|
"application/json": "JSON",
|
|
237
241
|
"application/msword": "DOC",
|
|
@@ -569,6 +573,14 @@
|
|
|
569
573
|
"description": "Description"
|
|
570
574
|
}
|
|
571
575
|
},
|
|
576
|
+
"importOrigin": {
|
|
577
|
+
"title": "Import origin",
|
|
578
|
+
"fields": {
|
|
579
|
+
"originalKey": "Original key",
|
|
580
|
+
"originalName": "Original name",
|
|
581
|
+
"originalVersionTag": "Original version"
|
|
582
|
+
}
|
|
583
|
+
},
|
|
572
584
|
"notFinalizableWarning": {
|
|
573
585
|
"title": "This case definition cannot be finalized.",
|
|
574
586
|
"BUILDING_BLOCK_NOT_FINAL": "The case definition makes use of draft building blocks. In order to finalize this case definition, make sure all the building blocks it uses are final.",
|
|
@@ -705,30 +717,42 @@
|
|
|
705
717
|
"tabType": {"custom": "Custom", "formio": "FormIO", "standard": "Standard"},
|
|
706
718
|
"importDefinition": {
|
|
707
719
|
"title": "Import case definition",
|
|
708
|
-
"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.",
|
|
709
720
|
"startUpload": "Start upload",
|
|
710
|
-
"checkbox": {
|
|
711
|
-
"message": "I understand that configurations may be overwritten",
|
|
712
|
-
"error": "This field is mandatory"
|
|
713
|
-
},
|
|
714
721
|
"info": {
|
|
715
722
|
"title": "Attention",
|
|
716
723
|
"message": "Before importing, please make sure the plugin configurations that are referenced in process links are present."
|
|
717
724
|
},
|
|
718
725
|
"upload": {
|
|
719
726
|
"title": "Upload file",
|
|
720
|
-
"description": "Max file size is 500kb. Supported file
|
|
727
|
+
"description": "Max file size is 500kb. Supported file type is ZIP.",
|
|
721
728
|
"buttonText": "Select file"
|
|
722
729
|
},
|
|
723
730
|
"progressBar": {
|
|
724
731
|
"active": "This may take a while",
|
|
725
|
-
"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.",
|
|
732
|
+
"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.",
|
|
726
733
|
"finished": "Case definition successfully imported",
|
|
727
734
|
"label": "Importing case definition"
|
|
728
735
|
},
|
|
729
|
-
"
|
|
730
|
-
"
|
|
731
|
-
"
|
|
736
|
+
"invalidZipError": {
|
|
737
|
+
"title": "Invalid file",
|
|
738
|
+
"text": "The file could not be read as a valid case definition archive."
|
|
739
|
+
},
|
|
740
|
+
"configure": {
|
|
741
|
+
"draftTag": "Draft",
|
|
742
|
+
"finalTag": "Final",
|
|
743
|
+
"newVersionWarning": {
|
|
744
|
+
"title": "New version",
|
|
745
|
+
"message": "A case definition with this key already exists. This will be imported as a new version."
|
|
746
|
+
},
|
|
747
|
+
"existingDraftWarning": {
|
|
748
|
+
"title": "Warning",
|
|
749
|
+
"message": "A draft version with this key and version already exists. Importing will override the existing draft."
|
|
750
|
+
},
|
|
751
|
+
"overrideConfirm": "I understand that the existing draft will be overridden",
|
|
752
|
+
"existingFinalWarning": {
|
|
753
|
+
"title": "Cannot import",
|
|
754
|
+
"message": "A finalized version with this key and version already exists. Change the key to import under a different name."
|
|
755
|
+
}
|
|
732
756
|
},
|
|
733
757
|
"steps": {
|
|
734
758
|
"accessControl": {
|
|
@@ -1102,6 +1126,13 @@
|
|
|
1102
1126
|
"noColumns": {
|
|
1103
1127
|
"description": "Click here to configure a column for this document",
|
|
1104
1128
|
"title": "No configured columns"
|
|
1129
|
+
},
|
|
1130
|
+
"preview": {
|
|
1131
|
+
"downloadOriginal": "Download original",
|
|
1132
|
+
"modal": {
|
|
1133
|
+
"header": "Document preview"
|
|
1134
|
+
},
|
|
1135
|
+
"pdfViewerNotSupported": "Your browser does not support PDF viewing."
|
|
1105
1136
|
}
|
|
1106
1137
|
},
|
|
1107
1138
|
"notifications": {
|
|
@@ -1218,6 +1249,12 @@
|
|
|
1218
1249
|
"noResultsDescription": "Come back later.",
|
|
1219
1250
|
"noResultsTitle": "All tasks have been assigned"
|
|
1220
1251
|
},
|
|
1252
|
+
"team": {
|
|
1253
|
+
"title": "Team tasks",
|
|
1254
|
+
"description": "Overview of all tasks assigned to your teams",
|
|
1255
|
+
"noResultsDescription": "No tasks have been assigned to your teams yet.",
|
|
1256
|
+
"noResultsTitle": "No team tasks"
|
|
1257
|
+
},
|
|
1221
1258
|
"all": {
|
|
1222
1259
|
"title": "All tasks",
|
|
1223
1260
|
"description": "Overview of all tasks",
|
|
@@ -1543,6 +1580,19 @@
|
|
|
1543
1580
|
"fetchingUsers": "Fetching users...",
|
|
1544
1581
|
"submitButtonText": "Assign user to case"
|
|
1545
1582
|
},
|
|
1583
|
+
"assignment": {
|
|
1584
|
+
"assignThisCase": "Assign this case",
|
|
1585
|
+
"assignThisTask": "Assign this task",
|
|
1586
|
+
"clickToEdit": "Click to edit",
|
|
1587
|
+
"selectUser": "Select user",
|
|
1588
|
+
"selectTeam": "Select team",
|
|
1589
|
+
"confirm": "Confirm",
|
|
1590
|
+
"update": "Update",
|
|
1591
|
+
"unassign": "Unassign",
|
|
1592
|
+
"unassignAll": "Unassign all",
|
|
1593
|
+
"loading": "Loading...",
|
|
1594
|
+
"me": "me"
|
|
1595
|
+
},
|
|
1546
1596
|
"dropzone": {
|
|
1547
1597
|
"drop": "Choose a file or drag it here",
|
|
1548
1598
|
"maxFileSize": "Maximum file size: ",
|
|
@@ -1852,7 +1902,7 @@
|
|
|
1852
1902
|
"formDefinitionView": "The name of the form IO definition that will be used to display the object.",
|
|
1853
1903
|
"formDefinitionEdit": "The name of the form IO definition that will be used to edit the object.",
|
|
1854
1904
|
"showInDataMenu": "Indicates whether the object type is visible in the menu",
|
|
1855
|
-
"suppressOutbox": "When enabled, read flows this
|
|
1905
|
+
"suppressOutbox": "When enabled, read flows for this object type skip outbox message creation."
|
|
1856
1906
|
},
|
|
1857
1907
|
"cancel": "Cancel",
|
|
1858
1908
|
"add": "Add object",
|
|
@@ -2284,7 +2334,8 @@
|
|
|
2284
2334
|
"general": "General",
|
|
2285
2335
|
"document": "Document",
|
|
2286
2336
|
"processes": "Processes",
|
|
2287
|
-
"forms": "Forms"
|
|
2337
|
+
"forms": "Forms",
|
|
2338
|
+
"formFlows": "Form flows"
|
|
2288
2339
|
},
|
|
2289
2340
|
"formDefinition": {
|
|
2290
2341
|
"name": "Name"
|
|
@@ -2553,5 +2604,56 @@
|
|
|
2553
2604
|
"rootObject": "Root level",
|
|
2554
2605
|
"manageRequiredFields": "Manage required fields",
|
|
2555
2606
|
"requiredFields": "Required fields"
|
|
2607
|
+
},
|
|
2608
|
+
"teams": {
|
|
2609
|
+
"title": "Teams",
|
|
2610
|
+
"listColumns": {
|
|
2611
|
+
"name": "Name",
|
|
2612
|
+
"members": "Members"
|
|
2613
|
+
},
|
|
2614
|
+
"newTeam": "New team",
|
|
2615
|
+
"noResults": {
|
|
2616
|
+
"title": "There are no teams",
|
|
2617
|
+
"description": "No teams have been created yet"
|
|
2618
|
+
},
|
|
2619
|
+
"createEditModal": {
|
|
2620
|
+
"createTitle": "Create new team",
|
|
2621
|
+
"editTitle": "Edit team",
|
|
2622
|
+
"createDescription": "Create a new team of users to assign to cases and tasks",
|
|
2623
|
+
"teamName": "Team name",
|
|
2624
|
+
"teamNamePlaceholder": "Team name",
|
|
2625
|
+
"create": "Create team",
|
|
2626
|
+
"save": "Save team"
|
|
2627
|
+
},
|
|
2628
|
+
"deleteModal": {
|
|
2629
|
+
"title": "Delete team",
|
|
2630
|
+
"content": "Are you sure you want to delete this team? This action cannot be undone."
|
|
2631
|
+
},
|
|
2632
|
+
"detail": {
|
|
2633
|
+
"title": "Team detail",
|
|
2634
|
+
"more": "More",
|
|
2635
|
+
"editTeam": "Edit team",
|
|
2636
|
+
"deleteTeam": "Delete team",
|
|
2637
|
+
"addMember": "Add member",
|
|
2638
|
+
"removeMember": "Remove member",
|
|
2639
|
+
"memberColumns": {
|
|
2640
|
+
"name": "Name",
|
|
2641
|
+
"email": "E-mail"
|
|
2642
|
+
},
|
|
2643
|
+
"noMembers": {
|
|
2644
|
+
"title": "There are no members",
|
|
2645
|
+
"description": "No members have been added to this team yet"
|
|
2646
|
+
},
|
|
2647
|
+
"addMemberModal": {
|
|
2648
|
+
"selectMember": "Select member",
|
|
2649
|
+
"selectMemberPlaceholder": "Choose option(s)",
|
|
2650
|
+
"noUsersAvailable": "No available users found",
|
|
2651
|
+
"addToTeam": "Add to team"
|
|
2652
|
+
},
|
|
2653
|
+
"removeMemberModal": {
|
|
2654
|
+
"title": "Remove member",
|
|
2655
|
+
"content": "Are you sure you want to remove this member from the team?"
|
|
2656
|
+
}
|
|
2657
|
+
}
|
|
2556
2658
|
}
|
|
2557
2659
|
}
|
package/assets/core/nl.json
CHANGED
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"modal": {
|
|
26
26
|
"confirm": "Toewijzen",
|
|
27
27
|
"selectLabel": "Toewijzen aan gebruiker",
|
|
28
|
+
"selectTeamLabel": "Toewijzen aan team",
|
|
28
29
|
"selectPlaceholder": "Kies een optie",
|
|
29
30
|
"title": "Wijs geselecteerde cases toe aan",
|
|
30
31
|
"warningTitle": "Waarschuwing",
|
|
@@ -49,6 +50,10 @@
|
|
|
49
50
|
"description": "Kom later nog eens terug.",
|
|
50
51
|
"title": "Alle dossiers hebben een behandelaar"
|
|
51
52
|
},
|
|
53
|
+
"TEAM": {
|
|
54
|
+
"description": "Er zijn nog geen dossiers aan je teams toegewezen.",
|
|
55
|
+
"title": "Geen teamdossiers"
|
|
56
|
+
},
|
|
52
57
|
"search": {
|
|
53
58
|
"description": "Er zijn geen dossiers die voldoen aan je zoekcriteria.",
|
|
54
59
|
"title": "Geen dossiers gevonden"
|
|
@@ -78,6 +83,7 @@
|
|
|
78
83
|
"MINE": "Mijn dossiers",
|
|
79
84
|
"OPEN": "Niet-toegewezen dossiers",
|
|
80
85
|
"ALL": "Alle dossiers",
|
|
86
|
+
"TEAM": "Teamdossiers",
|
|
81
87
|
"componentNotFound": "Tab-component niet gevonden",
|
|
82
88
|
"componentNotFoundMessage": "Er is geen component beschikbaar voor dit tabblad. Neem contact op met de systeembeheerder."
|
|
83
89
|
},
|
|
@@ -235,6 +241,7 @@
|
|
|
235
241
|
"delete": "Verwijderen",
|
|
236
242
|
"download": "Downloaden",
|
|
237
243
|
"edit": "Bewerken",
|
|
244
|
+
"preview": "Weergeven",
|
|
238
245
|
"application/octet-stream": "Onbekend",
|
|
239
246
|
"application/json": "JSON",
|
|
240
247
|
"application/msword": "DOC",
|
|
@@ -576,6 +583,14 @@
|
|
|
576
583
|
"description": "Beschrijving"
|
|
577
584
|
}
|
|
578
585
|
},
|
|
586
|
+
"importOrigin": {
|
|
587
|
+
"title": "Importherkomst",
|
|
588
|
+
"fields": {
|
|
589
|
+
"originalKey": "Oorspronkelijke sleutel",
|
|
590
|
+
"originalName": "Oorspronkelijke naam",
|
|
591
|
+
"originalVersionTag": "Oorspronkelijke versie"
|
|
592
|
+
}
|
|
593
|
+
},
|
|
579
594
|
"notFinalizableWarning": {
|
|
580
595
|
"title": "Deze dossierdefinitie kan niet definitief worden gemaakt.",
|
|
581
596
|
"BUILDING_BLOCK_NOT_FINAL": "De dossierdefinitie maakt gebruik van concept-bouwblokken. Om deze dossierdefinitie definitief te kunnen maken, moeten alle bouwblokken die het gebruikt definitief zijn.",
|
|
@@ -712,19 +727,14 @@
|
|
|
712
727
|
"tabType": {"custom": "Inhoud", "formio": "FormIO", "standard": "Standaard"},
|
|
713
728
|
"importDefinition": {
|
|
714
729
|
"title": "Case-definitie importeren",
|
|
715
|
-
"overwriteWarning": "Als je case-definitie configuraties, modellen en/of definities bevat met een naam of identifier die al op je systeem aanwezig zijn, worden deze overschreven.",
|
|
716
730
|
"startUpload": "Begin het uploaden",
|
|
717
|
-
"checkbox": {
|
|
718
|
-
"message": "Ik begrijp dat configuraties mogelijk worden overschreven",
|
|
719
|
-
"error": "Dit veld is verplicht"
|
|
720
|
-
},
|
|
721
731
|
"info": {
|
|
722
732
|
"title": "Let op",
|
|
723
733
|
"message": "Controleer of de plugin-configuraties die gebruikt worden in de proceskoppelingen aanwezig zijn."
|
|
724
734
|
},
|
|
725
735
|
"upload": {
|
|
726
736
|
"title": "Upload bestand",
|
|
727
|
-
"description": "De maximale bestandsgrootte is 500kb.
|
|
737
|
+
"description": "De maximale bestandsgrootte is 500kb. Ondersteund bestandstype is ZIP.",
|
|
728
738
|
"buttonText": "Selecteer bestand"
|
|
729
739
|
},
|
|
730
740
|
"progressBar": {
|
|
@@ -733,9 +743,26 @@
|
|
|
733
743
|
"finished": "Dossier-definitie succesvol geïmporteerd",
|
|
734
744
|
"label": "Dossier-definitie importeren"
|
|
735
745
|
},
|
|
736
|
-
"
|
|
737
|
-
"
|
|
738
|
-
"
|
|
746
|
+
"invalidZipError": {
|
|
747
|
+
"title": "Ongeldig bestand",
|
|
748
|
+
"text": "Het bestand kon niet worden gelezen als een geldig case-definitie archief."
|
|
749
|
+
},
|
|
750
|
+
"configure": {
|
|
751
|
+
"draftTag": "Concept",
|
|
752
|
+
"finalTag": "Definitief",
|
|
753
|
+
"newVersionWarning": {
|
|
754
|
+
"title": "Nieuwe versie",
|
|
755
|
+
"message": "Er bestaat al een case-definitie met deze key. Dit wordt geïmporteerd als nieuwe versie."
|
|
756
|
+
},
|
|
757
|
+
"existingDraftWarning": {
|
|
758
|
+
"title": "Waarschuwing",
|
|
759
|
+
"message": "Er bestaat al een conceptversie met deze key en versie. Importeren overschrijft het bestaande concept."
|
|
760
|
+
},
|
|
761
|
+
"overrideConfirm": "Ik begrijp dat het bestaande concept wordt overschreven",
|
|
762
|
+
"existingFinalWarning": {
|
|
763
|
+
"title": "Kan niet importeren",
|
|
764
|
+
"message": "Er bestaat al een definitieve versie met deze key en versie. Wijzig de key om onder een andere naam te importeren."
|
|
765
|
+
}
|
|
739
766
|
},
|
|
740
767
|
"steps": {
|
|
741
768
|
"accessControl": {
|
|
@@ -1127,6 +1154,13 @@
|
|
|
1127
1154
|
"noColumns": {
|
|
1128
1155
|
"description": "Klik hier om een kolom voor dit document te configureren",
|
|
1129
1156
|
"title": "Er zijn geen kolommen geconfigureerd voor dit document."
|
|
1157
|
+
},
|
|
1158
|
+
"preview": {
|
|
1159
|
+
"downloadOriginal": "Download origineel",
|
|
1160
|
+
"modal": {
|
|
1161
|
+
"header": "Document weergave"
|
|
1162
|
+
},
|
|
1163
|
+
"pdfViewerNotSupported": "Uw browser biedt geen ondersteuning voor het weergeven van PDF bestanden."
|
|
1130
1164
|
}
|
|
1131
1165
|
},
|
|
1132
1166
|
"notifications": {
|
|
@@ -1246,6 +1280,12 @@
|
|
|
1246
1280
|
"noResultsDescription": "Kom later nog eens terug.",
|
|
1247
1281
|
"noResultsTitle": "Alle taken zijn al toegewezen"
|
|
1248
1282
|
},
|
|
1283
|
+
"team": {
|
|
1284
|
+
"title": "Teamtaken",
|
|
1285
|
+
"description": "Overzicht van alle taken toegewezen aan je teams",
|
|
1286
|
+
"noResultsDescription": "Er zijn nog geen taken aan je teams toegewezen.",
|
|
1287
|
+
"noResultsTitle": "Geen teamtaken"
|
|
1288
|
+
},
|
|
1249
1289
|
"all": {
|
|
1250
1290
|
"title": "Alle taken",
|
|
1251
1291
|
"description": "Overzicht van alle taken",
|
|
@@ -1570,6 +1610,19 @@
|
|
|
1570
1610
|
"fetchingUsers": "Gebruikers ophalen...",
|
|
1571
1611
|
"submitButtonText": "Gebruiker toewijzen aan dossier"
|
|
1572
1612
|
},
|
|
1613
|
+
"assignment": {
|
|
1614
|
+
"assignThisCase": "Dossier toewijzen",
|
|
1615
|
+
"assignThisTask": "Taak toewijzen",
|
|
1616
|
+
"clickToEdit": "Klik om te bewerken",
|
|
1617
|
+
"selectUser": "Selecteer gebruiker",
|
|
1618
|
+
"selectTeam": "Selecteer team",
|
|
1619
|
+
"confirm": "Bevestigen",
|
|
1620
|
+
"update": "Bijwerken",
|
|
1621
|
+
"unassign": "Toewijzing ongedaan maken",
|
|
1622
|
+
"unassignAll": "Alles vrijgeven",
|
|
1623
|
+
"loading": "Laden...",
|
|
1624
|
+
"me": "mij"
|
|
1625
|
+
},
|
|
1573
1626
|
"dropzone": {
|
|
1574
1627
|
"drop": "Kies een bestand, of sleep het hier naartoe",
|
|
1575
1628
|
"maxFileSize": "Maximale bestandsgrootte: ",
|
|
@@ -2317,7 +2370,8 @@
|
|
|
2317
2370
|
"general": "Algemeen",
|
|
2318
2371
|
"document": "Document",
|
|
2319
2372
|
"processes": "Processen",
|
|
2320
|
-
"forms": "Formulieren"
|
|
2373
|
+
"forms": "Formulieren",
|
|
2374
|
+
"formFlows": "Form flows"
|
|
2321
2375
|
},
|
|
2322
2376
|
"formDefinition": {
|
|
2323
2377
|
"name": "Naam"
|
|
@@ -2586,5 +2640,56 @@
|
|
|
2586
2640
|
"rootObject": "Hoofdniveau",
|
|
2587
2641
|
"manageRequiredFields": "Vereiste velden beheren",
|
|
2588
2642
|
"requiredFields": "Vereiste velden"
|
|
2643
|
+
},
|
|
2644
|
+
"teams": {
|
|
2645
|
+
"title": "Teams",
|
|
2646
|
+
"listColumns": {
|
|
2647
|
+
"name": "Naam",
|
|
2648
|
+
"members": "Leden"
|
|
2649
|
+
},
|
|
2650
|
+
"newTeam": "Nieuw team",
|
|
2651
|
+
"noResults": {
|
|
2652
|
+
"title": "Er zijn geen teams",
|
|
2653
|
+
"description": "Er zijn nog geen teams aangemaakt"
|
|
2654
|
+
},
|
|
2655
|
+
"createEditModal": {
|
|
2656
|
+
"createTitle": "Nieuw team aanmaken",
|
|
2657
|
+
"editTitle": "Team bewerken",
|
|
2658
|
+
"createDescription": "Maak een nieuw team van gebruikers aan om toe te wijzen aan dossiers en taken",
|
|
2659
|
+
"teamName": "Teamnaam",
|
|
2660
|
+
"teamNamePlaceholder": "Teamnaam",
|
|
2661
|
+
"create": "Team aanmaken",
|
|
2662
|
+
"save": "Team opslaan"
|
|
2663
|
+
},
|
|
2664
|
+
"deleteModal": {
|
|
2665
|
+
"title": "Team verwijderen",
|
|
2666
|
+
"content": "Weet u zeker dat u dit team wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt."
|
|
2667
|
+
},
|
|
2668
|
+
"detail": {
|
|
2669
|
+
"title": "Team detail",
|
|
2670
|
+
"more": "Meer",
|
|
2671
|
+
"editTeam": "Team bewerken",
|
|
2672
|
+
"deleteTeam": "Team verwijderen",
|
|
2673
|
+
"addMember": "Lid toevoegen",
|
|
2674
|
+
"removeMember": "Lid verwijderen",
|
|
2675
|
+
"memberColumns": {
|
|
2676
|
+
"name": "Naam",
|
|
2677
|
+
"email": "E-mail"
|
|
2678
|
+
},
|
|
2679
|
+
"noMembers": {
|
|
2680
|
+
"title": "Er zijn geen leden",
|
|
2681
|
+
"description": "Er zijn nog geen leden aan dit team toegevoegd"
|
|
2682
|
+
},
|
|
2683
|
+
"addMemberModal": {
|
|
2684
|
+
"selectMember": "Selecteer lid",
|
|
2685
|
+
"selectMemberPlaceholder": "Kies optie(s)",
|
|
2686
|
+
"noUsersAvailable": "Geen beschikbare gebruikers gevonden",
|
|
2687
|
+
"addToTeam": "Toevoegen aan team"
|
|
2688
|
+
},
|
|
2689
|
+
"removeMemberModal": {
|
|
2690
|
+
"title": "Lid verwijderen",
|
|
2691
|
+
"content": "Weet u zeker dat u dit lid uit het team wilt verwijderen?"
|
|
2692
|
+
}
|
|
2693
|
+
}
|
|
2589
2694
|
}
|
|
2590
2695
|
}
|