@optimajet/workflow-designer 0.0.20 → 5.2.2
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/README.md +16 -4
- package/dist/workflowdesigner.min.css +38 -11
- package/dist/workflowdesignerfull.min.js +3 -3
- package/localization/{readme.txt → readme.md} +10 -10
- package/localization/workflowdesigner.localization_de.js +124 -67
- package/localization/workflowdesigner.localization_en.js +262 -280
- package/localization/workflowdesigner.localization_es.js +124 -67
- package/localization/workflowdesigner.localization_fr.js +124 -67
- package/localization/workflowdesigner.localization_it.js +124 -67
- package/localization/workflowdesigner.localization_pt.js +123 -66
- package/localization/workflowdesigner.localization_ru.js +121 -63
- package/localization/workflowdesigner.localization_tr.js +124 -67
- package/package.json +19 -7
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
var WorkflowDesignerConstants = {
|
|
2
2
|
ActivityColor: "#ECF0F1",
|
|
3
3
|
ActivityTextColor: "#2D3436",
|
|
4
4
|
ActivityInitialColor: "#27AE60",
|
|
@@ -15,11 +15,13 @@
|
|
|
15
15
|
BarColor: "#EDF1F2",
|
|
16
16
|
BarSeparatorColor: "#D9DEE0",
|
|
17
17
|
IsRequiredColor: "#F56C6C",
|
|
18
|
+
ParameterFromProcessColor: "#1f8dd6",
|
|
18
19
|
DeleteConfirm: "¿Está seguro de que desea eliminar los elementos seleccionados?",
|
|
19
20
|
DeleteConfirmCurrent: "¿Estás seguro de que quieres eliminar este elemento?",
|
|
20
21
|
FieldIsRequired: "¡Se requiere campo!",
|
|
21
22
|
FieldIsNotCorrected: "Field is not corrected!",
|
|
22
23
|
FieldMustBeUnique: "¡El campo debe ser único!",
|
|
24
|
+
FieldMustContainAt: "Field must contain @",
|
|
23
25
|
ButtonTextDelete: "Borrar",
|
|
24
26
|
ButtonTextCreate: "Crear",
|
|
25
27
|
ButtonTextSave: "Salvar",
|
|
@@ -91,6 +93,10 @@
|
|
|
91
93
|
Decision: {
|
|
92
94
|
Title: "Decision",
|
|
93
95
|
TitleForInline: "Decision Inline",
|
|
96
|
+
To: "To activity",
|
|
97
|
+
WhenTrue: "When True",
|
|
98
|
+
WhenFalse: "When False",
|
|
99
|
+
Transition: "Transitions to activities",
|
|
94
100
|
Name: "Name",
|
|
95
101
|
State: "State",
|
|
96
102
|
IsInitial: "Initial",
|
|
@@ -101,10 +107,6 @@
|
|
|
101
107
|
PreExecutionImplementation: "PreExecution Implementation",
|
|
102
108
|
Annotations: "Annotations",
|
|
103
109
|
Scheme: "Inline scheme",
|
|
104
|
-
To: "To activity",
|
|
105
|
-
WhenTrue: "When True",
|
|
106
|
-
WhenFalse: "When False",
|
|
107
|
-
Transition: "Transitions to activities",
|
|
108
110
|
Condition: "Condition",
|
|
109
111
|
ConditionType: "Type",
|
|
110
112
|
ConditionAction: "Action",
|
|
@@ -118,6 +120,9 @@
|
|
|
118
120
|
DecisionTable: {
|
|
119
121
|
Title: "Decision table",
|
|
120
122
|
TitleForInline: "Decision table Inline",
|
|
123
|
+
To: "To activity",
|
|
124
|
+
Transition: "Transitions to activities",
|
|
125
|
+
Parameters: "Parameters",
|
|
121
126
|
Name: "Name",
|
|
122
127
|
State: "State",
|
|
123
128
|
IsInitial: "Initial",
|
|
@@ -128,11 +133,8 @@
|
|
|
128
133
|
PreExecutionImplementation: "PreExecution Implementation",
|
|
129
134
|
Annotations: "Annotations",
|
|
130
135
|
Scheme: "Inline scheme",
|
|
131
|
-
To: "To activity",
|
|
132
|
-
Transition: "Transitions to activities",
|
|
133
136
|
ConditionType: "Type",
|
|
134
137
|
Condition: "Condition",
|
|
135
|
-
Parameters: "Parameters",
|
|
136
138
|
ConditionAction: "Action",
|
|
137
139
|
ResultOnPreExecution: "PreExec. Result",
|
|
138
140
|
ConditionActionParameter: "Action parameter",
|
|
@@ -147,6 +149,7 @@
|
|
|
147
149
|
From: "De la actividad",
|
|
148
150
|
To: "A la actividad",
|
|
149
151
|
Classifier: "Clasificador",
|
|
152
|
+
ClassifierValues: ["NotSpecified", "Direct", "Reverse"],
|
|
150
153
|
Restrictions: "Restricciones",
|
|
151
154
|
RestrictionsType: "Tipo",
|
|
152
155
|
RestrictionsActor: "Actor",
|
|
@@ -219,22 +222,14 @@
|
|
|
219
222
|
IsDefault: "IsDefault",
|
|
220
223
|
Culture: "Cultura",
|
|
221
224
|
Value: "Valor",
|
|
222
|
-
Types: [
|
|
223
|
-
"Command",
|
|
224
|
-
"State",
|
|
225
|
-
"Parameter"
|
|
226
|
-
]
|
|
225
|
+
Types: ["Command", "State", "Parameter"]
|
|
227
226
|
},
|
|
228
227
|
TimerFormLabel: {
|
|
229
228
|
Title: "Temporizadores",
|
|
230
229
|
Name: "Nombre",
|
|
231
230
|
Type: "Tipo",
|
|
232
231
|
Value: "Valor",
|
|
233
|
-
Types: [
|
|
234
|
-
"Command",
|
|
235
|
-
"State",
|
|
236
|
-
"Parameter"
|
|
237
|
-
],
|
|
232
|
+
Types: ["Command", "State", "Parameter"],
|
|
238
233
|
OverrideHint: "Anular el temporizador si existe",
|
|
239
234
|
Override: "Anular"
|
|
240
235
|
},
|
|
@@ -337,7 +332,7 @@
|
|
|
337
332
|
IsGlobal: "Es global",
|
|
338
333
|
IsAsync: "Asíncrono",
|
|
339
334
|
Type: "Tipo",
|
|
340
|
-
GlobalDeleteMessage: "Si ha eliminado Global CodeAction, <br/> <b> ¡otros esquemas no podrán llamarlo!
|
|
335
|
+
GlobalDeleteMessage: "Si ha eliminado Global CodeAction, <br/> <b> ¡otros esquemas no podrán llamarlo! <\/b>",
|
|
341
336
|
UnGlobalMessage: "Ha cambiado el estado de la bandera global. <br/> Se creará una acción de código local basada en esta acción de código global después de guardar este esquema.",
|
|
342
337
|
EditParameters: "Edit parameters",
|
|
343
338
|
Parameters: "Parameters",
|
|
@@ -368,39 +363,97 @@
|
|
|
368
363
|
InvalidJson: "JSON object is invalid or does not match the model",
|
|
369
364
|
CustomForms: {
|
|
370
365
|
HTTPRequest: {
|
|
366
|
+
Name: "Name",
|
|
367
|
+
State: "State",
|
|
371
368
|
UseAuth: "Use authentication",
|
|
372
|
-
Heading: "Request"
|
|
369
|
+
Heading: "Request",
|
|
370
|
+
Url: "Url",
|
|
371
|
+
Post: "Post",
|
|
372
|
+
StoreResponse: "Store response",
|
|
373
|
+
Username: "Username",
|
|
374
|
+
Password: "Password",
|
|
375
|
+
ParameterName: "Parameter name",
|
|
376
|
+
ParameterPurpose: "Parameter purpose",
|
|
377
|
+
ContentType: "Content type",
|
|
378
|
+
AddProcessInstanceParameters: "Add process instance parameters",
|
|
379
|
+
Parameters: "Parameters",
|
|
380
|
+
Headers: "Headers"
|
|
373
381
|
},
|
|
374
382
|
SendEmail: {
|
|
383
|
+
Name: "Name",
|
|
384
|
+
State: "State",
|
|
375
385
|
Heading: "Form",
|
|
376
|
-
UseAuth: "Use authentication"
|
|
386
|
+
UseAuth: "Use authentication",
|
|
387
|
+
MailServer: "Mail server",
|
|
388
|
+
MailServerPort: "Mail server port",
|
|
389
|
+
MailServerFrom: "Mail server from",
|
|
390
|
+
To: "To",
|
|
391
|
+
Subject: "Subject",
|
|
392
|
+
MailServerSsl: "MailServerSsl",
|
|
393
|
+
IsHTML: "IsHTML",
|
|
394
|
+
MailServerLogin: "Mail server login",
|
|
395
|
+
MailServerPass: "Mail server pass",
|
|
396
|
+
Body: "Body"
|
|
377
397
|
},
|
|
378
398
|
StartLoopFor: {
|
|
399
|
+
Name: "Name",
|
|
400
|
+
State: "State",
|
|
379
401
|
Heading: "Loop",
|
|
380
402
|
DateRange: "Date range",
|
|
381
403
|
RangeSeparator: "To",
|
|
382
404
|
StartDate: "Start date",
|
|
383
405
|
EndDate: "End date",
|
|
384
|
-
Reverse: "Reverse"
|
|
406
|
+
Reverse: "Reverse",
|
|
407
|
+
LoopName: "Loop name",
|
|
408
|
+
LoopStateParameterName: "Loop state parameter name",
|
|
409
|
+
LoopCounterValueParameterName: "Loop counter value parameter name",
|
|
410
|
+
CounterType: "Counter type",
|
|
411
|
+
StartValue: "Start value",
|
|
412
|
+
EndValue: "End value",
|
|
413
|
+
Step: "Step",
|
|
414
|
+
StepType: "Step type",
|
|
415
|
+
IncludeLastValue: "Include last value"
|
|
385
416
|
},
|
|
386
417
|
StartLoopForeach: {
|
|
418
|
+
Name: "Name",
|
|
419
|
+
State: "State",
|
|
387
420
|
Heading: "Loop",
|
|
388
421
|
ValuesError: "None value cannot be empty!",
|
|
389
|
-
Values: "Values"
|
|
422
|
+
Values: "Values",
|
|
423
|
+
LoopName: "Loop name",
|
|
424
|
+
LoopStateParameterName: "Loop state parameter name",
|
|
425
|
+
LoopCounterValueParameterName: "Loop counter value parameter name",
|
|
426
|
+
Reverse: "Reverse"
|
|
390
427
|
},
|
|
391
428
|
CreateProcess: {
|
|
429
|
+
Name: "Name",
|
|
430
|
+
State: "State",
|
|
392
431
|
Heading: "Main settings",
|
|
393
432
|
ParameterName: "Name",
|
|
394
433
|
ParameterPurpose: "Purpose",
|
|
434
|
+
ParameterValue: "Value",
|
|
435
|
+
Scheme: "Scheme",
|
|
436
|
+
ProcessId: "Process id",
|
|
437
|
+
ProcessCreationParameters: "Process creation parameters",
|
|
395
438
|
ParameterInitialValue: "Initial value"
|
|
396
439
|
},
|
|
397
440
|
AssignmentCreate: {
|
|
398
|
-
Heading: "Assignment",
|
|
399
441
|
Name: "Name",
|
|
442
|
+
State: "State",
|
|
443
|
+
Heading: "Assignment",
|
|
400
444
|
Code: "Code",
|
|
401
|
-
NewTag: "New Tag"
|
|
445
|
+
NewTag: "New Tag",
|
|
446
|
+
Executors: "Executors",
|
|
447
|
+
IsActive: "Is active",
|
|
448
|
+
Description: "Description",
|
|
449
|
+
DeadlineToStart: "Deadline to start",
|
|
450
|
+
DeadlineToComplete: "Deadline to complete",
|
|
451
|
+
Observers: "Observers",
|
|
452
|
+
Tags: "Tags"
|
|
402
453
|
},
|
|
403
454
|
AssignmentChange: {
|
|
455
|
+
Name: "Name",
|
|
456
|
+
State: "State",
|
|
404
457
|
Heading: "Assignment",
|
|
405
458
|
Code: "Code",
|
|
406
459
|
ReplacementExecutors: "Replacement of executors",
|
|
@@ -409,12 +462,28 @@
|
|
|
409
462
|
AllExecutors: "All",
|
|
410
463
|
Change: "Change",
|
|
411
464
|
Status: "Status",
|
|
412
|
-
State: "State",
|
|
413
465
|
DeadlineToStart: "Deadline to start",
|
|
414
466
|
DeadlineToComplete: "Deadline to complete",
|
|
415
467
|
Tags: "Tags",
|
|
416
468
|
Observers: "Observers",
|
|
417
|
-
NewTag: "New Tag"
|
|
469
|
+
NewTag: "New Tag",
|
|
470
|
+
StatusState: "Status state",
|
|
471
|
+
IsActive: "Is active"
|
|
472
|
+
},
|
|
473
|
+
AssignmentsHaveStatus: {
|
|
474
|
+
Name: "Name",
|
|
475
|
+
State: "State",
|
|
476
|
+
Code: "Code",
|
|
477
|
+
Condition: "Condition",
|
|
478
|
+
IncludeInactive: "Include inactive",
|
|
479
|
+
StatusState: "Status state",
|
|
480
|
+
Assignments: "Assignments"
|
|
481
|
+
},
|
|
482
|
+
SetLoopState: {
|
|
483
|
+
Name: "Name",
|
|
484
|
+
State: "State",
|
|
485
|
+
LoopName: "Loop name",
|
|
486
|
+
LoopState: "Loop state"
|
|
418
487
|
}
|
|
419
488
|
},
|
|
420
489
|
IncorrectForm: "Your form contains greater than one element, and at least one element doesn't have a Name. Please specify the Name for each element."
|
|
@@ -455,13 +524,20 @@
|
|
|
455
524
|
ResetSettings: "Reset settings",
|
|
456
525
|
ZoomPositionDefault: "Zoom por defecto"
|
|
457
526
|
},
|
|
458
|
-
LibraryLabel: {
|
|
459
|
-
PluginRequired: "Plugin required:"
|
|
460
|
-
},
|
|
527
|
+
LibraryLabel: {PluginRequired: "Plugin required:"},
|
|
461
528
|
Logs: {
|
|
462
529
|
Label: "Logs",
|
|
463
530
|
ParamName: "LogEnabled",
|
|
464
|
-
Description: "This parameter is the default value for logging processes based on this scheme"
|
|
531
|
+
Description: "This parameter is the default value for logging processes based on this scheme",
|
|
532
|
+
AutoRefresh: "Auto refresh",
|
|
533
|
+
Empty: "Empty",
|
|
534
|
+
Timestamp: "Timestamp",
|
|
535
|
+
Message: "Message",
|
|
536
|
+
Exception: "Exception",
|
|
537
|
+
Show: "Show",
|
|
538
|
+
ExceptionInfo: "Exception info",
|
|
539
|
+
HideDetails: "Hide details",
|
|
540
|
+
ShowDetails: "Show details"
|
|
465
541
|
},
|
|
466
542
|
ErrorActivityIsInitialCountText: "Un elemento debe estar marcado bandera Inicial",
|
|
467
543
|
ErrorActivityIsFinalCountText: "This scheme is Inlined. One or more elements must be marked flag Final",
|
|
@@ -519,22 +595,19 @@
|
|
|
519
595
|
InitialActivity: "Initial Activity",
|
|
520
596
|
InitialActivityDesc: "It a initial state.",
|
|
521
597
|
FinalActivity: "Final Activity",
|
|
522
|
-
FinalActivityDesc: "It a final state."
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
height: 150
|
|
598
|
+
FinalActivityDesc: "It a final state.",
|
|
599
|
+
SetLoopState: {
|
|
600
|
+
Title: "Set loop state",
|
|
601
|
+
Description: "The action for set loop state"
|
|
602
|
+
}
|
|
528
603
|
},
|
|
604
|
+
OverviewMap: {show: true, width: 300, height: 150},
|
|
529
605
|
UndoDepth: 200,
|
|
530
606
|
DefaultCulture: "en-US",
|
|
531
607
|
ErrorInBrowserConsole: "See more info in the browser console.",
|
|
532
608
|
ELEMENT: {
|
|
533
609
|
el: {
|
|
534
|
-
colorpicker: {
|
|
535
|
-
confirm: "Confirmar",
|
|
536
|
-
clear: "Despejar"
|
|
537
|
-
},
|
|
610
|
+
colorpicker: {confirm: "Confirmar", clear: "Despejar"},
|
|
538
611
|
datepicker: {
|
|
539
612
|
now: "Ahora",
|
|
540
613
|
today: "Hoy",
|
|
@@ -626,38 +699,22 @@
|
|
|
626
699
|
clearFilter: "Despejar",
|
|
627
700
|
sumText: "Suma"
|
|
628
701
|
},
|
|
629
|
-
tree: {
|
|
630
|
-
emptyText: "Sin Datos"
|
|
631
|
-
},
|
|
702
|
+
tree: {emptyText: "Sin Datos"},
|
|
632
703
|
transfer: {
|
|
633
704
|
noMatch: "No hay datos que coincidan",
|
|
634
705
|
noData: "Sin datos",
|
|
635
|
-
titles: [
|
|
636
|
-
"Lista 1",
|
|
637
|
-
"Lista 2"
|
|
638
|
-
],
|
|
706
|
+
titles: ["Lista 1", "Lista 2"],
|
|
639
707
|
filterPlaceholder: "Ingresar palabra clave",
|
|
640
708
|
noCheckedFormat: "{total} artículos",
|
|
641
709
|
hasCheckedFormat: "{checked}/{total} revisados"
|
|
642
710
|
},
|
|
643
|
-
image: {
|
|
644
|
-
|
|
645
|
-
},
|
|
646
|
-
|
|
647
|
-
title: "Volver"
|
|
648
|
-
},
|
|
649
|
-
popconfirm: {
|
|
650
|
-
confirmButtonText: "Si",
|
|
651
|
-
cancelButtonText: "No"
|
|
652
|
-
},
|
|
653
|
-
empty: {
|
|
654
|
-
description: "Sin Datos"
|
|
655
|
-
}
|
|
711
|
+
image: {error: "HA FALLADO"},
|
|
712
|
+
pageHeader: {title: "Volver"},
|
|
713
|
+
popconfirm: {confirmButtonText: "Si", cancelButtonText: "No"},
|
|
714
|
+
empty: {description: "Sin Datos"}
|
|
656
715
|
}
|
|
657
716
|
},
|
|
658
|
-
EditJSONSettings: {
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
}
|
|
663
|
-
};
|
|
717
|
+
EditJSONSettings: {Height: 600, Width: 1000, CodeHeight: 480}
|
|
718
|
+
};
|
|
719
|
+
|
|
720
|
+
window.WorkflowDesignerConstants = WorkflowDesignerConstants;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
var WorkflowDesignerConstants = {
|
|
2
2
|
ActivityColor: "#ECF0F1",
|
|
3
3
|
ActivityTextColor: "#2D3436",
|
|
4
4
|
ActivityInitialColor: "#27AE60",
|
|
@@ -15,11 +15,13 @@
|
|
|
15
15
|
BarColor: "#EDF1F2",
|
|
16
16
|
BarSeparatorColor: "#D9DEE0",
|
|
17
17
|
IsRequiredColor: "#F56C6C",
|
|
18
|
+
ParameterFromProcessColor: "#1f8dd6",
|
|
18
19
|
DeleteConfirm: "Êtes-vous sûr de vouloir supprimer le ou les éléments sélectionnés?",
|
|
19
20
|
DeleteConfirmCurrent: "Êtes-vous sûr de bien vouloir supprimer cet élément?",
|
|
20
21
|
FieldIsRequired: "Champ requis!",
|
|
21
22
|
FieldIsNotCorrected: "Field is not corrected!",
|
|
22
23
|
FieldMustBeUnique: "Le champ doit être unique!",
|
|
24
|
+
FieldMustContainAt: "Field must contain @",
|
|
23
25
|
ButtonTextDelete: "Effacer",
|
|
24
26
|
ButtonTextCreate: "Créer",
|
|
25
27
|
ButtonTextSave: "Sauver",
|
|
@@ -91,6 +93,10 @@
|
|
|
91
93
|
Decision: {
|
|
92
94
|
Title: "Decision",
|
|
93
95
|
TitleForInline: "Decision Inline",
|
|
96
|
+
To: "To activity",
|
|
97
|
+
WhenTrue: "When True",
|
|
98
|
+
WhenFalse: "When False",
|
|
99
|
+
Transition: "Transitions to activities",
|
|
94
100
|
Name: "Name",
|
|
95
101
|
State: "State",
|
|
96
102
|
IsInitial: "Initial",
|
|
@@ -101,10 +107,6 @@
|
|
|
101
107
|
PreExecutionImplementation: "PreExecution Implementation",
|
|
102
108
|
Annotations: "Annotations",
|
|
103
109
|
Scheme: "Inline scheme",
|
|
104
|
-
To: "To activity",
|
|
105
|
-
WhenTrue: "When True",
|
|
106
|
-
WhenFalse: "When False",
|
|
107
|
-
Transition: "Transitions to activities",
|
|
108
110
|
Condition: "Condition",
|
|
109
111
|
ConditionType: "Type",
|
|
110
112
|
ConditionAction: "Action",
|
|
@@ -118,6 +120,9 @@
|
|
|
118
120
|
DecisionTable: {
|
|
119
121
|
Title: "Decision table",
|
|
120
122
|
TitleForInline: "Decision table Inline",
|
|
123
|
+
To: "To activity",
|
|
124
|
+
Transition: "Transitions to activities",
|
|
125
|
+
Parameters: "Parameters",
|
|
121
126
|
Name: "Name",
|
|
122
127
|
State: "State",
|
|
123
128
|
IsInitial: "Initial",
|
|
@@ -128,11 +133,8 @@
|
|
|
128
133
|
PreExecutionImplementation: "PreExecution Implementation",
|
|
129
134
|
Annotations: "Annotations",
|
|
130
135
|
Scheme: "Inline scheme",
|
|
131
|
-
To: "To activity",
|
|
132
|
-
Transition: "Transitions to activities",
|
|
133
136
|
ConditionType: "Type",
|
|
134
137
|
Condition: "Condition",
|
|
135
|
-
Parameters: "Parameters",
|
|
136
138
|
ConditionAction: "Action",
|
|
137
139
|
ResultOnPreExecution: "PreExec. Result",
|
|
138
140
|
ConditionActionParameter: "Action parameter",
|
|
@@ -147,6 +149,7 @@
|
|
|
147
149
|
From: "De l'activité",
|
|
148
150
|
To: "À l'activité",
|
|
149
151
|
Classifier: "Classificateur",
|
|
152
|
+
ClassifierValues: ["NotSpecified", "Direct", "Reverse"],
|
|
150
153
|
Restrictions: "Restrictions",
|
|
151
154
|
RestrictionsType: "Type",
|
|
152
155
|
RestrictionsActor: "Acteur",
|
|
@@ -219,22 +222,14 @@
|
|
|
219
222
|
IsDefault: "IsDefault",
|
|
220
223
|
Culture: "Culture",
|
|
221
224
|
Value: "Valeur",
|
|
222
|
-
Types: [
|
|
223
|
-
"Command",
|
|
224
|
-
"State",
|
|
225
|
-
"Parameter"
|
|
226
|
-
]
|
|
225
|
+
Types: ["Command", "State", "Parameter"]
|
|
227
226
|
},
|
|
228
227
|
TimerFormLabel: {
|
|
229
228
|
Title: "Minuteries",
|
|
230
229
|
Name: "Prénom",
|
|
231
230
|
Type: "Type",
|
|
232
231
|
Value: "Valeur",
|
|
233
|
-
Types: [
|
|
234
|
-
"Command",
|
|
235
|
-
"State",
|
|
236
|
-
"Parameter"
|
|
237
|
-
],
|
|
232
|
+
Types: ["Command", "State", "Parameter"],
|
|
238
233
|
OverrideHint: "Écraser le timer s'il existe",
|
|
239
234
|
Override: "Écraser"
|
|
240
235
|
},
|
|
@@ -337,7 +332,7 @@
|
|
|
337
332
|
IsGlobal: "Est globale",
|
|
338
333
|
IsAsync: "Async",
|
|
339
334
|
Type: "Type",
|
|
340
|
-
GlobalDeleteMessage: "Si vous supprimez Global CodeAction - <br/> <b> les autres schémas ne pourront pas l'appeler!
|
|
335
|
+
GlobalDeleteMessage: "Si vous supprimez Global CodeAction - <br/> <b> les autres schémas ne pourront pas l'appeler! <\/b>",
|
|
341
336
|
UnGlobalMessage: "Vous avez modifié l'état de l'indicateur global. <br/> Une action Code Local sera créée à partir de cette Action Code Global après avoir enregistré ce schéma.",
|
|
342
337
|
EditParameters: "Edit parameters",
|
|
343
338
|
Parameters: "Parameters",
|
|
@@ -368,39 +363,97 @@
|
|
|
368
363
|
InvalidJson: "JSON object is invalid or does not match the model",
|
|
369
364
|
CustomForms: {
|
|
370
365
|
HTTPRequest: {
|
|
366
|
+
Name: "Name",
|
|
367
|
+
State: "State",
|
|
371
368
|
UseAuth: "Use authentication",
|
|
372
|
-
Heading: "Request"
|
|
369
|
+
Heading: "Request",
|
|
370
|
+
Url: "Url",
|
|
371
|
+
Post: "Post",
|
|
372
|
+
StoreResponse: "Store response",
|
|
373
|
+
Username: "Username",
|
|
374
|
+
Password: "Password",
|
|
375
|
+
ParameterName: "Parameter name",
|
|
376
|
+
ParameterPurpose: "Parameter purpose",
|
|
377
|
+
ContentType: "Content type",
|
|
378
|
+
AddProcessInstanceParameters: "Add process instance parameters",
|
|
379
|
+
Parameters: "Parameters",
|
|
380
|
+
Headers: "Headers"
|
|
373
381
|
},
|
|
374
382
|
SendEmail: {
|
|
383
|
+
Name: "Name",
|
|
384
|
+
State: "State",
|
|
375
385
|
Heading: "Form",
|
|
376
|
-
UseAuth: "Use authentication"
|
|
386
|
+
UseAuth: "Use authentication",
|
|
387
|
+
MailServer: "Mail server",
|
|
388
|
+
MailServerPort: "Mail server port",
|
|
389
|
+
MailServerFrom: "Mail server from",
|
|
390
|
+
To: "To",
|
|
391
|
+
Subject: "Subject",
|
|
392
|
+
MailServerSsl: "MailServerSsl",
|
|
393
|
+
IsHTML: "IsHTML",
|
|
394
|
+
MailServerLogin: "Mail server login",
|
|
395
|
+
MailServerPass: "Mail server pass",
|
|
396
|
+
Body: "Body"
|
|
377
397
|
},
|
|
378
398
|
StartLoopFor: {
|
|
399
|
+
Name: "Name",
|
|
400
|
+
State: "State",
|
|
379
401
|
Heading: "Loop",
|
|
380
402
|
DateRange: "Date range",
|
|
381
403
|
RangeSeparator: "To",
|
|
382
404
|
StartDate: "Start date",
|
|
383
405
|
EndDate: "End date",
|
|
384
|
-
Reverse: "Reverse"
|
|
406
|
+
Reverse: "Reverse",
|
|
407
|
+
LoopName: "Loop name",
|
|
408
|
+
LoopStateParameterName: "Loop state parameter name",
|
|
409
|
+
LoopCounterValueParameterName: "Loop counter value parameter name",
|
|
410
|
+
CounterType: "Counter type",
|
|
411
|
+
StartValue: "Start value",
|
|
412
|
+
EndValue: "End value",
|
|
413
|
+
Step: "Step",
|
|
414
|
+
StepType: "Step type",
|
|
415
|
+
IncludeLastValue: "Include last value"
|
|
385
416
|
},
|
|
386
417
|
StartLoopForeach: {
|
|
418
|
+
Name: "Name",
|
|
419
|
+
State: "State",
|
|
387
420
|
Heading: "Loop",
|
|
388
421
|
ValuesError: "None value cannot be empty!",
|
|
389
|
-
Values: "Values"
|
|
422
|
+
Values: "Values",
|
|
423
|
+
LoopName: "Loop name",
|
|
424
|
+
LoopStateParameterName: "Loop state parameter name",
|
|
425
|
+
LoopCounterValueParameterName: "Loop counter value parameter name",
|
|
426
|
+
Reverse: "Reverse"
|
|
390
427
|
},
|
|
391
428
|
CreateProcess: {
|
|
429
|
+
Name: "Name",
|
|
430
|
+
State: "State",
|
|
392
431
|
Heading: "Main settings",
|
|
393
432
|
ParameterName: "Name",
|
|
394
433
|
ParameterPurpose: "Purpose",
|
|
434
|
+
ParameterValue: "Value",
|
|
435
|
+
Scheme: "Scheme",
|
|
436
|
+
ProcessId: "Process id",
|
|
437
|
+
ProcessCreationParameters: "Process creation parameters",
|
|
395
438
|
ParameterInitialValue: "Initial value"
|
|
396
439
|
},
|
|
397
440
|
AssignmentCreate: {
|
|
398
|
-
Heading: "Assignment",
|
|
399
441
|
Name: "Name",
|
|
442
|
+
State: "State",
|
|
443
|
+
Heading: "Assignment",
|
|
400
444
|
Code: "Code",
|
|
401
|
-
NewTag: "New Tag"
|
|
445
|
+
NewTag: "New Tag",
|
|
446
|
+
Executors: "Executors",
|
|
447
|
+
IsActive: "Is active",
|
|
448
|
+
Description: "Description",
|
|
449
|
+
DeadlineToStart: "Deadline to start",
|
|
450
|
+
DeadlineToComplete: "Deadline to complete",
|
|
451
|
+
Observers: "Observers",
|
|
452
|
+
Tags: "Tags"
|
|
402
453
|
},
|
|
403
454
|
AssignmentChange: {
|
|
455
|
+
Name: "Name",
|
|
456
|
+
State: "State",
|
|
404
457
|
Heading: "Assignment",
|
|
405
458
|
Code: "Code",
|
|
406
459
|
ReplacementExecutors: "Replacement of executors",
|
|
@@ -409,12 +462,28 @@
|
|
|
409
462
|
AllExecutors: "All",
|
|
410
463
|
Change: "Change",
|
|
411
464
|
Status: "Status",
|
|
412
|
-
State: "State",
|
|
413
465
|
DeadlineToStart: "Deadline to start",
|
|
414
466
|
DeadlineToComplete: "Deadline to complete",
|
|
415
467
|
Tags: "Tags",
|
|
416
468
|
Observers: "Observers",
|
|
417
|
-
NewTag: "New Tag"
|
|
469
|
+
NewTag: "New Tag",
|
|
470
|
+
StatusState: "Status state",
|
|
471
|
+
IsActive: "Is active"
|
|
472
|
+
},
|
|
473
|
+
AssignmentsHaveStatus: {
|
|
474
|
+
Name: "Name",
|
|
475
|
+
State: "State",
|
|
476
|
+
Code: "Code",
|
|
477
|
+
Condition: "Condition",
|
|
478
|
+
IncludeInactive: "Include inactive",
|
|
479
|
+
StatusState: "Status state",
|
|
480
|
+
Assignments: "Assignments"
|
|
481
|
+
},
|
|
482
|
+
SetLoopState: {
|
|
483
|
+
Name: "Name",
|
|
484
|
+
State: "State",
|
|
485
|
+
LoopName: "Loop name",
|
|
486
|
+
LoopState: "Loop state"
|
|
418
487
|
}
|
|
419
488
|
},
|
|
420
489
|
IncorrectForm: "Your form contains greater than one element, and at least one element doesn't have a Name. Please specify the Name for each element."
|
|
@@ -455,13 +524,20 @@
|
|
|
455
524
|
ResetSettings: "Reset settings",
|
|
456
525
|
ZoomPositionDefault: "Zoom par défaut"
|
|
457
526
|
},
|
|
458
|
-
LibraryLabel: {
|
|
459
|
-
PluginRequired: "Plugin required:"
|
|
460
|
-
},
|
|
527
|
+
LibraryLabel: {PluginRequired: "Plugin required:"},
|
|
461
528
|
Logs: {
|
|
462
529
|
Label: "Logs",
|
|
463
530
|
ParamName: "LogEnabled",
|
|
464
|
-
Description: "This parameter is the default value for logging processes based on this scheme"
|
|
531
|
+
Description: "This parameter is the default value for logging processes based on this scheme",
|
|
532
|
+
AutoRefresh: "Auto refresh",
|
|
533
|
+
Empty: "Empty",
|
|
534
|
+
Timestamp: "Timestamp",
|
|
535
|
+
Message: "Message",
|
|
536
|
+
Exception: "Exception",
|
|
537
|
+
Show: "Show",
|
|
538
|
+
ExceptionInfo: "Exception info",
|
|
539
|
+
HideDetails: "Hide details",
|
|
540
|
+
ShowDetails: "Show details"
|
|
465
541
|
},
|
|
466
542
|
ErrorActivityIsInitialCountText: "Un élément doit être marqué flag Initial",
|
|
467
543
|
ErrorActivityIsFinalCountText: "This scheme is Inlined. One or more elements must be marked flag Final",
|
|
@@ -519,22 +595,19 @@
|
|
|
519
595
|
InitialActivity: "Initial Activity",
|
|
520
596
|
InitialActivityDesc: "It a initial state.",
|
|
521
597
|
FinalActivity: "Final Activity",
|
|
522
|
-
FinalActivityDesc: "It a final state."
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
height: 150
|
|
598
|
+
FinalActivityDesc: "It a final state.",
|
|
599
|
+
SetLoopState: {
|
|
600
|
+
Title: "Set loop state",
|
|
601
|
+
Description: "The action for set loop state"
|
|
602
|
+
}
|
|
528
603
|
},
|
|
604
|
+
OverviewMap: {show: true, width: 300, height: 150},
|
|
529
605
|
UndoDepth: 200,
|
|
530
606
|
DefaultCulture: "fr-FR",
|
|
531
607
|
ErrorInBrowserConsole: "See more info in the browser console.",
|
|
532
608
|
ELEMENT: {
|
|
533
609
|
el: {
|
|
534
|
-
colorpicker: {
|
|
535
|
-
confirm: "OK",
|
|
536
|
-
clear: "Effacer"
|
|
537
|
-
},
|
|
610
|
+
colorpicker: {confirm: "OK", clear: "Effacer"},
|
|
538
611
|
datepicker: {
|
|
539
612
|
now: "Maintenant",
|
|
540
613
|
today: "Auj.",
|
|
@@ -626,38 +699,22 @@
|
|
|
626
699
|
clearFilter: "Tous",
|
|
627
700
|
sumText: "Somme"
|
|
628
701
|
},
|
|
629
|
-
tree: {
|
|
630
|
-
emptyText: "Aucune donnée"
|
|
631
|
-
},
|
|
702
|
+
tree: {emptyText: "Aucune donnée"},
|
|
632
703
|
transfer: {
|
|
633
704
|
noMatch: "Aucune correspondance",
|
|
634
705
|
noData: "Aucune donnée",
|
|
635
|
-
titles: [
|
|
636
|
-
"Liste 1",
|
|
637
|
-
"Liste 2"
|
|
638
|
-
],
|
|
706
|
+
titles: ["Liste 1", "Liste 2"],
|
|
639
707
|
filterPlaceholder: "Entrer un mot clef",
|
|
640
708
|
noCheckedFormat: "{total} elements",
|
|
641
709
|
hasCheckedFormat: "{checked}/{total} coché(s)"
|
|
642
710
|
},
|
|
643
|
-
image: {
|
|
644
|
-
|
|
645
|
-
},
|
|
646
|
-
|
|
647
|
-
title: "Back"
|
|
648
|
-
},
|
|
649
|
-
popconfirm: {
|
|
650
|
-
confirmButtonText: "Yes",
|
|
651
|
-
cancelButtonText: "No"
|
|
652
|
-
},
|
|
653
|
-
empty: {
|
|
654
|
-
description: "Aucune donnée"
|
|
655
|
-
}
|
|
711
|
+
image: {error: "FAILED"},
|
|
712
|
+
pageHeader: {title: "Back"},
|
|
713
|
+
popconfirm: {confirmButtonText: "Yes", cancelButtonText: "No"},
|
|
714
|
+
empty: {description: "Aucune donnée"}
|
|
656
715
|
}
|
|
657
716
|
},
|
|
658
|
-
EditJSONSettings: {
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
}
|
|
663
|
-
};
|
|
717
|
+
EditJSONSettings: {Height: 600, Width: 1000, CodeHeight: 480}
|
|
718
|
+
};
|
|
719
|
+
|
|
720
|
+
window.WorkflowDesignerConstants = WorkflowDesignerConstants;
|