@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,16 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
## WorkflowEngine.NET
|
|
2
|
+
|
|
3
|
+
[https://workflowengine.io](https://workflowengine.io)
|
|
4
|
+
|
|
5
|
+
Email: [support@optimajet.com](mailto:support@optimajet.com)
|
|
6
|
+
|
|
7
|
+
---
|
|
6
8
|
|
|
7
9
|
This folder contains localization files for the Workflow Engine Designer.
|
|
8
10
|
These files have been created by Google Translate.
|
|
9
11
|
|
|
10
|
-
Include your language file after workflowdesigner.min.js
|
|
11
|
-
|
|
12
|
+
Include your language file after `workflowdesigner.min.js`, like this for French:
|
|
13
|
+
```javascript
|
|
12
14
|
<script src="/Scripts/workflowdesigner.min.js" type="text/javascript"></script>
|
|
13
15
|
<script src="/Scripts/workflowdesigner.localization_fr.js" type="text/javascript"></script>
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
16
|
+
```
|
|
@@ -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: "Sind Sie sicher, dass Sie gewählten Einträge löschen möchten?",
|
|
19
20
|
DeleteConfirmCurrent: "Sind Sie sicher, dass Sie diesen Eintrag löschen möchten?",
|
|
20
21
|
FieldIsRequired: "Feld ist erforderlich!",
|
|
21
22
|
FieldIsNotCorrected: "Field is not corrected!",
|
|
22
23
|
FieldMustBeUnique: "Feld muss eindeutig sein!",
|
|
24
|
+
FieldMustContainAt: "Field must contain @",
|
|
23
25
|
ButtonTextDelete: "Löschen",
|
|
24
26
|
ButtonTextCreate: "Erstellen",
|
|
25
27
|
ButtonTextSave: "Speichern",
|
|
@@ -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: "Von der Aktivität",
|
|
148
150
|
To: "Zur Aktivität",
|
|
149
151
|
Classifier: "Klassifizierer",
|
|
152
|
+
ClassifierValues: ["NotSpecified", "Direct", "Reverse"],
|
|
150
153
|
Restrictions: "Beschränkungen",
|
|
151
154
|
RestrictionsType: "Art",
|
|
152
155
|
RestrictionsActor: "Anwender",
|
|
@@ -219,22 +222,14 @@
|
|
|
219
222
|
IsDefault: "Standardwert",
|
|
220
223
|
Culture: "Kultur",
|
|
221
224
|
Value: "Wert",
|
|
222
|
-
Types: [
|
|
223
|
-
"Befehl",
|
|
224
|
-
"Status",
|
|
225
|
-
"Parameter"
|
|
226
|
-
]
|
|
225
|
+
Types: ["Befehl", "Status", "Parameter"]
|
|
227
226
|
},
|
|
228
227
|
TimerFormLabel: {
|
|
229
228
|
Title: "Timer",
|
|
230
229
|
Name: "Name",
|
|
231
230
|
Type: "Art",
|
|
232
231
|
Value: "Wert",
|
|
233
|
-
Types: [
|
|
234
|
-
"Befehl",
|
|
235
|
-
"Status",
|
|
236
|
-
"Parameter"
|
|
237
|
-
],
|
|
232
|
+
Types: ["Befehl", "Status", "Parameter"],
|
|
238
233
|
OverrideHint: "Den Timer überschreiben, falls er existiert",
|
|
239
234
|
Override: "Überschreiben"
|
|
240
235
|
},
|
|
@@ -337,7 +332,7 @@
|
|
|
337
332
|
IsGlobal: "Ist global",
|
|
338
333
|
IsAsync: "Asynchron",
|
|
339
334
|
Type: "Art",
|
|
340
|
-
GlobalDeleteMessage: "Sie haben die globale CodeAction gelöscht. <br/><b> Andere Schemata können diese CodeAction nicht aufrufen!
|
|
335
|
+
GlobalDeleteMessage: "Sie haben die globale CodeAction gelöscht. <br/><b> Andere Schemata können diese CodeAction nicht aufrufen! <\/b>",
|
|
341
336
|
UnGlobalMessage: "Sie haben den Status des globalen Flags geändert. <br/> Nach dem Speichern dieses Schemas wird auf der Grundlage dieser globalen CodeAction eine lokale CodeAction erstellt.",
|
|
342
337
|
EditParameters: "Parameter editieren",
|
|
343
338
|
Parameters: "Parameter",
|
|
@@ -368,39 +363,97 @@
|
|
|
368
363
|
InvalidJson: "Das JSON-Object ist ungültig oder entspricht nicht dem Modell",
|
|
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: "Auf Standard zoomen"
|
|
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: "Eine Aktivität muss als Initial gekennzeichnet sein",
|
|
467
543
|
ErrorActivityIsFinalCountText: "Dieses Schema ist eingebettet. Eine oder mehrere Aktivitäten müssen als final gekennzeichnet sein.",
|
|
@@ -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: "de-de",
|
|
531
607
|
ErrorInBrowserConsole: "Weitere Informationen sehen Sie in der Browserconsole.",
|
|
532
608
|
ELEMENT: {
|
|
533
609
|
el: {
|
|
534
|
-
colorpicker: {
|
|
535
|
-
confirm: "OK",
|
|
536
|
-
clear: "Leeren"
|
|
537
|
-
},
|
|
610
|
+
colorpicker: {confirm: "OK", clear: "Leeren"},
|
|
538
611
|
datepicker: {
|
|
539
612
|
now: "Jetzt",
|
|
540
613
|
today: "Heute",
|
|
@@ -628,38 +701,22 @@
|
|
|
628
701
|
clearFilter: "Alles ",
|
|
629
702
|
sumText: "Summe"
|
|
630
703
|
},
|
|
631
|
-
tree: {
|
|
632
|
-
emptyText: "Keine Einträge"
|
|
633
|
-
},
|
|
704
|
+
tree: {emptyText: "Keine Einträge"},
|
|
634
705
|
transfer: {
|
|
635
706
|
noMatch: "Nichts gefunden.",
|
|
636
707
|
noData: "Keine Einträge",
|
|
637
|
-
titles: [
|
|
638
|
-
"Liste 1",
|
|
639
|
-
"Liste 2"
|
|
640
|
-
],
|
|
708
|
+
titles: ["Liste 1", "Liste 2"],
|
|
641
709
|
filterPlaceholder: "Einträge filtern",
|
|
642
710
|
noCheckedFormat: "{total} Einträge",
|
|
643
711
|
hasCheckedFormat: "{checked}/{total} ausgewählt"
|
|
644
712
|
},
|
|
645
|
-
image: {
|
|
646
|
-
|
|
647
|
-
},
|
|
648
|
-
|
|
649
|
-
title: "Back"
|
|
650
|
-
},
|
|
651
|
-
popconfirm: {
|
|
652
|
-
confirmButtonText: "Yes",
|
|
653
|
-
cancelButtonText: "No"
|
|
654
|
-
},
|
|
655
|
-
empty: {
|
|
656
|
-
description: "Keine Daten"
|
|
657
|
-
}
|
|
713
|
+
image: {error: "FAILED"},
|
|
714
|
+
pageHeader: {title: "Back"},
|
|
715
|
+
popconfirm: {confirmButtonText: "Yes", cancelButtonText: "No"},
|
|
716
|
+
empty: {description: "Keine Daten"}
|
|
658
717
|
}
|
|
659
718
|
},
|
|
660
|
-
EditJSONSettings: {
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
}
|
|
665
|
-
};
|
|
719
|
+
EditJSONSettings: {Height: 600, Width: 1000, CodeHeight: 480}
|
|
720
|
+
};
|
|
721
|
+
|
|
722
|
+
window.WorkflowDesignerConstants = WorkflowDesignerConstants;
|