Skip to content

Commit e2891ec

Browse files
committed
WFE 4.2.1
1 parent 98fb61c commit e2891ec

50 files changed

Lines changed: 593 additions & 103 deletions

File tree

Some content is hidden

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

Designer/Localization/workflowdesigner.localization_de.js

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ var WorkflowDesignerConstants = {
7878
TriggerTimer: "Timer",
7979
ConditionActionParameter: "Parameter",
8080
ConditionInversion: "Ergebnis umkehren",
81+
ConditionExpression: 'Expression',
8182
ConditionsConcatenationType: "Bedingungen Verkettungstyp",
8283
AllowConcatenationType: "Verkettung erlauben als",
8384
RestrictConcatenationType: "Verkettung einschränken als",
@@ -179,9 +180,11 @@ var WorkflowDesignerConstants = {
179180
EditParameters: "Parameter editieren",
180181
Parameters: "Parameter",
181182
Text: "Text",
183+
TextArea: "TextArea",
182184
Number: "Zahl",
183185
Checkbox: "Auswahlbox",
184186
Dropdown: "Auswahlliste",
187+
MultiSelect: "MultiSelect",
185188
DateTime: "Datum/Uhrzeit",
186189
Values: 'Werte',
187190
DropdownName: 'Name',
@@ -236,7 +239,6 @@ var WorkflowDesignerConstants = {
236239
return "Das Schema kann nicht gespeichert werden. Die folgenden Objekte sind in einem ungültigen Zustand: " + objects;
237240
},
238241
BrokenReferencesDialogText: "Dieses Schema enthält Referenzen zu Code-Aktionen, die nicht durch den aktuellen Code-Provider oder das aktuelle Schema bereitgestellt werden. Wollen Sie diese behalten?",
239-
FormMaxHeight: 700,
240242
EditCodeSettings: {
241243
Height: 600,
242244
Width: 1000,
@@ -268,6 +270,24 @@ var WorkflowDesignerConstants = {
268270
CreateEmptyType: "Erstellen",
269271
Format: "Format"
270272
},
273+
EditExpressionSettings:
274+
{
275+
Height: 600,
276+
Width: 1000,
277+
CodeHeight: 390,
278+
MessageBoxHeight: 400,
279+
MessageBoxWidth: 600,
280+
SuccessBoxHeight: 150,
281+
SuccessBoxWidth: 300
282+
},
283+
EditExpressionLabel: {
284+
Title: "Edit expression",
285+
Validate: "Validate",
286+
Succeeded: "Expression is valid.",
287+
Success: "Success",
288+
Error: "Error",
289+
OK: "OK"
290+
},
271291
OverviewMap: {
272292
show: true,
273293
width: 300,

Designer/Localization/workflowdesigner.localization_en.js

Lines changed: 31 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
None: "None",
3636
Warning: "Warning",
3737

38-
InfoBlockLabel: {
38+
InfoBlockLabel:{
3939
Activity: 'Activities: ',
4040
Transition: 'Transitions: ',
4141
Command: 'Commands: ',
@@ -76,22 +76,23 @@
7676
Condition: 'Condition',
7777
ConditionType: 'Type',
7878
ConditionAction: 'Action',
79-
ResultOnPreExecution: 'Result on PreExecution',
79+
ResultOnPreExecution: 'PreExec. Result',
8080
Trigger: 'Trigger',
8181
TriggerType: 'Type',
8282
TriggerCommand: 'Command',
8383
TriggerTimer: 'Timer',
8484
ConditionActionParameter: 'Action parameter',
85-
ConditionInversion: 'Invert action result',
85+
ConditionExpression: 'Expression',
86+
ConditionInversion: 'Invert result',
8687
ConditionsConcatenationType: 'Conditions concatenation type',
8788
AllowConcatenationType: 'Concat allow as',
8889
RestrictConcatenationType: 'Concat restrict as',
8990
ConditionsListShouldNotBeEmpty: 'Conditions list should not be empty',
9091
IsFork: 'Is fork',
9192
MergeViaSetState: 'Merge subprocess via set state',
9293
DisableParentStateControl: 'Disable parent process control',
93-
ShowConcatParameters: "Show concatenation",
94-
HideConcatParameters: "Hide concatenation",
94+
ShowConcatParameters : "Show concatenation",
95+
HideConcatParameters : "Hide concatenation",
9596
Annotations: 'Annotations',
9697
AnnotationName: 'Name',
9798
AnnotationValue: 'Value',
@@ -113,7 +114,7 @@
113114
Type: 'Type',
114115
Value: 'Value',
115116
Types: ['Command', 'State', 'Parameter'],
116-
NotOverrideIfExists: "Do not override timer if exists"
117+
NotOverrideIfExists : "Do not override timer if exists"
117118
},
118119

119120
ParameterFormLabel: {
@@ -123,7 +124,7 @@
123124
Purpose: 'Purpose',
124125
Value: 'Value',
125126
InitialValue: 'InitialValue',
126-
ShowSystemParameters: 'Show system parameters'
127+
ShowSystemParameters : 'Show system parameters'
127128
},
128129

129130
ActorFormLabel: {
@@ -167,7 +168,7 @@
167168
TimersTabNameLabel: 'Name',
168169
TimersTabValueLabel: 'Value',
169170
RootProcess: "Root Process",
170-
TagsLabel:'Tags (separated by commas)'
171+
TagsLabel:'Tags (separated by commas)',
171172
},
172173

173174
CodeActionsFormLabel: {
@@ -180,11 +181,13 @@
180181
GlobalDeleteMessage: "You've deleted the Global CodeAction.<br/><b>Other schemes won't be able to call this CodeAction!</b>",
181182
UnGlobalMessage: "You've changed the state of the global flag.<br/>There will be created a Local CodeAction based on this Global CodeAction after saving this scheme.",
182183
EditParameters: "Edit parameters",
183-
Parameters: "Parameters",
184+
Parameters: "Parameters" ,
184185
Text: "Text",
186+
TextArea: "TextArea",
185187
Number: "Number",
186188
Checkbox: "Checkbox",
187189
Dropdown: "Dropdown",
190+
MultiSelect: "MultiSelect",
188191
DateTime: "Date/Time",
189192
Values: 'Values',
190193
DropdownName: 'Name',
@@ -237,11 +240,10 @@
237240
ErrorActivityIsInitialCountText: "One element must be marked flag Initial",
238241
ErrorActivityIsFinalCountText: "This scheme is Inlined. One or more elements must be marked flag Final",
239242
ErrorReadOnlySaveText: "The Designer in ReadOnly mode, you can't save it.",
240-
ErrorInvalidObjectsSaveText: function (objects) {
243+
ErrorInvalidObjectsSaveText: function(objects) {
241244
return "Can't save the schema. Those objects are in invalid state: " + objects;
242245
},
243246
BrokenReferencesDialogText: "This schema contains references to Actions, Conditions or Rules that aren't defined by this schema or current action providers. Do you want to keep them?",
244-
FormMaxHeight: 700,
245247
EditCodeSettings: {
246248
Height: 600,
247249
Width: 1000,
@@ -273,6 +275,24 @@
273275
CreateEmptyType: "Create",
274276
Format: "Format"
275277
},
278+
EditExpressionSettings:
279+
{
280+
Height: 600,
281+
Width: 1000,
282+
CodeHeight: 390,
283+
MessageBoxHeight: 400,
284+
MessageBoxWidth: 600,
285+
SuccessBoxHeight: 150,
286+
SuccessBoxWidth: 300
287+
},
288+
EditExpressionLabel: {
289+
Title: "Edit expression",
290+
Validate: "Validate",
291+
Succeeded: "Expression is valid.",
292+
Success: "Success",
293+
Error: "Error",
294+
OK: "OK"
295+
},
276296
OverviewMap: {
277297
show: true,
278298
width: 300,

Designer/Localization/workflowdesigner.localization_es.js

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ var WorkflowDesignerConstants = {
7878
TriggerTimer: "Minutero",
7979
ConditionActionParameter: "Parámetro de acción",
8080
ConditionInversion: "Invertir resultado de acción",
81+
ConditionExpression: 'Expression',
8182
ConditionsConcatenationType: "Tipo de concatenación de condiciones.",
8283
AllowConcatenationType: "Concat permitir como",
8384
RestrictConcatenationType: "Concat restringir como",
@@ -179,9 +180,11 @@ var WorkflowDesignerConstants = {
179180
EditParameters: "Edit parameters",
180181
Parameters: "Parameters",
181182
Text: "Text",
183+
TextArea: "TextArea",
182184
Number: "Number",
183185
Checkbox: "Checkbox",
184186
Dropdown: "Dropdown",
187+
MultiSelect: "MultiSelect",
185188
DateTime: "Date/Time",
186189
Values: 'Values',
187190
DropdownName: 'Name',
@@ -236,7 +239,6 @@ var WorkflowDesignerConstants = {
236239
return "Can't save the schema. Those objects are in invalid state: " + objects;
237240
},
238241
BrokenReferencesDialogText: "This schema contains references to Actions, Conditions or Rules that aren't defined by this schema or current action providers. Do you want to keep them?",
239-
FormMaxHeight: 700,
240242
EditCodeSettings: {
241243
Height: 600,
242244
Width: 1000,
@@ -268,6 +270,24 @@ var WorkflowDesignerConstants = {
268270
CreateEmptyType: "Crear",
269271
Format: "Formato"
270272
},
273+
EditExpressionSettings:
274+
{
275+
Height: 600,
276+
Width: 1000,
277+
CodeHeight: 390,
278+
MessageBoxHeight: 400,
279+
MessageBoxWidth: 600,
280+
SuccessBoxHeight: 150,
281+
SuccessBoxWidth: 300
282+
},
283+
EditExpressionLabel: {
284+
Title: "Edit expression",
285+
Validate: "Validate",
286+
Succeeded: "Expression is valid.",
287+
Success: "Success",
288+
Error: "Error",
289+
OK: "OK"
290+
},
271291
OverviewMap: {
272292
show: true,
273293
width: 300,

Designer/Localization/workflowdesigner.localization_fr.js

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ var WorkflowDesignerConstants = {
7878
TriggerTimer: "Minuteur",
7979
ConditionActionParameter: "Paramètre d'action",
8080
ConditionInversion: "Inverser le résultat de l'action",
81+
ConditionExpression: 'Expression',
8182
ConditionsConcatenationType: "Type de concaténation des conditions",
8283
AllowConcatenationType: "Concat permettent comme",
8384
RestrictConcatenationType: "Concat restreindre comme",
@@ -179,9 +180,11 @@ var WorkflowDesignerConstants = {
179180
EditParameters: "Edit parameters",
180181
Parameters: "Parameters",
181182
Text: "Text",
183+
TextArea: "TextArea",
182184
Number: "Number",
183185
Checkbox: "Checkbox",
184186
Dropdown: "Dropdown",
187+
MultiSelect: "MultiSelect",
185188
DateTime: "Date/Time",
186189
Values: 'Values',
187190
DropdownName: 'Name',
@@ -236,7 +239,6 @@ var WorkflowDesignerConstants = {
236239
return "Can't save the schema. Those objects are in invalid state: " + objects;
237240
},
238241
BrokenReferencesDialogText: "This schema contains references to Actions, Conditions or Rules that aren't defined by this schema or current action providers. Do you want to keep them?",
239-
FormMaxHeight: 700,
240242
EditCodeSettings: {
241243
Height: 600,
242244
Width: 1000,
@@ -268,6 +270,24 @@ var WorkflowDesignerConstants = {
268270
CreateEmptyType: "Créer",
269271
Format: "Format"
270272
},
273+
EditExpressionSettings:
274+
{
275+
Height: 600,
276+
Width: 1000,
277+
CodeHeight: 390,
278+
MessageBoxHeight: 400,
279+
MessageBoxWidth: 600,
280+
SuccessBoxHeight: 150,
281+
SuccessBoxWidth: 300
282+
},
283+
EditExpressionLabel: {
284+
Title: "Edit expression",
285+
Validate: "Validate",
286+
Succeeded: "Expression is valid.",
287+
Success: "Success",
288+
Error: "Error",
289+
OK: "OK"
290+
},
271291
OverviewMap: {
272292
show: true,
273293
width: 300,

Designer/Localization/workflowdesigner.localization_it.js

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ var WorkflowDesignerConstants = {
7878
TriggerTimer: "Timer",
7979
ConditionActionParameter: "Parametro di azione",
8080
ConditionInversion: "Inverti il ​​risultato dell'azione",
81+
ConditionExpression: 'Expression',
8182
ConditionsConcatenationType: "Tipo di concatenazione delle condizioni",
8283
AllowConcatenationType: "Concat consentire come",
8384
RestrictConcatenationType: "Concat limitare come",
@@ -179,9 +180,11 @@ var WorkflowDesignerConstants = {
179180
EditParameters: "Edit parameters",
180181
Parameters: "Parameters",
181182
Text: "Text",
183+
TextArea: "TextArea",
182184
Number: "Number",
183185
Checkbox: "Checkbox",
184186
Dropdown: "Dropdown",
187+
MultiSelect: "MultiSelect",
185188
DateTime: "Date/Time",
186189
Values: 'Values',
187190
DropdownName: 'Name',
@@ -236,7 +239,6 @@ var WorkflowDesignerConstants = {
236239
return "Can't save the schema. Those objects are in invalid state: " + objects;
237240
},
238241
BrokenReferencesDialogText: "This schema contains references to Actions, Conditions or Rules that aren't defined by this schema or current action providers. Do you want to keep them?",
239-
FormMaxHeight: 700,
240242
EditCodeSettings: {
241243
Height: 600,
242244
Width: 1000,
@@ -268,6 +270,24 @@ var WorkflowDesignerConstants = {
268270
CreateEmptyType: "Creare",
269271
Format: "Formato"
270272
},
273+
EditExpressionSettings:
274+
{
275+
Height: 600,
276+
Width: 1000,
277+
CodeHeight: 390,
278+
MessageBoxHeight: 400,
279+
MessageBoxWidth: 600,
280+
SuccessBoxHeight: 150,
281+
SuccessBoxWidth: 300
282+
},
283+
EditExpressionLabel: {
284+
Title: "Edit expression",
285+
Validate: "Validate",
286+
Succeeded: "Expression is valid.",
287+
Success: "Success",
288+
Error: "Error",
289+
OK: "OK"
290+
},
271291
OverviewMap: {
272292
show: true,
273293
width: 300,

Designer/Localization/workflowdesigner.localization_pt.js

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ var WorkflowDesignerConstants = {
7878
TriggerTimer: "Cronômetro",
7979
ConditionActionParameter: "Parâmetro de ação",
8080
ConditionInversion: "Inverta o resultado da ação",
81+
ConditionExpression: 'Expression',
8182
ConditionsConcatenationType: "Tipo de concatenação de condições",
8283
AllowConcatenationType: "Concat permitir como",
8384
RestrictConcatenationType: "Concat restringir como",
@@ -179,9 +180,11 @@ var WorkflowDesignerConstants = {
179180
EditParameters: "Edit parameters",
180181
Parameters: "Parameters",
181182
Text: "Text",
183+
TextArea: "TextArea",
182184
Number: "Number",
183185
Checkbox: "Checkbox",
184186
Dropdown: "Dropdown",
187+
MultiSelect: "MultiSelect",
185188
DateTime: "Date/Time",
186189
Values: 'Values',
187190
DropdownName: 'Name',
@@ -236,7 +239,6 @@ var WorkflowDesignerConstants = {
236239
return "Can't save the schema. Those objects are in invalid state: " + objects;
237240
},
238241
BrokenReferencesDialogText: "This schema contains references to Actions, Conditions or Rules that aren't defined by this schema or current action providers. Do you want to keep them?",
239-
FormMaxHeight: 700,
240242
EditCodeSettings: {
241243
Height: 600,
242244
Width: 1000,
@@ -268,6 +270,24 @@ var WorkflowDesignerConstants = {
268270
CreateEmptyType: "Crio",
269271
Format: "Formato"
270272
},
273+
EditExpressionSettings:
274+
{
275+
Height: 600,
276+
Width: 1000,
277+
CodeHeight: 390,
278+
MessageBoxHeight: 400,
279+
MessageBoxWidth: 600,
280+
SuccessBoxHeight: 150,
281+
SuccessBoxWidth: 300
282+
},
283+
EditExpressionLabel: {
284+
Title: "Edit expression",
285+
Validate: "Validate",
286+
Succeeded: "Expression is valid.",
287+
Success: "Success",
288+
Error: "Error",
289+
OK: "OK"
290+
},
271291
OverviewMap: {
272292
show: true,
273293
width: 300,

0 commit comments

Comments
 (0)