@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: "Sei sicuro di voler eliminare gli articoli selezionati?",
|
|
19
20
|
DeleteConfirmCurrent: "Sei sicuro di voler eliminare questo articolo?",
|
|
20
21
|
FieldIsRequired: "Il campo è obbligatiorio!",
|
|
21
22
|
FieldIsNotCorrected: "Field is not corrected!",
|
|
22
23
|
FieldMustBeUnique: "Il campo deve essere unico!",
|
|
24
|
+
FieldMustContainAt: "Field must contain @",
|
|
23
25
|
ButtonTextDelete: "Elimina",
|
|
24
26
|
ButtonTextCreate: "Creare",
|
|
25
27
|
ButtonTextSave: "Salvare",
|
|
@@ -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: "Dall'attività",
|
|
148
150
|
To: "All'attività",
|
|
149
151
|
Classifier: "Classificatore",
|
|
152
|
+
ClassifierValues: ["NotSpecified", "Direct", "Reverse"],
|
|
150
153
|
Restrictions: "Restrizioni",
|
|
151
154
|
RestrictionsType: "Genere",
|
|
152
155
|
RestrictionsActor: "Attore",
|
|
@@ -219,22 +222,14 @@
|
|
|
219
222
|
IsDefault: "IsDefault",
|
|
220
223
|
Culture: "Cultura",
|
|
221
224
|
Value: "Valore",
|
|
222
|
-
Types: [
|
|
223
|
-
"Command",
|
|
224
|
-
"State",
|
|
225
|
-
"Parameter"
|
|
226
|
-
]
|
|
225
|
+
Types: ["Command", "State", "Parameter"]
|
|
227
226
|
},
|
|
228
227
|
TimerFormLabel: {
|
|
229
228
|
Title: "Timer",
|
|
230
229
|
Name: "Nome",
|
|
231
230
|
Type: "genere",
|
|
232
231
|
Value: "Valore",
|
|
233
|
-
Types: [
|
|
234
|
-
"Command",
|
|
235
|
-
"State",
|
|
236
|
-
"Parameter"
|
|
237
|
-
],
|
|
232
|
+
Types: ["Command", "State", "Parameter"],
|
|
238
233
|
OverrideHint: "Sovrascrivere il timer se esiste",
|
|
239
234
|
Override: "Sovrascrivere"
|
|
240
235
|
},
|
|
@@ -337,7 +332,7 @@
|
|
|
337
332
|
IsGlobal: "È globale",
|
|
338
333
|
IsAsync: "Async",
|
|
339
334
|
Type: "Genere",
|
|
340
|
-
GlobalDeleteMessage: "Se hai eliminato Global CodeAction - <br/> <b> altri schemi non potranno chiamarlo!
|
|
335
|
+
GlobalDeleteMessage: "Se hai eliminato Global CodeAction - <br/> <b> altri schemi non potranno chiamarlo! <\/b>",
|
|
341
336
|
UnGlobalMessage: "Hai cambiato lo stato del flag globale. <br/> Dopo aver salvato questo schema, verrà creata un'Azione Code locale basata su questa Global CodeAction.",
|
|
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 predefinito"
|
|
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 deve essere contrassegnato come flag Iniziale",
|
|
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: "it-IT",
|
|
531
607
|
ErrorInBrowserConsole: "See more info in the browser console.",
|
|
532
608
|
ELEMENT: {
|
|
533
609
|
el: {
|
|
534
|
-
colorpicker: {
|
|
535
|
-
confirm: "OK",
|
|
536
|
-
clear: "Pulisci"
|
|
537
|
-
},
|
|
610
|
+
colorpicker: {confirm: "OK", clear: "Pulisci"},
|
|
538
611
|
datepicker: {
|
|
539
612
|
now: "Ora",
|
|
540
613
|
today: "Oggi",
|
|
@@ -626,38 +699,22 @@
|
|
|
626
699
|
clearFilter: "Tutti",
|
|
627
700
|
sumText: "Somma"
|
|
628
701
|
},
|
|
629
|
-
tree: {
|
|
630
|
-
emptyText: "Nessun dato"
|
|
631
|
-
},
|
|
702
|
+
tree: {emptyText: "Nessun dato"},
|
|
632
703
|
transfer: {
|
|
633
704
|
noMatch: "Nessuna corrispondenza",
|
|
634
705
|
noData: "Nessun dato",
|
|
635
|
-
titles: [
|
|
636
|
-
"Lista 1",
|
|
637
|
-
"Lista 2"
|
|
638
|
-
],
|
|
706
|
+
titles: ["Lista 1", "Lista 2"],
|
|
639
707
|
filterPlaceholder: "Inserisci filtro",
|
|
640
708
|
noCheckedFormat: "{total} elementi",
|
|
641
709
|
hasCheckedFormat: "{checked}/{total} selezionati"
|
|
642
710
|
},
|
|
643
|
-
image: {
|
|
644
|
-
|
|
645
|
-
},
|
|
646
|
-
|
|
647
|
-
title: "Indietro"
|
|
648
|
-
},
|
|
649
|
-
popconfirm: {
|
|
650
|
-
confirmButtonText: "Sì",
|
|
651
|
-
cancelButtonText: "No"
|
|
652
|
-
},
|
|
653
|
-
empty: {
|
|
654
|
-
description: "Nessun dato"
|
|
655
|
-
}
|
|
711
|
+
image: {error: "ERRORE"},
|
|
712
|
+
pageHeader: {title: "Indietro"},
|
|
713
|
+
popconfirm: {confirmButtonText: "Sì", cancelButtonText: "No"},
|
|
714
|
+
empty: {description: "Nessun dato"}
|
|
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: "Tem certeza de que deseja excluir o (s) item (ns) selecionado (s)?",
|
|
19
20
|
DeleteConfirmCurrent: "Tem certeza de que deseja excluir este item?",
|
|
20
21
|
FieldIsRequired: "Campo é obrigatório!",
|
|
21
22
|
FieldIsNotCorrected: "Field is not corrected!",
|
|
22
23
|
FieldMustBeUnique: "O campo deve ser único!",
|
|
24
|
+
FieldMustContainAt: "Field must contain @",
|
|
23
25
|
ButtonTextDelete: "Excluir",
|
|
24
26
|
ButtonTextCreate: "Crio",
|
|
25
27
|
ButtonTextSave: "Salve",
|
|
@@ -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: "Da atividade",
|
|
148
150
|
To: "Para atividade",
|
|
149
151
|
Classifier: "Classificador",
|
|
152
|
+
ClassifierValues: ["NotSpecified", "Direct", "Reverse"],
|
|
150
153
|
Restrictions: "Restrições",
|
|
151
154
|
RestrictionsType: "Tipo",
|
|
152
155
|
RestrictionsActor: "Ator",
|
|
@@ -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: "Nome",
|
|
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: "Anule o temporizador se existir",
|
|
239
234
|
Override: "Anule"
|
|
240
235
|
},
|
|
@@ -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: "Padrão de zoom"
|
|
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: "Um elemento deve ser marcado como 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: "pt-BR",
|
|
531
607
|
ErrorInBrowserConsole: "See more info in the browser console.",
|
|
532
608
|
ELEMENT: {
|
|
533
609
|
el: {
|
|
534
|
-
colorpicker: {
|
|
535
|
-
confirm: "Confirmar",
|
|
536
|
-
clear: "Limpar"
|
|
537
|
-
},
|
|
610
|
+
colorpicker: {confirm: "Confirmar", clear: "Limpar"},
|
|
538
611
|
datepicker: {
|
|
539
612
|
now: "Agora",
|
|
540
613
|
today: "Hoje",
|
|
@@ -626,38 +699,22 @@
|
|
|
626
699
|
clearFilter: "Todos",
|
|
627
700
|
sumText: "Sum"
|
|
628
701
|
},
|
|
629
|
-
tree: {
|
|
630
|
-
emptyText: "Sem dados"
|
|
631
|
-
},
|
|
702
|
+
tree: {emptyText: "Sem dados"},
|
|
632
703
|
transfer: {
|
|
633
704
|
noMatch: "Sem correspondência",
|
|
634
705
|
noData: "Sem dados",
|
|
635
|
-
titles: [
|
|
636
|
-
"List 1",
|
|
637
|
-
"List 2"
|
|
638
|
-
],
|
|
706
|
+
titles: ["List 1", "List 2"],
|
|
639
707
|
filterPlaceholder: "Enter keyword",
|
|
640
708
|
noCheckedFormat: "{total} items",
|
|
641
709
|
hasCheckedFormat: "{checked}/{total} checked"
|
|
642
710
|
},
|
|
643
|
-
image: {
|
|
644
|
-
|
|
645
|
-
},
|
|
646
|
-
|
|
647
|
-
title: "Back"
|
|
648
|
-
},
|
|
649
|
-
popconfirm: {
|
|
650
|
-
confirmButtonText: "Yes",
|
|
651
|
-
cancelButtonText: "No"
|
|
652
|
-
},
|
|
653
|
-
empty: {
|
|
654
|
-
description: "Sem dados"
|
|
655
|
-
}
|
|
711
|
+
image: {error: "FAILED"},
|
|
712
|
+
pageHeader: {title: "Back"},
|
|
713
|
+
popconfirm: {confirmButtonText: "Yes", cancelButtonText: "No"},
|
|
714
|
+
empty: {description: "Sem dados"}
|
|
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;
|