-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathen.json
3322 lines (3322 loc) · 139 KB
/
en.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"+8EnHh": {
"defaultMessage": "Are you sure you want to delete this action?",
"description": "Logic rule action deletion confirm message",
"originalDefault": "Are you sure you want to delete this action?"
},
"+BicbW": {
"defaultMessage": "Configure",
"description": "Manage complex process vars configure link text",
"originalDefault": "Configure"
},
"+DztEl": {
"defaultMessage": "Path",
"description": "Service fetch configuration modal form Path field label",
"originalDefault": "Path"
},
"+Te82K": {
"defaultMessage": "Optional ZGW configuration",
"description": "ZGW APIs registration: default overrides fieldset title",
"originalDefault": "Optional ZGW configuration"
},
"+dcHiF": {
"defaultMessage": "A case of this type will be created during registration.",
"description": "ZGW APIs registration options 'case type' helpText",
"originalDefault": "A case of this type will be created during registration."
},
"+dcsE0": {
"defaultMessage": "Remove value",
"description": "Delete datetime value",
"originalDefault": "Remove value"
},
"+hAGg7": {
"defaultMessage": "Users will not be able to start the form if it is in maintenance mode.",
"description": "Form maintenance mode field help text",
"originalDefault": "Users will not be able to start the form if it is in maintenance mode."
},
"+peJTt": {
"defaultMessage": "is equal to",
"description": "\"==\" operator description",
"originalDefault": "is equal to"
},
"+rILvF": {
"defaultMessage": "Mark the form step as applicable",
"description": "action type \"step-applicable\" label",
"originalDefault": "Mark the form step as applicable"
},
"/fAEsY": {
"defaultMessage": "Submission report CSV informatieobjecttype",
"description": "Objects API registration options \"Submission report CSV informatieobjecttype\" label",
"originalDefault": "Submission report CSV informatieobjecttype"
},
"/rF8P0": {
"defaultMessage": "Configuration",
"description": "Service fetch config configuration tab title",
"originalDefault": "Configuration"
},
"01mWK2": {
"defaultMessage": "The format(s) of the attachment(s) containing the submission details",
"description": "Email registration options 'attachmentFormats' label",
"originalDefault": "The format(s) of the attachment(s) containing the submission details"
},
"0EYS7D": {
"defaultMessage": "Objecttype",
"description": "Objects API prefill options 'Objecttype' label",
"originalDefault": "Objecttype"
},
"0M2B7B": {
"defaultMessage": "DMN variable",
"description": "DMN variable label",
"originalDefault": "DMN variable"
},
"0RXE97": {
"defaultMessage": "Literals",
"description": "Form literals tab title",
"originalDefault": "Literals"
},
"0ZtMje": {
"defaultMessage": "Are you sure you want to delete the step {step}?",
"description": "Step delete confirmation",
"originalDefault": "Are you sure you want to delete the step {step}?"
},
"0c0WcI": {
"defaultMessage": "Form configuration",
"description": "Form configuration fieldset title",
"originalDefault": "Form configuration"
},
"0h7gYQ": {
"defaultMessage": "Specify a ZGW property name.",
"description": "Column help text for case property that a variable is mapped to",
"originalDefault": "Specify a ZGW property name."
},
"10KWbo": {
"defaultMessage": "BRP Personen processing header value",
"description": "Form 'BRP Personen processing header value' field label",
"originalDefault": "BRP Personen processing header value"
},
"1ArmQ5": {
"defaultMessage": "Confirm",
"description": "Camunda complex process variables confirm button",
"originalDefault": "Confirm"
},
"1HfdUc": {
"defaultMessage": "The API group specifies which objects and objecttypes services to use.",
"description": "Objects API group field help text",
"originalDefault": "The API group specifies which objects and objecttypes services to use."
},
"1I9Slb": {
"defaultMessage": "DMN configuration:",
"description": "Configuration button DMN label",
"originalDefault": "DMN configuration:"
},
"1M3VJC": {
"defaultMessage": "Configure options",
"description": "Link label to open registration options modal",
"originalDefault": "Configure options"
},
"1fD+K4": {
"defaultMessage": "Incomplete Submissions Removal Method",
"description": "Incomplete Submissions Removal Method field label",
"originalDefault": "Incomplete Submissions Removal Method"
},
"1iwlXs": {
"defaultMessage": "Add variable",
"description": "Add variable button",
"originalDefault": "Add variable"
},
"1lMaOI": {
"defaultMessage": "Open Forms variable",
"description": "Open Forms variable label",
"originalDefault": "Open Forms variable"
},
"1y4N2r": {
"defaultMessage": "RSIN of the organization, which creates and owns the case and documents.",
"description": "ZGW APIs registration options 'organisationRSIN' help text",
"originalDefault": "RSIN of the organization, which creates and owns the case and documents."
},
"1z/bNS": {
"defaultMessage": "Zds zaaktype code",
"description": "StUF-ZDS registration options 'zdsZaaktypeCode' label",
"originalDefault": "Zds zaaktype code"
},
"20K9To": {
"defaultMessage": "Service fetch configuration",
"description": "Service fetch configuration selection modal title",
"originalDefault": "Service fetch configuration"
},
"294MCM": {
"defaultMessage": "Is deleted",
"description": "Form deleted field label",
"originalDefault": "Is deleted"
},
"2MK7iF": {
"defaultMessage": "Number",
"description": "JSON variable type \"number\" representation",
"originalDefault": "Number"
},
"2P7mDI": {
"defaultMessage": "Content of the registration email message (as text).",
"description": "Email registration options 'emailContentTemplateText' helpText",
"originalDefault": "Content of the registration email message (as text)."
},
"2Z/hNo": {
"defaultMessage": "Type",
"description": "Camunda complex process var 'type' label",
"originalDefault": "Type"
},
"2boL55": {
"defaultMessage": "Query parameters",
"description": "Service fetch configuration modal form query parameters field label",
"originalDefault": "Query parameters"
},
"2d5RfI": {
"defaultMessage": "Registration backend options",
"description": "Registration backend options label",
"originalDefault": "Registration backend options"
},
"2emuJW": {
"defaultMessage": "Cancel",
"description": "Cancel link",
"originalDefault": "Cancel"
},
"2k1bnf": {
"defaultMessage": "API group",
"description": "Objects API group field label",
"originalDefault": "API group"
},
"2nxTFx": {
"defaultMessage": "Postcode Schema target",
"description": "Objects registration variable mapping, addressNL component: 'options.postcode schema target' label",
"originalDefault": "Postcode Schema target"
},
"2uIYst": {
"defaultMessage": "The process definition for which to start a process instance.",
"description": "Camunda 'process definition' help text",
"originalDefault": "The process definition for which to start a process instance."
},
"3FxzLm": {
"defaultMessage": "When {desc}",
"description": "Logic expression generated description",
"originalDefault": "When {desc}"
},
"3SCiQR": {
"defaultMessage": "Copy configuration from registration",
"description": "Objects API prefill options: link to show copy from registration button",
"originalDefault": "Copy configuration from registration"
},
"3W3Px9": {
"defaultMessage": "Add another",
"description": "Button text to add extra item",
"originalDefault": "Add another"
},
"3ZtB10": {
"defaultMessage": "Ask statement of truth",
"description": "Form askStatementOfTruth field label",
"originalDefault": "Ask statement of truth"
},
"3z1hhJ": {
"defaultMessage": "Toggle JSON Schema",
"description": "Objects API variable configuration editor JSON Schema visibility toggle",
"originalDefault": "Toggle JSON Schema"
},
"3zaZWN": {
"defaultMessage": "Plugin configuration: demo",
"description": "Demo registration options modal title",
"originalDefault": "Plugin configuration: demo"
},
"4FQxD/": {
"defaultMessage": "Configure",
"description": "JSON editor: 'configure' header label",
"originalDefault": "Configure"
},
"4sFGgA": {
"defaultMessage": "The expressions here are extracted from the selected decision definition. It's possible certain inputs are displayed here that are already provided by a dependency of the selected decision, due to the complexity of the input expression.",
"description": "DMN input expressions warning about extraction accuracy",
"originalDefault": "The expressions here are extracted from the selected decision definition. It's possible certain inputs are displayed here that are already provided by a dependency of the selected decision, due to the complexity of the input expression."
},
"5/5LjA": {
"defaultMessage": "Enable {plugin}",
"description": "Plugin enabled label",
"originalDefault": "Enable {plugin}"
},
"5/xPX6": {
"defaultMessage": "Name",
"description": "Form name field label",
"originalDefault": "Name"
},
"5AC1+x": {
"defaultMessage": "The value of the selected field will be the process variable value.",
"description": "Manage process vars component help text",
"originalDefault": "The value of the selected field will be the process variable value."
},
"5EOSwM": {
"defaultMessage": "Additional",
"description": "JSON registration options 'additionalMetadataVariables' label",
"originalDefault": "Additional"
},
"5JNnFB": {
"defaultMessage": "Switching to the legacy registration options will remove the existing variables mapping. Are you sure you want to continue?",
"description": "Objects API registration backend: v1 switch warning message",
"originalDefault": "Switching to the legacy registration options will remove the existing variables mapping. Are you sure you want to continue?"
},
"5MiyLE": {
"defaultMessage": "Configure",
"description": "Button to open DMN configuration modal",
"originalDefault": "Configure"
},
"5P+YgL": {
"defaultMessage": "Add step",
"description": "add step button",
"originalDefault": "Add step"
},
"5QLG/6": {
"defaultMessage": "Add another value",
"description": "Label for add button used in MappingArrayInput",
"originalDefault": "Add another value"
},
"5obGLN": {
"defaultMessage": "User defined",
"description": "Variable source group label for user defined variables",
"originalDefault": "User defined"
},
"5rj0a+": {
"defaultMessage": "Service",
"description": "JSON registration options 'serviceSelect' label",
"originalDefault": "Service"
},
"5uaKBM": {
"defaultMessage": "minus",
"description": "\"-\" operator description",
"originalDefault": "minus"
},
"5zieWh": {
"defaultMessage": "Name of the form definition used in this form step",
"description": "Form step name field help text",
"originalDefault": "Name of the form definition used in this form step"
},
"6IAwkJ": {
"defaultMessage": "This form step requires a login, but no authentication backend has been specified.",
"description": "No authentication backend selected warning.",
"originalDefault": "This form step requires a login, but no authentication backend has been specified."
},
"6PIG4q": {
"defaultMessage": "Authentication",
"description": "Auth plugin field label",
"originalDefault": "Authentication"
},
"6ZW12a": {
"defaultMessage": "Request body",
"description": "Service fetch configuration modal form request body field label",
"originalDefault": "Request body"
},
"6hApJ7": {
"defaultMessage": "Stay logged in",
"description": "Extend session button",
"originalDefault": "Stay logged in"
},
"6jv6nd": {
"defaultMessage": "Data type",
"description": "DMN Input clause data type header",
"originalDefault": "Data type"
},
"6k14SS": {
"defaultMessage": "Key",
"description": "Variable table key title",
"originalDefault": "Key"
},
"6qPITC": {
"defaultMessage": "Something went wrong while retrieving the available object types.",
"description": "Objects API prefill options: object type select error",
"originalDefault": "Something went wrong while retrieving the available object types."
},
"7/Bhpw": {
"defaultMessage": "Please fill in the name of the previous variable before adding another",
"description": "Warning to finish invalid user defined variable",
"originalDefault": "Please fill in the name of the previous variable before adding another"
},
"7/n6O+": {
"defaultMessage": "This form has no versions.",
"description": "No form version history message",
"originalDefault": "This form has no versions."
},
"70Q0CM": {
"defaultMessage": "Previous text",
"description": "literals.previousText form label",
"originalDefault": "Previous text"
},
"7F64bK": {
"defaultMessage": "Whether the form is (soft) deleted",
"description": "Form deleted field help text",
"originalDefault": "Whether the form is (soft) deleted"
},
"7JMcZW": {
"defaultMessage": "The text that will be displayed at the start of the form to indicate the user can begin to fill in the form. Leave blank to get value from global configuration.",
"description": "literals.beginText help text",
"originalDefault": "The text that will be displayed at the start of the form to indicate the user can begin to fill in the form. Leave blank to get value from global configuration."
},
"7RVZYq": {
"defaultMessage": "Unique identifier for the form",
"description": "Form ID field help text",
"originalDefault": "Unique identifier for the form"
},
"7X6yT4": {
"defaultMessage": "You are modifying an existing form definition! This change affects <link>{count, plural, one {# form} other {# forms} }</link>",
"description": "Warning when modifying existing form definitions",
"originalDefault": "You are modifying an existing form definition! This change affects <link>{count, plural, one {# form} other {# forms} }</link>"
},
"7YqZOp": {
"defaultMessage": "Next text",
"description": "Form step next text label",
"originalDefault": "Next text"
},
"7ZdEaP": {
"defaultMessage": "Documenttype description for newly created zaken in StUF-ZDS",
"description": "StUF-ZDS registration options 'zdsDocumenttypeOmschrijvingInzending' helpText",
"originalDefault": "Documenttype description for newly created zaken in StUF-ZDS"
},
"7cfkp6": {
"defaultMessage": "Expected input expressions",
"description": "DMN input expressions title",
"originalDefault": "Expected input expressions"
},
"7di6Fm": {
"defaultMessage": "is less than or equal to",
"description": "\"<=\" operator description",
"originalDefault": "is less than or equal to"
},
"7gZkW/": {
"defaultMessage": "Registration",
"description": "Variable table registration title",
"originalDefault": "Registration"
},
"7hc31v": {
"defaultMessage": "The email addresses to which the payment status update will be sent (defaults to general registration addresses)",
"description": "Email registration options 'paymentEmails' label",
"originalDefault": "The email addresses to which the payment status update will be sent (defaults to general registration addresses)"
},
"7jY1U4": {
"defaultMessage": "Fields",
"description": "Form definition formio configuration",
"originalDefault": "Fields"
},
"833GAg": {
"defaultMessage": "Input mapping",
"description": "Input mapping title",
"originalDefault": "Input mapping"
},
"89fqYz": {
"defaultMessage": "Is reusable?",
"description": "Form step is reusable label",
"originalDefault": "Is reusable?"
},
"8LLxRg": {
"defaultMessage": "The text that will be displayed in the form step to save the current information. Leave blank to get value from global configuration.",
"description": "Form step save text field help text",
"originalDefault": "The text that will be displayed in the form step to save the current information. Leave blank to get value from global configuration."
},
"8NbOpb": {
"defaultMessage": "Variables",
"description": "Variables tab title",
"originalDefault": "Variables"
},
"8VqmbG": {
"defaultMessage": "Type",
"description": "JSON editor: 'type' header label",
"originalDefault": "Type"
},
"8ZSQ9s": {
"defaultMessage": "Whether to display the short progress summary, indicating the current step number and total amount of steps.",
"description": "Summary of the progress help text",
"originalDefault": "Whether to display the short progress summary, indicating the current step number and total amount of steps."
},
"8hSjw4": {
"defaultMessage": "Component {label} ({key}) uses a non-existent component key {missingKey} in the simple logic.",
"description": "Wrong simple logic warning",
"originalDefault": "Component {label} ({key}) uses a non-existent component key {missingKey} in the simple logic."
},
"8nY+h7": {
"defaultMessage": "Zaaktype description for newly created Zaken in StUF-ZDS",
"description": "StUF-ZDS registration options 'zdsZaaktypeOmschrijving' helpText",
"originalDefault": "Zaaktype description for newly created Zaken in StUF-ZDS"
},
"8pemD3": {
"defaultMessage": "Edit variable {name}",
"description": "JSON editor: variable edit panel title",
"originalDefault": "Edit variable {name}"
},
"91XY1Q": {
"defaultMessage": "Is not sensitive",
"description": "Is not sensitive icon title",
"originalDefault": "Is not sensitive"
},
"9AQi2/": {
"defaultMessage": "Please select the logic type:",
"description": "Logic type selection label",
"originalDefault": "Please select the logic type:"
},
"9LdZVP": {
"defaultMessage": "Attribute",
"description": "Variable prefill attribute label",
"originalDefault": "Attribute"
},
"9LflJr": {
"defaultMessage": "Key",
"description": "Label for 'key' in MappingArrayInput table column",
"originalDefault": "Key"
},
"9RDDDn": {
"defaultMessage": "{varCount, plural, =0 {} one {(1 variable defined)} other {({varCount} variables defined)} }",
"description": "Managed complex Camunda process vars state feedback",
"originalDefault": "{varCount, plural, =0 {} one {(1 variable defined)} other {({varCount} variables defined)} }"
},
"9WZkZg": {
"defaultMessage": "Changing the objecttype will remove the existing variables mapping. Are you sure you want to continue?",
"description": "Objects API registration options: warning message when changing the object type",
"originalDefault": "Changing the objecttype will remove the existing variables mapping. Are you sure you want to continue?"
},
"9akVrT": {
"defaultMessage": "Zds documenttype omschrijving inzending",
"description": "StUF-ZDS registration options 'zdsDocumenttypeOmschrijvingInzending' label",
"originalDefault": "Zds documenttype omschrijving inzending"
},
"9bGp7h": {
"defaultMessage": "Active",
"description": "Form active field label",
"originalDefault": "Active"
},
"9dLOs2": {
"defaultMessage": "and",
"description": "Extra logic action prefix",
"originalDefault": "and"
},
"9fW2NX": {
"defaultMessage": "Sorry! Something unexpected went wrong.<br></br>Contact your technical administrator to investigate, or perhaps more information is available in the <link>outgoing request logs</link>.",
"description": "Generic admin error message",
"originalDefault": "Sorry! Something unexpected went wrong.<br></br>Contact your technical administrator to investigate, or perhaps more information is available in the <link>outgoing request logs</link>."
},
"9y3/ek": {
"defaultMessage": "Confirm",
"description": "JSON editor: confirm edited variable definition",
"originalDefault": "Confirm"
},
"9zJefY": {
"defaultMessage": "Errored Submissions Removal Limit",
"description": "Errored Submissions Removal Limit field label",
"originalDefault": "Errored Submissions Removal Limit"
},
"A1tDIH": {
"defaultMessage": "Name",
"description": "Registration backend long name",
"originalDefault": "Name"
},
"A3uQyR": {
"defaultMessage": "Display main website link",
"description": "Display main website link field label",
"originalDefault": "Display main website link"
},
"ADAp0E": {
"defaultMessage": "Please log in again to continue.",
"description": "Call to action to log in again",
"originalDefault": "Please log in again to continue."
},
"AFyQut": {
"defaultMessage": "is greater than",
"description": "\">\" operator description",
"originalDefault": "is greater than"
},
"AHfeW/": {
"defaultMessage": "Configure",
"description": "Button to open service fetch configuration modal",
"originalDefault": "Configure"
},
"AHsD4C": {
"defaultMessage": "Something went wrong retrieving the available object type versions.",
"description": "Objects API registrations options: object type version select error",
"originalDefault": "Something went wrong retrieving the available object type versions."
},
"APOVFs": {
"defaultMessage": "Form details",
"description": "Form details fieldset title",
"originalDefault": "Form details"
},
"AUADgz": {
"defaultMessage": "The text that will be displayed in the overview page to change a certain step. Leave blank to get value from global configuration.",
"description": "literals.changeText help text",
"originalDefault": "The text that will be displayed in the overview page to change a certain step. Leave blank to get value from global configuration."
},
"AWyevn": {
"defaultMessage": "Confidentiality",
"description": "ZGW APIs registration options 'zaakVertrouwelijkheidaanduiding' label",
"originalDefault": "Confidentiality"
},
"AdyBdF": {
"defaultMessage": "Something went wrong while retrieving the available role types defined in the selected case. Please check that the services in the selected API group are configured correctly.",
"description": "ZGW APIs registrations options: role type error",
"originalDefault": "Something went wrong while retrieving the available role types defined in the selected case. Please check that the services in the selected API group are configured correctly."
},
"AkG8Zu": {
"defaultMessage": "Plugin configuration: JSON",
"description": "JSON registration options modal title",
"originalDefault": "Plugin configuration: JSON"
},
"AtBVAV": {
"defaultMessage": "Confirm",
"description": "Form definition select confirm button",
"originalDefault": "Confirm"
},
"B/A1Bk": {
"defaultMessage": "Which merchant should be used for payments related to this form.",
"description": "Ogone legacy payment options 'merchantId' help text",
"originalDefault": "Which merchant should be used for payments related to this form."
},
"B5RSyi": {
"defaultMessage": "Email payment subject",
"description": "Email registration options 'emailPaymentSubject' label",
"originalDefault": "Email payment subject"
},
"BHr/3M": {
"defaultMessage": "If specified, the recipient email addresses will be taken from the selected variable. You must still specify 'regular' email addresses as a fallback, in case something is wrong with the variable.",
"description": "Email registration options 'toEmailsFromVariable' helpText",
"originalDefault": "If specified, the recipient email addresses will be taken from the selected variable. You must still specify 'regular' email addresses as a fallback, in case something is wrong with the variable."
},
"BKTOtD": {
"defaultMessage": "{varCount, plural, =0 {} one {(1 variable mapped)} other {({varCount} variables mapped)} }",
"description": "Managed Camunda process vars state feedback",
"originalDefault": "{varCount, plural, =0 {} one {(1 variable mapped)} other {({varCount} variables mapped)} }"
},
"BR6rKB": {
"defaultMessage": "Check to include the field as process variable",
"description": "Manage complex process vars enabled checkbox help text",
"originalDefault": "Check to include the field as process variable"
},
"BStu9Z": {
"defaultMessage": "Form",
"description": "Form fields tab title",
"originalDefault": "Form"
},
"Bc8xyG": {
"defaultMessage": "Show summary progress",
"description": "showSummaryProgress field label",
"originalDefault": "Show summary progress"
},
"BcuXrg": {
"defaultMessage": "Boolean",
"description": "data type boolean",
"originalDefault": "Boolean"
},
"BiKRJT": {
"defaultMessage": "Key",
"description": "Fixed metadata table name key title",
"originalDefault": "Key"
},
"Bin/vM": {
"defaultMessage": "Save changes",
"description": "Text on button in modal to save design token values",
"originalDefault": "Save changes"
},
"BqA9of": {
"defaultMessage": "Try it out",
"description": "Service fetch config try it out tab title",
"originalDefault": "Try it out"
},
"BrGg65": {
"defaultMessage": "plus",
"description": "\"+\" operator description",
"originalDefault": "plus"
},
"C+91tl": {
"defaultMessage": "Data extraction",
"description": "Service fetch configuration modal data extraction fieldset title",
"originalDefault": "Data extraction"
},
"C2FSDV": {
"defaultMessage": "Documents produced in the form submission are registered with this document type, unless more fine grained configuration is available. Only document types available on the selected case type are shown.",
"description": "ZGW APIs registration options 'document type' helpText",
"originalDefault": "Documents produced in the form submission are registered with this document type, unless more fine grained configuration is available. Only document types available on the selected case type are shown."
},
"C4Zn+R": {
"defaultMessage": "Internal name of the form definition used in this form step",
"description": "Form step internal name field help text",
"originalDefault": "Internal name of the form definition used in this form step"
},
"CD6UBS": {
"defaultMessage": "Global setting",
"description": "option \"global_setting\" of statement checkbox configuration",
"originalDefault": "Global setting"
},
"CGSzx/": {
"defaultMessage": "Whether to map this variable to the {geometryPath} attribute",
"description": "'Map to geometry field' checkbox help text",
"originalDefault": "Whether to map this variable to the {geometryPath} attribute"
},
"CN9j+L": {
"defaultMessage": "Delete",
"description": "Delete icon title",
"originalDefault": "Delete"
},
"CXKQZZ": {
"defaultMessage": "Confirmation",
"description": "Form confirmation options tab title",
"originalDefault": "Confirmation"
},
"CXwWdu": {
"defaultMessage": "Whether the form is active or not. Deactivated forms cannot be started.",
"description": "Form active field help text",
"originalDefault": "Whether the form is active or not. Deactivated forms cannot be started."
},
"CYtRRM": {
"defaultMessage": "value",
"description": "\"literal\" operand type",
"originalDefault": "value"
},
"CiaAYL": {
"defaultMessage": "Select the allowed authentication plugins to log in at the start of the form.",
"description": "Auth plugin field help text",
"originalDefault": "Select the allowed authentication plugins to log in at the start of the form."
},
"Ckzpff": {
"defaultMessage": "Use a variable for the price",
"description": "variable pricing mode label",
"originalDefault": "Use a variable for the price"
},
"CtjZFq": {
"defaultMessage": "Submission allowed",
"description": "Form submissionAllowed field label",
"originalDefault": "Submission allowed"
},
"Cz+O0n": {
"defaultMessage": "Source",
"description": "Fixed metadata table source title",
"originalDefault": "Source"
},
"D6NRQk": {
"defaultMessage": "Detected problems in {count} logic rule(s).",
"description": "Logic tab warning icon message",
"originalDefault": "Detected problems in {count} logic rule(s)."
},
"D717gY": {
"defaultMessage": "Other options",
"description": "Objects registration: other options",
"originalDefault": "Other options"
},
"DEAqyQ": {
"defaultMessage": "Boolean",
"description": "JSON variable type \"boolean\" representation",
"originalDefault": "Boolean"
},
"DFQ0Pq": {
"defaultMessage": "Update existing objects",
"description": "Objects registration: update existing objects settings",
"originalDefault": "Update existing objects"
},
"DGpAyT": {
"defaultMessage": "Move down",
"description": "Move down icon title",
"originalDefault": "Move down"
},
"DHVDF/": {
"defaultMessage": "Cosign subject",
"description": "Confirmation Email for cosign Subject label",
"originalDefault": "Cosign subject"
},
"DJ8XX2": {
"defaultMessage": "Select a registration backend and click the button to copy the configuration.",
"description": "Copy Objects API prefill configuration from registration backend help text",
"originalDefault": "Select a registration backend and click the button to copy the configuration."
},
"DRG6XN": {
"defaultMessage": "invalid input mapping(s)",
"description": "Warning message: DMN input mapping problems detected",
"originalDefault": "invalid input mapping(s)"
},
"DRidde": {
"defaultMessage": "Could not retrieve the decision definitions IDs/versions. Is the selected DMN plugin running and properly configured?",
"description": "Admin error for API error when configuring Camunda actions",
"originalDefault": "Could not retrieve the decision definitions IDs/versions. Is the selected DMN plugin running and properly configured?"
},
"DWhkNq": {
"defaultMessage": "Plugin",
"description": "Variable prefill plugin label",
"originalDefault": "Plugin"
},
"DaxIUG": {
"defaultMessage": "Variable key",
"description": "'Variable key' label",
"originalDefault": "Variable key"
},
"DbajPO": {
"defaultMessage": "Indication of the level to which extent the case is meant to be public. The value selected here will override the default configured on the case type.",
"description": "ZGW APIs registration options 'zaakVertrouwelijkheidaanduiding' help text",
"originalDefault": "Indication of the level to which extent the case is meant to be public. The value selected here will override the default configured on the case type."
},
"DcI1VF": {
"defaultMessage": "Session expired",
"description": "Modal title session expired",
"originalDefault": "Session expired"
},
"Dog4vX": {
"defaultMessage": "This field is required.",
"description": "Required error message",
"originalDefault": "This field is required."
},
"DqG0YS": {
"defaultMessage": "Enable from step:",
"description": "'Trigger from step' label",
"originalDefault": "Enable from step:"
},
"DxGKNm": {
"defaultMessage": "Logic",
"description": "Logic fieldset title",
"originalDefault": "Logic"
},
"DyF32d": {
"defaultMessage": "Indicates whether or not the submission CSV should be uploaded as a Document in Documenten API and attached to the product request.",
"description": "Objects API registration: uploadSubmissionCsv helpText",
"originalDefault": "Indicates whether or not the submission CSV should be uploaded as a Document in Documenten API and attached to the product request."
},
"EBsxTk": {
"defaultMessage": "Field",
"description": "Manage process vars component column title",
"originalDefault": "Field"
},
"EDwCbX": {
"defaultMessage": "<code>{componentKey}</code>: in {numSteps, plural, =1 {{tail}} other {{lead} and {tail}} }",
"description": "Description of which key is duplicated in which steps.",
"originalDefault": "<code>{componentKey}</code>: in {numSteps, plural, =1 {{tail}} other {{lead} and {tail}} }"
},
"ENyg8G": {
"defaultMessage": "There are multiple co-sign components specified in this form. At most one should be present.",
"description": "Too many cosign components",
"originalDefault": "There are multiple co-sign components specified in this form. At most one should be present."
},
"EQho4S": {
"defaultMessage": "API group",
"description": "ZGW APIs group field label",
"originalDefault": "API group"
},
"Ekld1h": {
"defaultMessage": "Save as new",
"description": "Save as new service fetch configuration button label",
"originalDefault": "Save as new"
},
"EtAvFF": {
"defaultMessage": "Duplicate this form",
"description": "Copy form button title",
"originalDefault": "Duplicate this form"
},
"Ev+T9r": {
"defaultMessage": "in",
"description": "\"in\" operator description",
"originalDefault": "in"
},
"F+UwT0": {
"defaultMessage": "House letter Schema target",
"description": "'Objects registration variable mapping, addressNL component: 'options.houseLetter schema target' label",
"originalDefault": "House letter Schema target"
},
"F+cPJR": {
"defaultMessage": "the array",
"description": "\"array\" operand type",
"originalDefault": "the array"
},
"F2GYwp": {
"defaultMessage": "Base",
"description": "StUF-ZDS registration backend options, 'base' tab label",
"originalDefault": "Base"
},
"F2VuCs": {
"defaultMessage": "Merchant ID",
"description": "Ogone legacy payment options 'merchantId' label",
"originalDefault": "Merchant ID"
},
"F9ew4C": {
"defaultMessage": "Version",
"description": "Objects API registration options 'objecttypeVersion' label",
"originalDefault": "Version"
},
"FH2sxf": {
"defaultMessage": "This form version was created in an application version different from the current version. There may be missing configuration after restoring.",
"description": "FormVersion: Warning message different application versions",
"originalDefault": "This form version was created in an application version different from the current version. There may be missing configuration after restoring."
},
"FH9/HC": {
"defaultMessage": "The co-sign component requires at least one authentication plugin to be enabled.",
"description": "MissingAuthCosignWarning message",
"originalDefault": "The co-sign component requires at least one authentication plugin to be enabled."
},
"FNT8nq": {
"defaultMessage": "Variable containing email addresses",
"description": "Email registration options 'toEmailsFromVariable' label",
"originalDefault": "Variable containing email addresses"
},
"FQ1JZc": {
"defaultMessage": "Zaaktype code for newly created Zaken in StUF-ZDS",
"description": "StUF-ZDS registration options 'zdsZaaktypeCode' helpText",
"originalDefault": "Zaaktype code for newly created Zaken in StUF-ZDS"
},
"FQswyM": {
"defaultMessage": "Mode",
"description": "Pricing mode label",
"originalDefault": "Mode"
},
"FayNPY": {
"defaultMessage": "Simple",
"description": "Simple logic type",
"originalDefault": "Simple"
},
"FceidS": {
"defaultMessage": "is not equal to",
"description": "\"!=\" operator description",
"originalDefault": "is not equal to"
},
"FyNxJn": {
"defaultMessage": "Text",
"description": "Interpolation expression field label",
"originalDefault": "Text"
},
"Fz4U73": {
"defaultMessage": "Send confirmation email",
"description": "Label of form field 'Send the confirmation email'",
"originalDefault": "Send confirmation email"
},
"G1JHUM": {
"defaultMessage": "Cancel rule creation",
"description": "Cancel link help",
"originalDefault": "Cancel rule creation"
},
"G2rpx2": {
"defaultMessage": "Whether the step progression should be displayed in the UI or not.",
"description": "Progress indicator help text",
"originalDefault": "Whether the step progression should be displayed in the UI or not."
},
"G5q9GH": {
"defaultMessage": "Reset to default description",
"description": "Reset logic expression icon title",
"originalDefault": "Reset to default description"
},
"GBsms3": {
"defaultMessage": "No form variable specified (anymore).",
"description": "DMN in/output mapping: detected empty form variable",
"originalDefault": "No form variable specified (anymore)."
},
"GFXEAX": {
"defaultMessage": "Internal step name",
"description": "Form step internal name label",
"originalDefault": "Internal step name"
},
"GIdTgB": {
"defaultMessage": "Use existing form definition",
"description": "Form definition selection modal title",
"originalDefault": "Use existing form definition"
},
"GJ8Ok2": {
"defaultMessage": "Reset submissions counter",
"description": "Reset submissions counter",
"originalDefault": "Reset submissions counter"
},
"GO9yud": {
"defaultMessage": "When the form should be activated.",
"description": "Form activation field help text",
"originalDefault": "When the form should be activated."
},
"GV8HnZ": {
"defaultMessage": "Select payment backend",
"description": "Payment backend label",
"originalDefault": "Select payment backend"
},
"Gc7gu3": {
"defaultMessage": "How incomplete submissions of this form will be removed after the limit. Leave blank to use value in General Configuration.",
"description": "Incomplete Submissions Removal Method help text",
"originalDefault": "How incomplete submissions of this form will be removed after the limit. Leave blank to use value in General Configuration."
},
"GfH2yX": {
"defaultMessage": "The text that will be displayed in the overview page to confirm the form is filled in correctly. Leave blank to get value from global configuration.",
"description": "literals.confirmText help text",
"originalDefault": "The text that will be displayed in the overview page to confirm the form is filled in correctly. Leave blank to get value from global configuration."
},
"Ggu4I8": {
"defaultMessage": "Whether to map the specific subfield of addressNl component",
"description": "'Map specific subfields' checkbox help text",
"originalDefault": "Whether to map the specific subfield of addressNl component"
},
"Gi+cvN": {
"defaultMessage": "Use linked product price",
"description": "static pricing mode label",
"originalDefault": "Use linked product price"
},
"GjQdpb": {
"defaultMessage": ", at location \"{location}\"",
"description": "Formio configuration backend validation error location suffix",
"originalDefault": ", at location \"{location}\""
},
"GjcAY2": {
"defaultMessage": "Null",
"description": "JSON variable type \"null\" representation",
"originalDefault": "Null"
},
"GwOWGv": {
"defaultMessage": "Plugin configuration: ZGW APIs",
"description": "ZGW APIs registration options modal title",
"originalDefault": "Plugin configuration: ZGW APIs"
},
"H3dRU6": {
"defaultMessage": "Check to include the field as process variable",
"description": "Manage process vars enabled checkbox help text",
"originalDefault": "Check to include the field as process variable"
},
"H6VxhG": {
"defaultMessage": "Maintenance mode",
"description": "Form maintenance mode field label",
"originalDefault": "Maintenance mode"
},
"H7WmS4": {
"defaultMessage": "Plugin configuration: Camunda",
"description": "Camunda registration options modal title",
"originalDefault": "Plugin configuration: Camunda"
},
"H7z8+8": {
"defaultMessage": "Extra elements",
"description": "StUF-ZDS registration backend options, 'extra elements' tab label",
"originalDefault": "Extra elements"
},
"HCfL9x": {
"defaultMessage": "If enabled, the user will have to agree to the privacy policy before submitting a form.",
"description": "Form askPrivacyConsent field help text",
"originalDefault": "If enabled, the user will have to agree to the privacy policy before submitting a form."
},
"HDsHI8": {
"defaultMessage": "DMN configuration",
"description": "DMN configuration selection modal title",
"originalDefault": "DMN configuration"
},
"HEg854": {
"defaultMessage": "Name",
"description": "Service fetch configuration modal form name field label",
"originalDefault": "Name"
},
"HF0cSk": {
"defaultMessage": "Amount of days errored submissions of this form will remain before being removed. Leave blank to use value in General Configuration.",
"description": "Errored Submissions Removal Limit help text",
"originalDefault": "Amount of days errored submissions of this form will remain before being removed. Leave blank to use value in General Configuration."