@optimajet/workflow-designer 5.3.5 → 6.0.0
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/dist/workflowdesigner.min.css +582 -261
- package/dist/workflowdesignerfull.min.js +5 -5
- package/localization/index.js +11 -0
- package/localization/readme.md +4 -12
- package/localization/workflowdesigner.localization_en.json +614 -0
- package/package.json +16 -5
- package/localization/workflowdesigner.localization_de.js +0 -726
- package/localization/workflowdesigner.localization_en.js +0 -712
- package/localization/workflowdesigner.localization_es.js +0 -724
- package/localization/workflowdesigner.localization_fr.js +0 -724
- package/localization/workflowdesigner.localization_it.js +0 -724
- package/localization/workflowdesigner.localization_pt.js +0 -724
- package/localization/workflowdesigner.localization_ru.js +0 -733
- package/localization/workflowdesigner.localization_tr.js +0 -724
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
const en = require('./en_default.json');
|
|
2
|
+
const ar = require('./ar.json');
|
|
3
|
+
const de = require('./de.json');
|
|
4
|
+
const es = require('./es.json');
|
|
5
|
+
const fr = require('./fr.json');
|
|
6
|
+
const it = require('./it.json');
|
|
7
|
+
const pt = require('./pt.json');
|
|
8
|
+
const ru = require('./ru.json');
|
|
9
|
+
const tr = require('./tr.json');
|
|
10
|
+
|
|
11
|
+
module.exports = {ar, de, es, fr, it, pt, ru, tr, en};
|
package/localization/readme.md
CHANGED
|
@@ -1,16 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
[https://workflowengine.io](https://workflowengine.io)
|
|
4
|
-
|
|
5
|
-
Email: [support@optimajet.com](mailto:support@optimajet.com)
|
|
6
|
-
|
|
7
|
-
---
|
|
1
|
+
# Designer Localization
|
|
8
2
|
|
|
9
3
|
This folder contains localization files for the Workflow Engine Designer.
|
|
10
4
|
These files have been created by Google Translate.
|
|
11
5
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
<script src="/Scripts/workflowdesigner.localization_fr.js" type="text/javascript"></script>
|
|
16
|
-
```
|
|
6
|
+
For include new localization:
|
|
7
|
+
1. Add the file to the `./localization` folder, named as `workflowdesigner.localization_<lang code>.json`
|
|
8
|
+
2. Add it to the imports and `languages` array in `WFED/Localization/Langs.js`
|
|
@@ -0,0 +1,614 @@
|
|
|
1
|
+
{
|
|
2
|
+
"DeleteConfirm": "Are you sure you want to delete selected item(s)?",
|
|
3
|
+
"DeleteConfirmCurrent": "Are you sure you want to delete this item?",
|
|
4
|
+
"EscapeConfirm": "There are unsaved changes. Do you want to save the schema?",
|
|
5
|
+
"FieldIsRequired": "Field is required!",
|
|
6
|
+
"FieldIsNotCorrected": "Field is not corrected!",
|
|
7
|
+
"FieldMustBeUnique": "Field must be unique!",
|
|
8
|
+
"FieldMustContainAt": "Field must contain @",
|
|
9
|
+
"ButtonTextDelete": "Delete",
|
|
10
|
+
"ButtonTextCreate": "Create",
|
|
11
|
+
"ButtonTextSave": "Save",
|
|
12
|
+
"ButtonTextYes": "Yes",
|
|
13
|
+
"ButtonTextNo": "No",
|
|
14
|
+
"ButtonTextOk": "Ok",
|
|
15
|
+
"ButtonTextCancel": "Cancel",
|
|
16
|
+
"ButtonTextClose": "Close",
|
|
17
|
+
"ButtonTextUndo": "Undo",
|
|
18
|
+
"ButtonTextRedo": "Redo",
|
|
19
|
+
"SaveConfirm": "Save changes?",
|
|
20
|
+
"CloseWithoutSaving": "Close without saving?",
|
|
21
|
+
"TransitionAuto": "Auto",
|
|
22
|
+
"DialogConfirmText": "Question",
|
|
23
|
+
"AlertTitle": "Warning",
|
|
24
|
+
"None": "None",
|
|
25
|
+
"Warning": "Warning",
|
|
26
|
+
"SwitchToExpertMode": "Switch To Expert Mode",
|
|
27
|
+
"SwitchToDefaultMode": "Switch To Default Mode",
|
|
28
|
+
"InfoBlockLabel": {
|
|
29
|
+
"Activity": "Activities: ",
|
|
30
|
+
"Transition": "Transitions: ",
|
|
31
|
+
"Command": "Commands: "
|
|
32
|
+
},
|
|
33
|
+
"ActivityNamePrefix": "Activity",
|
|
34
|
+
"ActivityFormLabel": {
|
|
35
|
+
"Title": "Activity",
|
|
36
|
+
"TitleForInline": "Activity Inline",
|
|
37
|
+
"Name": "Name",
|
|
38
|
+
"State": "State",
|
|
39
|
+
"IsInitial": "Initial",
|
|
40
|
+
"IsFinal": "Final",
|
|
41
|
+
"IsForSetState": "For set state",
|
|
42
|
+
"IsAutoSchemeUpdate": "Auto scheme update",
|
|
43
|
+
"DisablePersist": "Disable persist",
|
|
44
|
+
"DisablePersists": {
|
|
45
|
+
"DisablePersistTransitionHistory": "Disable persist transition history",
|
|
46
|
+
"DisablePersistState": "Disable persist process state",
|
|
47
|
+
"DisablePersistParameters": "Disable persist process parameters"
|
|
48
|
+
},
|
|
49
|
+
"Implementation": "Implementation",
|
|
50
|
+
"PreExecutionImplementation": "PreExecution Implementation",
|
|
51
|
+
"ImpOrder": "Order",
|
|
52
|
+
"ExecutionTimeoutLabel": "Execution timeout",
|
|
53
|
+
"ExecutionTimeoutWarning": "Execution timeout works only with async actions. Check the cancellation token for proper timeout handling.",
|
|
54
|
+
"TimeoutsLabel": "Timeouts",
|
|
55
|
+
"TypeLabel": "Type",
|
|
56
|
+
"ActivityLabel": "Activity",
|
|
57
|
+
"StateLabel": "State",
|
|
58
|
+
"RetryCountLabel": "Retry count",
|
|
59
|
+
"SetActivityLabel": "SetActivity",
|
|
60
|
+
"SetStateLabel": "SetState",
|
|
61
|
+
"RetryLabel": "Retry",
|
|
62
|
+
"IgnoreLabel": "Ignore",
|
|
63
|
+
"AllExceptions": "*",
|
|
64
|
+
"IdleTimeoutLabel": "Idle timeout",
|
|
65
|
+
"ExceptionsHandling": "Exceptions handling",
|
|
66
|
+
"Exceptions": "Exceptions",
|
|
67
|
+
"ImpAction": "Action",
|
|
68
|
+
"ImpActionParameter": "Action parameter",
|
|
69
|
+
"Annotations": "Annotations",
|
|
70
|
+
"AnnotationName": "Name",
|
|
71
|
+
"AnnotationValue": "Value",
|
|
72
|
+
"Scheme": "Inline scheme",
|
|
73
|
+
"UserComment": "Comment"
|
|
74
|
+
},
|
|
75
|
+
"Decision": {
|
|
76
|
+
"Title": "Decision",
|
|
77
|
+
"TitleForInline": "Decision Inline",
|
|
78
|
+
"To": "To activity",
|
|
79
|
+
"WhenTrue": "When True",
|
|
80
|
+
"WhenFalse": "When False",
|
|
81
|
+
"Transition": "Transitions to activities",
|
|
82
|
+
"Name": "Name",
|
|
83
|
+
"State": "State",
|
|
84
|
+
"IsInitial": "Initial",
|
|
85
|
+
"IsFinal": "Final",
|
|
86
|
+
"IsForSetState": "For set state",
|
|
87
|
+
"IsAutoSchemeUpdate": "Auto scheme update",
|
|
88
|
+
"Implementation": "Implementation",
|
|
89
|
+
"PreExecutionImplementation": "PreExecution Implementation",
|
|
90
|
+
"Annotations": "Annotations",
|
|
91
|
+
"Scheme": "Inline scheme",
|
|
92
|
+
"Condition": "Condition",
|
|
93
|
+
"ConditionType": "Type",
|
|
94
|
+
"ConditionAction": "Action",
|
|
95
|
+
"ResultOnPreExecution": "PreExec. Result",
|
|
96
|
+
"ConditionActionParameter": "Action parameter",
|
|
97
|
+
"ConditionInversion": "Invert result",
|
|
98
|
+
"ActionLabel": "Action",
|
|
99
|
+
"ExpressionLabel": "Expression",
|
|
100
|
+
"UserComment": "Comment"
|
|
101
|
+
},
|
|
102
|
+
"DecisionTable": {
|
|
103
|
+
"Title": "Decision table",
|
|
104
|
+
"TitleForInline": "Decision table Inline",
|
|
105
|
+
"To": "To activity",
|
|
106
|
+
"Transition": "Transitions to activities",
|
|
107
|
+
"Parameters": "Parameters",
|
|
108
|
+
"Name": "Name",
|
|
109
|
+
"State": "State",
|
|
110
|
+
"IsInitial": "Initial",
|
|
111
|
+
"IsFinal": "Final",
|
|
112
|
+
"IsForSetState": "For set state",
|
|
113
|
+
"IsAutoSchemeUpdate": "Auto scheme update",
|
|
114
|
+
"Implementation": "Implementation",
|
|
115
|
+
"PreExecutionImplementation": "PreExecution Implementation",
|
|
116
|
+
"Annotations": "Annotations",
|
|
117
|
+
"Scheme": "Inline scheme",
|
|
118
|
+
"ConditionType": "Type",
|
|
119
|
+
"Condition": "Condition",
|
|
120
|
+
"ConditionAction": "Action",
|
|
121
|
+
"ResultOnPreExecution": "PreExec. Result",
|
|
122
|
+
"ConditionActionParameter": "Action parameter",
|
|
123
|
+
"ConditionInversion": "Invert result",
|
|
124
|
+
"ActionLabel": "Action",
|
|
125
|
+
"ExpressionLabel": "Expression",
|
|
126
|
+
"UserComment": "Comment"
|
|
127
|
+
},
|
|
128
|
+
"TransitionFormLabel": {
|
|
129
|
+
"Title": "Transition",
|
|
130
|
+
"Name": "Name",
|
|
131
|
+
"From": "From activity",
|
|
132
|
+
"To": "To activity",
|
|
133
|
+
"Classifier": "Classifier",
|
|
134
|
+
"ClassifierValues": [
|
|
135
|
+
"NotSpecified",
|
|
136
|
+
"Direct",
|
|
137
|
+
"Reverse"
|
|
138
|
+
],
|
|
139
|
+
"Restrictions": "Restrictions",
|
|
140
|
+
"RestrictionsType": "Type",
|
|
141
|
+
"RestrictionsActor": "Actor",
|
|
142
|
+
"Condition": "Condition",
|
|
143
|
+
"ConditionType": "Type",
|
|
144
|
+
"ConditionAction": "Action",
|
|
145
|
+
"ResultOnPreExecution": "PreExec. Result",
|
|
146
|
+
"Trigger": "Trigger",
|
|
147
|
+
"TriggerType": "Type",
|
|
148
|
+
"TriggerAuto": "Auto",
|
|
149
|
+
"TriggerCommand": "Command",
|
|
150
|
+
"TriggerTimer": "Timer",
|
|
151
|
+
"ConditionActionParameter": "Action parameter",
|
|
152
|
+
"ConditionExpression": "Expression",
|
|
153
|
+
"ConditionInversion": "Invert result",
|
|
154
|
+
"ConditionsConcatenationType": "Conditions concatenation type",
|
|
155
|
+
"AllowConcatenationType": "Concat allow as",
|
|
156
|
+
"RestrictConcatenationType": "Concat restrict as",
|
|
157
|
+
"IsFork": "Is fork (Parallel process)",
|
|
158
|
+
"MergeViaSetState": "Merge subprocess via set state",
|
|
159
|
+
"DisableParentStateControl": "Disable parent process control",
|
|
160
|
+
"ShowConcatParameters": "Show concatenation",
|
|
161
|
+
"HideConcatParameters": "Hide concatenation",
|
|
162
|
+
"Annotations": "Annotations",
|
|
163
|
+
"AnnotationName": "Name",
|
|
164
|
+
"AnnotationValue": "Value",
|
|
165
|
+
"InlinedFinalActivityName": "Inlined Final Activity Name",
|
|
166
|
+
"Allow": "Allow",
|
|
167
|
+
"Restrict": "Restrict",
|
|
168
|
+
"ConditionsListShouldNotBeEmpty": "Conditions list should not be empty",
|
|
169
|
+
"AlwaysConditionShouldBeSingle": "Always condition should be single",
|
|
170
|
+
"OtherwiseConditionShouldBeSingle": "Otherwise condition should be single",
|
|
171
|
+
"ConditionalLabel": "Conditional",
|
|
172
|
+
"AlwaysLabel": "Always",
|
|
173
|
+
"ActionLabel": "Action",
|
|
174
|
+
"ExpressionLabel": "Expression",
|
|
175
|
+
"OtherwiseLabel": "Otherwise",
|
|
176
|
+
"UserComment": "Comment",
|
|
177
|
+
"Subprocess": "Subprocess",
|
|
178
|
+
"SubprocessNone": "None",
|
|
179
|
+
"SubprocessStart": "Start",
|
|
180
|
+
"SubprocessFinalize": "Finalize",
|
|
181
|
+
"SubprocessAuto": "Auto",
|
|
182
|
+
"SubprocessStartSettings": "Subprocess start settings",
|
|
183
|
+
"SubprocessFinalizeSettings": "Subprocess finalize settings",
|
|
184
|
+
"SubprocessName": "Subprocess name",
|
|
185
|
+
"SubprocessId": "Subprocess id",
|
|
186
|
+
"SubprocessIdPlaceholder": "Autogenerated GUID",
|
|
187
|
+
"SubprocessNamePlaceholder": "Same as transition name",
|
|
188
|
+
"SubprocessStartupType": "Subprocess startup type",
|
|
189
|
+
"SubprocessStartupTypeSameThread": "Same thread",
|
|
190
|
+
"SubprocessStartupTypeAnotherThread": "Another thread",
|
|
191
|
+
"SubprocessStartupTypeTimerQueue": "Timer queue",
|
|
192
|
+
"SubprocessStartupParameterCopyStrategy": "Parameters copy strategy",
|
|
193
|
+
"SubprocessStartupParameterCopyStrategyCopyAll": "Copy all",
|
|
194
|
+
"SubprocessStartupParameterCopyStrategyIgnoreAll": "Ignore all",
|
|
195
|
+
"SubprocessStartupParameterCopyStrategyCopySpecified": "Copy specified",
|
|
196
|
+
"SubprocessStartupParameterCopyStrategyIgnoreSpecified": "Ignore specified",
|
|
197
|
+
"SubprocessSpecifiedParameters": "Specified parameters",
|
|
198
|
+
"SubprocessFinalizeParameterMergeStrategy": "Parameters merge strategy",
|
|
199
|
+
"SubprocessFinalizeParameterMergeStrategyOverwriteAllNulls": "Overwrite all nulls",
|
|
200
|
+
"SubprocessFinalizeParameterMergeStrategyOverwriteAll": "Overwrite all",
|
|
201
|
+
"SubprocessFinalizeParameterMergeStrategyOverwriteSpecified": "Overwrite specified",
|
|
202
|
+
"SubprocessFinalizeParameterMergeStrategyDontOverwriteSpecified": "Don't overwrite specified"
|
|
203
|
+
},
|
|
204
|
+
"LocalizationFormLabel": {
|
|
205
|
+
"Title": "Localization",
|
|
206
|
+
"ObjectName": "ObjectName",
|
|
207
|
+
"Type": "Type",
|
|
208
|
+
"IsDefault": "IsDefault",
|
|
209
|
+
"Culture": "Culture",
|
|
210
|
+
"Value": "Value",
|
|
211
|
+
"Types": [
|
|
212
|
+
"Command",
|
|
213
|
+
"State",
|
|
214
|
+
"Parameter",
|
|
215
|
+
"Action",
|
|
216
|
+
"Condition"
|
|
217
|
+
],
|
|
218
|
+
"ShowPredefined": "Show predefined"
|
|
219
|
+
},
|
|
220
|
+
"TimerFormLabel": {
|
|
221
|
+
"Title": "Timers",
|
|
222
|
+
"Name": "Name",
|
|
223
|
+
"Type": "Type",
|
|
224
|
+
"Value": "Value",
|
|
225
|
+
"Types": [
|
|
226
|
+
"Command",
|
|
227
|
+
"State",
|
|
228
|
+
"Parameter"
|
|
229
|
+
],
|
|
230
|
+
"OverrideHint": "Override timer if exists",
|
|
231
|
+
"Override": "Override"
|
|
232
|
+
},
|
|
233
|
+
"AssignmentFormLabel": {
|
|
234
|
+
"Title": "Assignments",
|
|
235
|
+
"Code": "Code",
|
|
236
|
+
"Name": "Name",
|
|
237
|
+
"Executor": "Executor",
|
|
238
|
+
"ExecutorId": "Executor Id",
|
|
239
|
+
"Status": "Status",
|
|
240
|
+
"DateCreation": "Date creation",
|
|
241
|
+
"Description": "Description",
|
|
242
|
+
"DateStart": "Date start",
|
|
243
|
+
"DateFinish": "Date finish",
|
|
244
|
+
"DeadlineToStart": "Deadline to start",
|
|
245
|
+
"DeadlineToFinish": "Deadline to finish",
|
|
246
|
+
"Observers": "Observers",
|
|
247
|
+
"ObserverId": "Observer Id",
|
|
248
|
+
"Tags": "Tags",
|
|
249
|
+
"ProhibitedForExecution": "Prohibited for execution",
|
|
250
|
+
"AssignmentDeleted": "Assignment deleted",
|
|
251
|
+
"TypeSomething": "Type something"
|
|
252
|
+
},
|
|
253
|
+
"ParameterFormLabel": {
|
|
254
|
+
"Title": "Parameters",
|
|
255
|
+
"Name": "Name",
|
|
256
|
+
"Type": "Type",
|
|
257
|
+
"Purpose": "Purpose",
|
|
258
|
+
"Value": "Value",
|
|
259
|
+
"InitialValue": "InitialValue",
|
|
260
|
+
"ShowSystemParameters": "Show system parameters"
|
|
261
|
+
},
|
|
262
|
+
"ActorFormLabel": {
|
|
263
|
+
"Title": "Actors",
|
|
264
|
+
"Name": "Name",
|
|
265
|
+
"Rule": "Rule",
|
|
266
|
+
"Value": "Value",
|
|
267
|
+
"ShowPredefinedActors": "Show predefined actors"
|
|
268
|
+
},
|
|
269
|
+
"CommandFormLabel": {
|
|
270
|
+
"Title": "Command",
|
|
271
|
+
"Name": "Name"
|
|
272
|
+
},
|
|
273
|
+
"CommandParametersFormLabel": {
|
|
274
|
+
"Title": "command parameters",
|
|
275
|
+
"InputParametersName": "Name",
|
|
276
|
+
"InputParametersIsRequired": "Required",
|
|
277
|
+
"InputParametersParameter": "Parameter",
|
|
278
|
+
"InputParametersDefaultValue": "Default"
|
|
279
|
+
},
|
|
280
|
+
"ProcessInfoFormLabel": {
|
|
281
|
+
"Title": "Process Info",
|
|
282
|
+
"IsObsolete": "IsObsolete",
|
|
283
|
+
"DefiningParameters": "Defining parameters",
|
|
284
|
+
"ProcessParameters": "Process parameters",
|
|
285
|
+
"SystemParametersTabName": "System Parameters",
|
|
286
|
+
"ProcessParametersTabName": "Process Parameters",
|
|
287
|
+
"HistoryTabName": "History",
|
|
288
|
+
"TimersTabName": "Timers",
|
|
289
|
+
"TagsTabName": "Tags",
|
|
290
|
+
"TagsInputPlaceholder": "Start entering a name to add a tag",
|
|
291
|
+
"HistoryTabFromLabel": "From",
|
|
292
|
+
"HistoryTabFromStateLabel": "From State",
|
|
293
|
+
"HistoryTabToLabel": "To",
|
|
294
|
+
"HistoryTabToStateLabel": "To State",
|
|
295
|
+
"HistoryTabExecutorIdLabel": "Executor Id",
|
|
296
|
+
"HistoryTabActorIdLabel": "Actor Id",
|
|
297
|
+
"HistoryTabExecutorLabel": "Executor",
|
|
298
|
+
"HistoryTabActorLabel": "Actor",
|
|
299
|
+
"HistoryTabTimeLabel": "Time",
|
|
300
|
+
"HistoryTabStartTimeLabel": "Start Time",
|
|
301
|
+
"HistoryTabDurationLabel": "Duration (ms)",
|
|
302
|
+
"HistoryTabTriggerNameLabel": "Trigger Name",
|
|
303
|
+
"HistoryTabTransitionClassifierNameLabel": "Classifier",
|
|
304
|
+
"ParametersNameLabel": "Name",
|
|
305
|
+
"ParametersValueLabel": "Value",
|
|
306
|
+
"TimersTabNameLabel": "Name",
|
|
307
|
+
"TimersTabValueLabel": "Value",
|
|
308
|
+
"RootProcess": "Root Process",
|
|
309
|
+
"TagsLabel": "Tags",
|
|
310
|
+
"GeneralTabLabel": "General",
|
|
311
|
+
"ProcessIdLabel": "Process Id"
|
|
312
|
+
},
|
|
313
|
+
"DropdownValues": {
|
|
314
|
+
"Name": "Name",
|
|
315
|
+
"Value": "Value",
|
|
316
|
+
"Dropdown": "Dropdown",
|
|
317
|
+
"Values": "values"
|
|
318
|
+
},
|
|
319
|
+
"CodeActionsFormLabel": {
|
|
320
|
+
"Title": "Code actions",
|
|
321
|
+
"Name": "Name",
|
|
322
|
+
"ActionCode": "Action code",
|
|
323
|
+
"CommonUsings": "Common Usings",
|
|
324
|
+
"IsGlobal": "Is global",
|
|
325
|
+
"IsAsync": "Async",
|
|
326
|
+
"Type": "Type",
|
|
327
|
+
"GlobalDeleteMessage": "If you've delete the Global CodeAction - <br/><b>other schemes won't be able to call it!</b>",
|
|
328
|
+
"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.",
|
|
329
|
+
"EditParameters": "Edit parameters",
|
|
330
|
+
"Parameters": "Parameters",
|
|
331
|
+
"Text": "Text",
|
|
332
|
+
"TextArea": "TextArea",
|
|
333
|
+
"Number": "Number",
|
|
334
|
+
"Checkbox": "Checkbox",
|
|
335
|
+
"Dropdown": "Dropdown",
|
|
336
|
+
"MultiSelect": "MultiSelect",
|
|
337
|
+
"DateTime": "Date and time",
|
|
338
|
+
"Date": "Date",
|
|
339
|
+
"Time": "Time",
|
|
340
|
+
"Values": "Values",
|
|
341
|
+
"DropdownName": "Name",
|
|
342
|
+
"DropdownValue": "Value",
|
|
343
|
+
"DropdownShouldContainValues": "Dropdown should contain values",
|
|
344
|
+
"IsRequired": "Required",
|
|
345
|
+
"DefaultValue": "Default value",
|
|
346
|
+
"Json": "Json",
|
|
347
|
+
"TitleField": "Title"
|
|
348
|
+
},
|
|
349
|
+
"EditParametersFormlabel": {
|
|
350
|
+
"Title": "Edit parameter values",
|
|
351
|
+
"NumberRequired": "Should be a numeric value",
|
|
352
|
+
"DateShouldBeInISOFormat": "Date/Time parameter should be in ISO8601 format",
|
|
353
|
+
"SwitchToJson": "Switch to JSON editor",
|
|
354
|
+
"SwitchToConstructor": "Switch to parameter values editor",
|
|
355
|
+
"InvalidJson": "JSON object is invalid or does not match the model",
|
|
356
|
+
"CustomForms": {
|
|
357
|
+
"HTTPRequest": {
|
|
358
|
+
"Name": "Name",
|
|
359
|
+
"State": "State",
|
|
360
|
+
"UseAuth": "Use authentication",
|
|
361
|
+
"Heading": "Request",
|
|
362
|
+
"Url": "Url",
|
|
363
|
+
"Post": "Post",
|
|
364
|
+
"StoreResponse": "Store response",
|
|
365
|
+
"Username": "Username",
|
|
366
|
+
"Password": "Password",
|
|
367
|
+
"ParameterName": "Parameter name",
|
|
368
|
+
"ParameterPurpose": "Parameter purpose",
|
|
369
|
+
"ContentType": "Content type",
|
|
370
|
+
"AddProcessInstanceParameters": "Add process instance parameters",
|
|
371
|
+
"Parameters": "Parameters",
|
|
372
|
+
"Headers": "Headers"
|
|
373
|
+
},
|
|
374
|
+
"SendEmail": {
|
|
375
|
+
"Name": "Name",
|
|
376
|
+
"State": "State",
|
|
377
|
+
"Heading": "Form",
|
|
378
|
+
"UseAuth": "Use authentication",
|
|
379
|
+
"MailServer": "Mail server",
|
|
380
|
+
"MailServerPort": "Mail server port",
|
|
381
|
+
"MailServerFrom": "Mail server from",
|
|
382
|
+
"To": "To",
|
|
383
|
+
"CcList": "CC address list",
|
|
384
|
+
"BccList": "BCC address list",
|
|
385
|
+
"ReplyToList": "Reply to address list",
|
|
386
|
+
"Subject": "Subject",
|
|
387
|
+
"MailServerSsl": "MailServerSsl",
|
|
388
|
+
"IsHTML": "IsHTML",
|
|
389
|
+
"MailServerLogin": "Mail server login",
|
|
390
|
+
"MailServerPass": "Mail server pass",
|
|
391
|
+
"Body": "Body"
|
|
392
|
+
},
|
|
393
|
+
"StartLoopFor": {
|
|
394
|
+
"Name": "Name",
|
|
395
|
+
"State": "State",
|
|
396
|
+
"Heading": "Loop",
|
|
397
|
+
"DateRange": "Date range",
|
|
398
|
+
"RangeSeparator": "To",
|
|
399
|
+
"StartDate": "Start date",
|
|
400
|
+
"EndDate": "End date",
|
|
401
|
+
"Reverse": "Reverse",
|
|
402
|
+
"LoopName": "Loop name",
|
|
403
|
+
"LoopStateParameterName": "Loop state parameter name",
|
|
404
|
+
"LoopCounterValueParameterName": "Loop counter value parameter name",
|
|
405
|
+
"CounterType": "Counter type",
|
|
406
|
+
"StartValue": "Start value",
|
|
407
|
+
"EndValue": "End value",
|
|
408
|
+
"Step": "Step",
|
|
409
|
+
"StepType": "Step type",
|
|
410
|
+
"IncludeLastValue": "Include last value"
|
|
411
|
+
},
|
|
412
|
+
"StartLoopForeach": {
|
|
413
|
+
"Name": "Name",
|
|
414
|
+
"State": "State",
|
|
415
|
+
"Heading": "Loop",
|
|
416
|
+
"ValuesError": "None value cannot be empty!",
|
|
417
|
+
"Values": "Values",
|
|
418
|
+
"LoopName": "Loop name",
|
|
419
|
+
"LoopStateParameterName": "Loop state parameter name",
|
|
420
|
+
"LoopCounterValueParameterName": "Loop counter value parameter name",
|
|
421
|
+
"Reverse": "Reverse"
|
|
422
|
+
},
|
|
423
|
+
"CreateProcess": {
|
|
424
|
+
"Name": "Name",
|
|
425
|
+
"State": "State",
|
|
426
|
+
"Heading": "Main settings",
|
|
427
|
+
"ParameterName": "Name",
|
|
428
|
+
"ParameterPurpose": "Purpose",
|
|
429
|
+
"ParameterValue": "Value",
|
|
430
|
+
"Scheme": "Scheme",
|
|
431
|
+
"ProcessId": "Process id",
|
|
432
|
+
"ProcessCreationParameters": "Process creation parameters"
|
|
433
|
+
},
|
|
434
|
+
"AssignmentCreate": {
|
|
435
|
+
"Name": "Name",
|
|
436
|
+
"State": "State",
|
|
437
|
+
"Heading": "Assignment",
|
|
438
|
+
"Code": "Code",
|
|
439
|
+
"NewTag": "New Tag",
|
|
440
|
+
"Executors": "Executors",
|
|
441
|
+
"IsActive": "Is active",
|
|
442
|
+
"Description": "Description",
|
|
443
|
+
"DeadlineToStart": "Deadline to start",
|
|
444
|
+
"DeadlineToComplete": "Deadline to complete",
|
|
445
|
+
"Observers": "Observers",
|
|
446
|
+
"Tags": "Tags"
|
|
447
|
+
},
|
|
448
|
+
"AssignmentChange": {
|
|
449
|
+
"Name": "Name",
|
|
450
|
+
"State": "State",
|
|
451
|
+
"Heading": "Assignment",
|
|
452
|
+
"Code": "Code",
|
|
453
|
+
"ReplacementExecutors": "Replacement of executors",
|
|
454
|
+
"OldExecutor": "Old executor",
|
|
455
|
+
"NewExecutor": "New executor",
|
|
456
|
+
"AllExecutors": "All",
|
|
457
|
+
"Change": "Change",
|
|
458
|
+
"Status": "Status",
|
|
459
|
+
"DeadlineToStart": "Deadline to start",
|
|
460
|
+
"DeadlineToComplete": "Deadline to complete",
|
|
461
|
+
"Tags": "Tags",
|
|
462
|
+
"Observers": "Observers",
|
|
463
|
+
"NewTag": "New Tag",
|
|
464
|
+
"StatusState": "Status state",
|
|
465
|
+
"IsActive": "Is active"
|
|
466
|
+
},
|
|
467
|
+
"AssignmentsHaveStatus": {
|
|
468
|
+
"Name": "Name",
|
|
469
|
+
"State": "State",
|
|
470
|
+
"Code": "Code",
|
|
471
|
+
"Condition": "Condition",
|
|
472
|
+
"IncludeInactive": "Include inactive",
|
|
473
|
+
"StatusState": "Status state",
|
|
474
|
+
"Assignments": "Assignments"
|
|
475
|
+
},
|
|
476
|
+
"SetLoopState": {
|
|
477
|
+
"Name": "Name",
|
|
478
|
+
"State": "State",
|
|
479
|
+
"LoopName": "Loop name",
|
|
480
|
+
"LoopState": "Loop state"
|
|
481
|
+
}
|
|
482
|
+
},
|
|
483
|
+
"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."
|
|
484
|
+
},
|
|
485
|
+
"ElementToolbar": {
|
|
486
|
+
"ShowProperties": "Show properties",
|
|
487
|
+
"Clone": "Clone",
|
|
488
|
+
"Color": "Color",
|
|
489
|
+
"Delete": "Delete"
|
|
490
|
+
},
|
|
491
|
+
"ActivityToolbar": {
|
|
492
|
+
"CreateActivity": "Create activity",
|
|
493
|
+
"CreateTransition": "Create transition",
|
|
494
|
+
"CreateTransitionAndActivity": "Create transition and activity"
|
|
495
|
+
},
|
|
496
|
+
"ToolbarLabel": {
|
|
497
|
+
"CopySelected": "Copy selected",
|
|
498
|
+
"Undo": "Undo",
|
|
499
|
+
"Redo": "Redo",
|
|
500
|
+
"Move": "Move",
|
|
501
|
+
"Menu": "Menu",
|
|
502
|
+
"FitToScreen": "Fit to screen",
|
|
503
|
+
"Upload": "Upload",
|
|
504
|
+
"UploadXML": "Upload XML",
|
|
505
|
+
"UploadBPMN": "Upload BPMN",
|
|
506
|
+
"Download": "Download",
|
|
507
|
+
"DownloadXML": "Download as XML",
|
|
508
|
+
"DownloadBPMN": "Download as BPMN",
|
|
509
|
+
"FullScreen": "Full Screen",
|
|
510
|
+
"ResetZoom": "Reset zoom",
|
|
511
|
+
"Refresh": "Refresh",
|
|
512
|
+
"View": "View",
|
|
513
|
+
"Scheme": "Scheme",
|
|
514
|
+
"AutoArrangement": "Auto arrangement",
|
|
515
|
+
"Actors": "Actors",
|
|
516
|
+
"Commands": "Commands",
|
|
517
|
+
"Parameters": "Parameters",
|
|
518
|
+
"Assignments": "Assignments",
|
|
519
|
+
"Localization": "Localization",
|
|
520
|
+
"Timers": "Timers",
|
|
521
|
+
"AdditionalParameters": "Additional Parameters",
|
|
522
|
+
"CodeActions": "Code actions",
|
|
523
|
+
"Info": "Extended info",
|
|
524
|
+
"Delete": "Delete",
|
|
525
|
+
"Settings": "Settings",
|
|
526
|
+
"CreateTransition": "Create a transition",
|
|
527
|
+
"CreateActivityTransition": "Create an activity and a transition",
|
|
528
|
+
"Legend": "Legend",
|
|
529
|
+
"ProcessInfo": "Process Info",
|
|
530
|
+
"Inline": "The scheme can be inlined",
|
|
531
|
+
"Elements": "Elements",
|
|
532
|
+
"Library": "Library",
|
|
533
|
+
"Language": "Language",
|
|
534
|
+
"File": "File",
|
|
535
|
+
"ResetSettings": "Reset settings",
|
|
536
|
+
"Clear": "Clear",
|
|
537
|
+
"ActivitiesCount": "Activities count / Limit",
|
|
538
|
+
"TransitionsCount": "Transitions count / Limit",
|
|
539
|
+
"CommandsCount": "Commands count / Limit",
|
|
540
|
+
"CreateActivity": "Create activity",
|
|
541
|
+
"CreateInline": "Create inline (template)",
|
|
542
|
+
"ZoomIn": "Zoom In",
|
|
543
|
+
"ZoomOut": "Zoom Out",
|
|
544
|
+
"ZoomTo100": "Set zoom to 100%",
|
|
545
|
+
"Clone": "Clone",
|
|
546
|
+
"ZoomPositionDefault": "Zoom default"
|
|
547
|
+
},
|
|
548
|
+
"LibraryLabel": {
|
|
549
|
+
"PluginRequired": "Plugin required:"
|
|
550
|
+
},
|
|
551
|
+
"Logs": {
|
|
552
|
+
"Label": "Logs",
|
|
553
|
+
"ParamName": "LogEnabled",
|
|
554
|
+
"Description": "This parameter is the default value for logging processes based on this scheme",
|
|
555
|
+
"Refresh": "Refresh",
|
|
556
|
+
"AutoRefresh": "Auto refresh",
|
|
557
|
+
"Empty": "Empty",
|
|
558
|
+
"Timestamp": "Timestamp",
|
|
559
|
+
"Message": "Message",
|
|
560
|
+
"Exception": "Exception",
|
|
561
|
+
"Show": "Show",
|
|
562
|
+
"ExceptionInfo": "Exception info",
|
|
563
|
+
"HideDetails": "Hide details",
|
|
564
|
+
"ShowDetails": "Show details"
|
|
565
|
+
},
|
|
566
|
+
"ErrorActivityIsInitialCountText": "One element must be marked flag Initial",
|
|
567
|
+
"ErrorActivityIsFinalCountText": "This scheme is Inlined. One or more elements must be marked flag Final",
|
|
568
|
+
"ErrorReadOnlySaveText": "The Designer in ReadOnly mode, you can't save it.",
|
|
569
|
+
"ErrorInvalidObjectsSaveText": "Can't save the schema. Those objects are in invalid state",
|
|
570
|
+
"BrokenReferencesDialogText": "This schema contains references to ELEMENTS that aren't defined by this schema or current action providers. Do you want to keep them?",
|
|
571
|
+
"EditCodeLabel": {
|
|
572
|
+
"Title": "Edit code",
|
|
573
|
+
"EditCodeButton": "Edit code",
|
|
574
|
+
"Usings": "Usings",
|
|
575
|
+
"Compile": "Compile",
|
|
576
|
+
"CompileSucceeded": "Compilation succeeded.",
|
|
577
|
+
"Success": "Success",
|
|
578
|
+
"Error": "Error",
|
|
579
|
+
"OK": "OK",
|
|
580
|
+
"ShowUsings": "Show usings",
|
|
581
|
+
"HideUsings": "Hide usings"
|
|
582
|
+
},
|
|
583
|
+
"EditJSONLabel": {
|
|
584
|
+
"Title": "Edit value in JSON",
|
|
585
|
+
"CreateEmptyType": "Create",
|
|
586
|
+
"Format": "Format"
|
|
587
|
+
},
|
|
588
|
+
"EditExpressionLabel": {
|
|
589
|
+
"Title": "Edit expression",
|
|
590
|
+
"Validate": "Validate",
|
|
591
|
+
"Succeeded": "Expression is valid.",
|
|
592
|
+
"Success": "Success",
|
|
593
|
+
"Error": "Error",
|
|
594
|
+
"OK": "OK"
|
|
595
|
+
},
|
|
596
|
+
"Elements": {
|
|
597
|
+
"Activities": "Activities",
|
|
598
|
+
"Templates": "Templates",
|
|
599
|
+
"BasicActivity": "Basic Activity",
|
|
600
|
+
"BasicActivityDesc": "It determines a state and the order, in which Actions are executed in your process.",
|
|
601
|
+
"InlineHeader": "Inline",
|
|
602
|
+
"InitialActivity": "Initial Activity",
|
|
603
|
+
"PluginRequired": "Plugin required:",
|
|
604
|
+
"InitialActivityDesc": "It a initial state.",
|
|
605
|
+
"FinalActivity": "Final Activity",
|
|
606
|
+
"FinalActivityDesc": "It a final state.",
|
|
607
|
+
"SetLoopState": {
|
|
608
|
+
"Title": "Set loop state",
|
|
609
|
+
"Description": "The action for set loop state"
|
|
610
|
+
},
|
|
611
|
+
"Header": "Elements"
|
|
612
|
+
},
|
|
613
|
+
"ErrorInBrowserConsole": "See more info in the browser console."
|
|
614
|
+
}
|