Skip to content

Commit 7032f05

Browse files
committed
WFE 7.3.0 (autocommit)
1 parent 7dc2e73 commit 7032f05

File tree

621 files changed

+6284
-3108
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

621 files changed

+6284
-3108
lines changed

Designer/Localization/index.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
module.exports = {
2+
en: require('./en_default.json'),
3+
de: require('./de.json'),
4+
es: require('./es.json'),
5+
fr: require('./fr.json'),
6+
it: require('./it.json'),
7+
pt: require('./pt.json'),
8+
ru: require('./ru.json'),
9+
tr: require('./tr.json'),
10+
ar: require('./ar.json')
11+
};

Designer/templates/activity.html

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -429,15 +429,21 @@ <h4 v-if="itemHasComment" style="padding-bottom: 1px;border-bottom: 1px solid rg
429429
</div>
430430
<script type="application/javascript">
431431
function activity_Init(me) {
432+
me.VueConfig.methods.UpdateLanguage = function () {
433+
me.VueConfig.data = Object.assign(me.VueConfig.data, {
434+
labels: WorkflowDesignerConstants.ActivityFormLabel,
435+
ButtonTextSave: WorkflowDesignerConstants.ButtonTextSave,
436+
ButtonTextCancel: WorkflowDesignerConstants.ButtonTextCancel,
437+
ButtonTextCreate: WorkflowDesignerConstants.ButtonTextCreate,
438+
ButtonTextDelete: WorkflowDesignerConstants.ButtonTextDelete,
439+
SwitchToDefaultMode: WorkflowDesignerConstants.SwitchToDefaultMode,
440+
SwitchToExpertMode: WorkflowDesignerConstants.SwitchToExpertMode
441+
});
442+
}
443+
444+
me.VueConfig.methods.UpdateLanguage();
432445
me.VueConfig.data = Object.assign(me.VueConfig.data, {
433446
readonly: false,
434-
labels: WorkflowDesignerConstants.ActivityFormLabel,
435-
ButtonTextSave: WorkflowDesignerConstants.ButtonTextSave,
436-
ButtonTextCancel: WorkflowDesignerConstants.ButtonTextCancel,
437-
ButtonTextCreate: WorkflowDesignerConstants.ButtonTextCreate,
438-
ButtonTextDelete: WorkflowDesignerConstants.ButtonTextDelete,
439-
SwitchToDefaultMode: WorkflowDesignerConstants.SwitchToDefaultMode,
440-
SwitchToExpertMode: WorkflowDesignerConstants.SwitchToExpertMode,
441447
expertMode: false,
442448
actions: [],
443449
activities: [],

Designer/templates/activitygroup.html

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,17 @@ <h3>{{ title }}</h3>
77

88
<script type="application/javascript">
99
function activitygroup_Init(me) {
10+
me.VueConfig.methods.UpdateLanguage = function () {
11+
me.VueConfig.data = Object.assign(me.VueConfig.data,{
12+
labels: WorkflowDesignerConstants.EditExpressionLabel,
13+
ButtonTextCancel: WorkflowDesignerConstants.ButtonTextCancel,
14+
title: me.options.title
15+
})
16+
}
17+
18+
me.VueConfig.methods.UpdateLanguage();
1019
me.VueConfig.data = Object.assign(me.VueConfig.data, {
1120
designer_container: me.id + '_designer',
12-
labels: WorkflowDesignerConstants.EditExpressionLabel,
13-
ButtonTextCancel: WorkflowDesignerConstants.ButtonTextCancel,
14-
title: me.options.title
1521
});
1622

1723
me.VueConfig.methods.onUpdate = function (value) {

Designer/templates/activityinline.html

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,17 @@ <h3>{{ labels.TitleForInline }}</h3>
3737
</div>
3838
<script type="application/javascript">
3939
function activityinline_Init(me) {
40+
me.VueConfig.methods.UpdateLanguage = function () {
41+
me.VueConfig.data = Object.assign(me.VueConfig.data, {
42+
labels: WorkflowDesignerConstants.ActivityFormLabel,
43+
ButtonTextSave: WorkflowDesignerConstants.ButtonTextSave,
44+
ButtonTextCancel: WorkflowDesignerConstants.ButtonTextCancel,
45+
});
46+
}
47+
48+
me.VueConfig.methods.UpdateLanguage();
4049
me.VueConfig.data = Object.assign(me.VueConfig.data, {
4150
readonly: false,
42-
labels: WorkflowDesignerConstants.ActivityFormLabel,
43-
ButtonTextSave: WorkflowDesignerConstants.ButtonTextSave,
44-
ButtonTextCancel: WorkflowDesignerConstants.ButtonTextCancel,
4551
itemHasComment: false,
4652
schemes: [],
4753
FormData: {}

Designer/templates/activitytoolbar.html

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,16 @@
3737
</div>
3838
<script type="application/javascript">
3939
function activitytoolbar_Init(me) {
40+
me.VueConfig.methods.UpdateLanguage = function () {
41+
me.VueConfig.data = Object.assign(me.VueConfig.data, {
42+
labels: {
43+
...WorkflowDesignerConstants.ElementToolbar,
44+
...WorkflowDesignerConstants.ActivityToolbar
45+
},
46+
});
47+
}
48+
49+
me.VueConfig.methods.UpdateLanguage();
4050
me.VueConfig.data = Object.assign(me.VueConfig.data, {
4151
activity: undefined,
4252
Color: '',
@@ -62,10 +72,6 @@
6272
'#9e9e9e',
6373
'#607d8b'
6474
],
65-
labels: {
66-
...WorkflowDesignerConstants.ElementToolbar,
67-
...WorkflowDesignerConstants.ActivityToolbar
68-
},
6975
graph: me.value.graph
7076

7177
});

Designer/templates/actors.html

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,20 @@ <h3 class="WorkflowDesignerTitleWithCreate">
6161
</div>
6262
<script type="application/javascript">
6363
function actors_Init(me){
64+
me.VueConfig.methods.UpdateLanguage = function () {
65+
me.VueConfig.data = Object.assign(me.VueConfig.data, {
66+
labels: WorkflowDesignerConstants.ActorFormLabel,
67+
ButtonTextCreate: WorkflowDesignerConstants.ButtonTextCreate,
68+
ButtonTextDelete: WorkflowDesignerConstants.ButtonTextDelete,
69+
ButtonTextSave: WorkflowDesignerConstants.ButtonTextSave,
70+
ButtonTextCancel: WorkflowDesignerConstants.ButtonTextCancel,
71+
});
72+
};
73+
74+
me.VueConfig.methods.UpdateLanguage();
6475
me.VueConfig.data = Object.assign(me.VueConfig.data, {
6576
readonly: false,
66-
labels: WorkflowDesignerConstants.ActorFormLabel,
6777
editItem: undefined,
68-
ButtonTextCreate: WorkflowDesignerConstants.ButtonTextCreate,
69-
ButtonTextDelete: WorkflowDesignerConstants.ButtonTextDelete,
70-
ButtonTextSave: WorkflowDesignerConstants.ButtonTextSave,
71-
ButtonTextCancel: WorkflowDesignerConstants.ButtonTextCancel,
7278
showPredefined: false
7379
});
7480

Designer/templates/assignments.html

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,10 +138,16 @@ <h3>{{ labels.Title }}
138138
</div>
139139
<script type="application/javascript">
140140
function assignments_Init(me) {
141+
me.VueConfig.methods.UpdateLanguage = function () {
142+
me.VueConfig.data = Object.assign(me.VueConfig.data, {
143+
labels: WorkflowDesignerConstants.AssignmentFormLabel,
144+
ButtonTextCancel: WorkflowDesignerConstants.ButtonTextCancel,
145+
});
146+
};
147+
148+
me.VueConfig.methods.UpdateLanguage();
141149
me.VueConfig.data = Object.assign(me.VueConfig.data, {
142150
readonly: false,
143-
labels: WorkflowDesignerConstants.AssignmentFormLabel,
144-
ButtonTextCancel: WorkflowDesignerConstants.ButtonTextCancel,
145151
assignments: [],
146152
statuses: [],
147153
search: '',

Designer/templates/codeactions.html

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -84,15 +84,21 @@ <h3 class="WorkflowDesignerTitleWithCreate">
8484
</div>
8585
<script type="application/javascript">
8686
function codeactions_Init(me){
87+
me.VueConfig.methods.UpdateLanguage = function () {
88+
me.VueConfig.data = Object.assign(me.VueConfig.data, {
89+
labels: WorkflowDesignerConstants.CodeActionsFormLabel,
90+
ButtonTextCreate: WorkflowDesignerConstants.ButtonTextCreate,
91+
ButtonTextDelete: WorkflowDesignerConstants.ButtonTextDelete,
92+
ButtonTextSave: WorkflowDesignerConstants.ButtonTextSave,
93+
ButtonTextCancel: WorkflowDesignerConstants.ButtonTextCancel,
94+
EditCodeLabel: WorkflowDesignerConstants.EditCodeLabel.EditCodeButton,
95+
});
96+
};
97+
98+
me.VueConfig.methods.UpdateLanguage();
8799
me.VueConfig.data = Object.assign(me.VueConfig.data, {
88100
readonly: false,
89-
labels: WorkflowDesignerConstants.CodeActionsFormLabel,
90101
editItem: undefined,
91-
ButtonTextCreate: WorkflowDesignerConstants.ButtonTextCreate,
92-
ButtonTextDelete: WorkflowDesignerConstants.ButtonTextDelete,
93-
ButtonTextSave: WorkflowDesignerConstants.ButtonTextSave,
94-
ButtonTextCancel: WorkflowDesignerConstants.ButtonTextCancel,
95-
EditCodeLabel: WorkflowDesignerConstants.EditCodeLabel.EditCodeButton,
96102
Usings: null,
97103
UsingsValue: null,
98104
editCodeItem: undefined,

Designer/templates/codeform.html

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,19 @@ <h3>{{ ParentItem.Name ? ParentItem.Name : "Unnamed code acttion" }} {{ labels.T
3737
</el-dialog>
3838
<script type="application/javascript">
3939
function codeform_Init(me) {
40+
me.VueConfig.methods.UpdateLanguage = function () {
41+
me.VueConfig.data = Object.assign(me.VueConfig.data, {
42+
labels: WorkflowDesignerConstants.EditCodeLabel,
43+
ButtonTextSave: WorkflowDesignerConstants.ButtonTextSave,
44+
ButtonTextCancel: WorkflowDesignerConstants.ButtonTextCancel,
45+
});
46+
}
47+
48+
me.VueConfig.methods.UpdateLanguage();
4049
var funcSignature = 'ProcessInstance processInstance, WorkflowRuntime runtime, string parameter';
4150
me.VueConfig.data = Object.assign(me.VueConfig.data, {
4251
editor_container: me.id + '_editor',
4352
readonly: false,
44-
labels: WorkflowDesignerConstants.EditCodeLabel,
45-
ButtonTextSave: WorkflowDesignerConstants.ButtonTextSave,
46-
ButtonTextCancel: WorkflowDesignerConstants.ButtonTextCancel,
4753
Usings: null,
4854
UsingsValue: null,
4955
Name: '',

Designer/templates/commandParameters.html

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,20 @@ <h3 class="WorkflowDesignerTitleWithCreate">
6262
</div>
6363
<script type="application/javascript">
6464
function commandParameters_Init(me){
65+
me.VueConfig.methods.UpdateLanguage = function () {
66+
me.VueConfig.data = Object.assign(me.VueConfig.data, {
67+
labels: WorkflowDesignerConstants.CommandParametersFormLabel,
68+
ButtonTextCreate: WorkflowDesignerConstants.ButtonTextCreate,
69+
ButtonTextDelete: WorkflowDesignerConstants.ButtonTextDelete,
70+
ButtonTextSave: WorkflowDesignerConstants.ButtonTextSave,
71+
ButtonTextCancel: WorkflowDesignerConstants.ButtonTextCancel,
72+
});
73+
}
74+
75+
me.VueConfig.methods.UpdateLanguage();
6576
me.VueConfig.data = Object.assign(me.VueConfig.data, {
6677
readonly: false,
67-
labels: WorkflowDesignerConstants.CommandParametersFormLabel,
6878
editItem: undefined,
69-
ButtonTextCreate: WorkflowDesignerConstants.ButtonTextCreate,
70-
ButtonTextDelete: WorkflowDesignerConstants.ButtonTextDelete,
71-
ButtonTextSave: WorkflowDesignerConstants.ButtonTextSave,
72-
ButtonTextCancel: WorkflowDesignerConstants.ButtonTextCancel,
7379
parametersStore: me.graph.data.Parameters,
7480
});
7581

Designer/templates/commands.html

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,20 @@ <h3 class="WorkflowDesignerTitleWithCreate">
4040
</div>
4141
<script type="application/javascript">
4242
function commands_Init(me){
43+
me.VueConfig.methods.UpdateLanguage = function () {
44+
me.VueConfig.data = Object.assign(me.VueConfig.data, {
45+
labels: WorkflowDesignerConstants.CommandFormLabel,
46+
ButtonTextCreate: WorkflowDesignerConstants.ButtonTextCreate,
47+
ButtonTextDelete: WorkflowDesignerConstants.ButtonTextDelete,
48+
ButtonTextSave: WorkflowDesignerConstants.ButtonTextSave,
49+
ButtonTextCancel: WorkflowDesignerConstants.ButtonTextCancel,
50+
});
51+
}
52+
53+
me.VueConfig.methods.UpdateLanguage();
4354
me.VueConfig.data = Object.assign(me.VueConfig.data, {
4455
readonly: false,
45-
labels: WorkflowDesignerConstants.CommandFormLabel,
4656
editItem: undefined,
47-
ButtonTextCreate: WorkflowDesignerConstants.ButtonTextCreate,
48-
ButtonTextDelete: WorkflowDesignerConstants.ButtonTextDelete,
49-
ButtonTextSave: WorkflowDesignerConstants.ButtonTextSave,
50-
ButtonTextCancel: WorkflowDesignerConstants.ButtonTextCancel,
5157
editParametersItem: undefined
5258
});
5359

Designer/templates/comment.html

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,17 @@ <h3>{{ labels.Title }}</h3>
7171
</div>
7272
<script type="application/javascript">
7373
function comment_Init(me) {
74+
me.VueConfig.methods.UpdateLanguage = function () {
75+
me.VueConfig.data = Object.assign(me.VueConfig.data, {
76+
labels: WorkflowDesignerConstants.Elements.Comment,
77+
ButtonTextSave: WorkflowDesignerConstants.ButtonTextSave,
78+
ButtonTextCancel: WorkflowDesignerConstants.ButtonTextCancel,
79+
});
80+
}
81+
82+
me.VueConfig.methods.UpdateLanguage()
7483
me.VueConfig.data = Object.assign(me.VueConfig.data, {
7584
readonly: false,
76-
labels: WorkflowDesignerConstants.Elements.Comment,
77-
ButtonTextSave: WorkflowDesignerConstants.ButtonTextSave,
78-
ButtonTextCancel: WorkflowDesignerConstants.ButtonTextCancel,
7985
FormatText: [],
8086
FormData: {
8187
CommentDefinition: {},

Designer/templates/confirmDialog.html

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,23 @@
2020
</el-dialog>
2121
<script type="application/javascript">
2222
function confirmDialog_Init(me) {
23-
me.VueConfig.methods.defaultInit = function () {
23+
me.VueConfig.methods.UpdateLanguage = function () {
2424
me.VueConfig.data = Object.assign(me.VueConfig.data, {
2525
title: WorkflowDesignerConstants.DialogConfirmText,
2626
message: WorkflowDesignerConstants.CloseWithoutSaving,
27-
isAlert: false,
28-
actions: undefined,
29-
visible: true,
3027
yes: WorkflowDesignerConstants.ButtonTextYes,
3128
no: WorkflowDesignerConstants.ButtonTextNo,
3229
ok: WorkflowDesignerConstants.ButtonTextOk,
3330
});
31+
}
32+
33+
me.VueConfig.methods.UpdateLanguage();
34+
me.VueConfig.methods.defaultInit = function () {
35+
me.VueConfig.data = Object.assign(me.VueConfig.data, {
36+
isAlert: false,
37+
actions: undefined,
38+
visible: true,
39+
});
3440
};
3541

3642
me.VueConfig.methods.defaultInit();
@@ -66,6 +72,5 @@
6672
if (!value.title && value.isAlert)
6773
me.VueConfig.data.title = WorkflowDesignerConstants.AlertTitle;
6874
};
69-
7075
}
7176
</script>

Designer/templates/customforms/assignmentplugin/assignmentchangeform.html

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -301,16 +301,22 @@ <h4 class="WorkflowDesignerTitleWithCreate">
301301

302302
<script type="application/javascript">
303303
function customforms_assignmentplugin_assignmentchangeform_Init(me) {
304+
me.VueConfig.methods.UpdateLanguage = function () {
305+
me.VueConfig.data = Object.assign(me.VueConfig.data, {
306+
FieldIsRequired: WorkflowDesignerConstants.FieldIsRequired,
307+
labels: WorkflowDesignerConstants.EditParametersFormlabel,
308+
customLabels: WorkflowDesignerConstants.EditParametersFormlabel.CustomForms.AssignmentChange,
309+
ButtonTextSave: WorkflowDesignerConstants.ButtonTextSave,
310+
ButtonTextCancel: WorkflowDesignerConstants.ButtonTextCancel,
311+
ButtonTextCreate: WorkflowDesignerConstants.ButtonTextCreate,
312+
parameterFromProcessColor: WorkflowDesignerConstants.ParameterFromProcessColor,
313+
})
314+
}
315+
316+
me.VueConfig.methods.UpdateLanguage();
304317
me.VueConfig.data = Object.assign(me.VueConfig.data, {
305318
customTitle: undefined,
306319
readonly: false,
307-
FieldIsRequired: WorkflowDesignerConstants.FieldIsRequired,
308-
labels: WorkflowDesignerConstants.EditParametersFormlabel,
309-
customLabels: WorkflowDesignerConstants.EditParametersFormlabel.CustomForms.AssignmentChange,
310-
ButtonTextSave: WorkflowDesignerConstants.ButtonTextSave,
311-
ButtonTextCancel: WorkflowDesignerConstants.ButtonTextCancel,
312-
ButtonTextCreate: WorkflowDesignerConstants.ButtonTextCreate,
313-
parameterFromProcessColor: WorkflowDesignerConstants.ParameterFromProcessColor,
314320
FormData: {},
315321
Field: {},
316322
parameterFromProcess: {

Designer/templates/customforms/assignmentplugin/assignmentcreateform.html

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -203,15 +203,21 @@ <h4 v-if="Field.State != undefined" style="padding-bottom: 1px;border-bottom: 1p
203203

204204
<script type="application/javascript">
205205
function customforms_assignmentplugin_assignmentcreateform_Init(me) {
206+
me.VueConfig.methods.UpdateLanguage = function () {
207+
me.VueConfig.data = Object.assign(me.VueConfig.data, {
208+
FieldIsRequired: WorkflowDesignerConstants.FieldIsRequired,
209+
labels: WorkflowDesignerConstants.EditParametersFormlabel,
210+
customLabels: WorkflowDesignerConstants.EditParametersFormlabel.CustomForms.AssignmentCreate,
211+
ButtonTextSave: WorkflowDesignerConstants.ButtonTextSave,
212+
ButtonTextCancel: WorkflowDesignerConstants.ButtonTextCancel,
213+
parameterFromProcessColor: WorkflowDesignerConstants.ParameterFromProcessColor,
214+
})
215+
}
216+
217+
me.VueConfig.methods.UpdateLanguage();
206218
me.VueConfig.data = Object.assign(me.VueConfig.data, {
207219
customTitle: undefined,
208220
readonly: false,
209-
FieldIsRequired: WorkflowDesignerConstants.FieldIsRequired,
210-
labels: WorkflowDesignerConstants.EditParametersFormlabel,
211-
customLabels: WorkflowDesignerConstants.EditParametersFormlabel.CustomForms.AssignmentCreate,
212-
ButtonTextSave: WorkflowDesignerConstants.ButtonTextSave,
213-
ButtonTextCancel: WorkflowDesignerConstants.ButtonTextCancel,
214-
parameterFromProcessColor: WorkflowDesignerConstants.ParameterFromProcessColor,
215221
FormData: {},
216222
Field: {},
217223
parameterFromProcess: {

0 commit comments

Comments
 (0)