forked from optimajet/WorkflowEngine.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDesignerCostants.js
More file actions
166 lines (154 loc) · 4.94 KB
/
DesignerCostants.js
File metadata and controls
166 lines (154 loc) · 4.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
var WorkflowDesignerConstants = {
SelectColor: 'yellow',
ActivityColor: '#F2F2F2',
ActivityInitialColor: '#CCCC99',
ActivityFinalColor: '#CC9966',
ActivityCurrentColor: '#00CCCC',
DeleteConfirm: 'Are you sure you want to delete selected item(s)?',
FieldIsRequired: 'Field is required!',
FieldMustBeUnique: 'Field must be unique!',
ButtonTextDelete: 'Delete',
ButtonTextCreate: 'Create',
InfoBlockLabel:{
Activity: 'Activity: ',
Transition: 'Transition: ',
Command: 'Command: ',
},
ActivityNamePrefix: 'Activity_',
ActivityFormLabel: {
Title: 'Activity',
Name: 'Name',
State: 'State',
IsInitial: 'Initial',
IsFinal: 'Final',
IsForSetState: 'For set state',
IsAutoSchemeUpdate: 'Auto scheme update',
Implementation: 'Implementation',
PreExecutionImplementation: 'PreExecution Implementation',
ImpOrder: 'Order',
ImpAction: 'Action',
ImpActionParameter: 'Action parameter',
AlwaysConditionShouldBeSingle: 'Always condition should be single',
OtherwiseConditionShouldBeSingle: 'Otherwise condition should be single'
},
TransitionFormLabel: {
Title: 'Transition',
Name: 'Name',
From: 'From activity',
To: 'To activity',
Classifier: 'Classifier',
Restrictions: 'Restrictions',
RestrictionsType: 'Type',
RestrictionsActor: 'Actor',
Condition: 'Condition',
ConditionType: 'Type',
ConditionAction: 'Action',
ResultOnPreExecution: 'Result on PreExecution',
Trigger: 'Trigger',
TriggerType: 'Type',
TriggerCommand: 'Command',
TriggerTimer: 'Timer',
ConditionActionParameter: 'Action parameter',
ConditionInversion: 'Invert action result',
ConditionsConcatenationType: 'Conditions concatenation type',
AllowConcatenationType: 'Concat allow as',
RestrictConcatenationType: 'Concat restrict as',
ConditionsListShouldNotBeEmpty: 'Conditions list should not be empty',
IsFork: 'Is fork',
MergeViaSetState: 'Merge subprocess via set state',
DisableParentStateControl: 'Disable parent process control'
},
LocalizationFormLabel: {
Title: 'Localization',
ObjectName: 'ObjectName',
Type: 'Type',
IsDefault: 'IsDefault',
Culture: 'Culture',
Value: 'Value',
Types: ['Command', 'State', 'Parameter'],
},
TimerFormLabel: {
Title: 'Timers',
Name: 'Name',
Type: 'Type',
Value: 'Value',
Types: ['Command', 'State', 'Parameter'],
NotOverrideIfExists : "Do not override timer if exists"
},
ParameterFormLabel: {
Title: 'Parameters',
Name: 'Name',
Type: 'Type',
Purpose: 'Purpose',
Value: 'Value',
DefaultValue: 'DefaultValue'
},
ActorFormLabel: {
Title: 'Actors',
Name: 'Name',
Rule: 'Rule',
Value: 'Value'
},
CommandFormLabel: {
Title: 'Command',
Name: "Name",
InputParameters: "Input Parameters",
InputParametersName: 'Name',
InputParametersParameter: 'Parameter'
},
AdditionalParamsFormLabel: {
Title: 'Additional Parameters',
IsObsolete: "IsObsolete",
DefiningParameters: 'Defining parameters',
ProcessParameters: 'Process parameters',
ProcessParametersName: 'Name',
ProcessParametersValue: 'Value'
},
CodeActionsFormLabel: {
Title: 'Code actions',
Name: 'Name',
ActionCode: 'Action code',
IsGlobal: 'Is global',
Type: 'Type'
},
ToolbarLabel: {
CreateActivity: 'Create activity',
CopySelected: 'Copy selected',
Undo: 'Undo',
Redo: 'Redo',
Move: 'Move',
ZoomIn: 'Zoom In',
ZoomOut: 'Zoom Out',
ZoomPositionDefault: 'Zoom and position default set',
AutoArrangement: 'Auto arrangement',
Actors: 'Actors',
Commands: 'Commands',
Parameters: 'Parameters',
Localization: 'Localization',
Timers: 'Timers',
AdditionalParameters: 'Additional Parameters',
CodeActions: 'Code actions'
},
ErrorActivityIsInitialCountText: "One element must be marked flag Initial",
ErrorReadOnlySaveText: "The Designer in ReadOnly mode, you can't save it.",
FormMaxHeight: 500,
EditCodeSettings: {
Height: 600,
Width: 1000,
CodeHeight: 390,
MessageBoxHeight: 400,
MessageBoxWidth: 600,
SuccessBoxHeight: 150,
SuccessBoxWidth: 300
},
EditCodeLabel: {
Title: "Edit code",
EditCodeButton: 'Edit code',
Usings: 'Usings',
Compile: "Compile",
CompileSucceeded: "Compilation succeeded.",
Success: "Success",
Error: "Error",
OK: "OK"
}
};