@nocobase/plugin-workflow 0.8.0-alpha.8 → 0.8.1-alpha.3
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/lib/client/AddButton.js +21 -13
- package/lib/client/ExecutionCanvas.js +10 -24
- package/lib/client/ExecutionResourceProvider.d.ts +2 -1
- package/lib/client/ExecutionResourceProvider.js +4 -3
- package/lib/client/FlowContext.js +1 -1
- package/lib/client/WorkflowCanvas.js +136 -39
- package/lib/client/WorkflowProvider.d.ts +3 -0
- package/lib/client/WorkflowProvider.js +71 -16
- package/lib/client/WorkflowShortcut.d.ts +0 -1
- package/lib/client/WorkflowShortcut.js +4 -47
- package/lib/client/calculators.d.ts +27 -37
- package/lib/client/calculators.js +168 -150
- package/lib/client/components/CollectionFieldset.js +10 -20
- package/lib/client/components/Duration.js +3 -14
- package/lib/client/components/EjsTextArea.d.ts +2 -0
- package/lib/client/components/EjsTextArea.js +232 -0
- package/lib/client/components/OpenDrawer.d.ts +6 -0
- package/lib/client/components/OpenDrawer.js +93 -0
- package/lib/client/constants.js +11 -9
- package/lib/client/index.d.ts +1 -0
- package/lib/client/index.js +14 -0
- package/lib/client/locale/en-US.d.ts +105 -0
- package/lib/client/locale/en-US.js +111 -0
- package/lib/client/locale/index.d.ts +3 -0
- package/lib/client/locale/index.js +69 -0
- package/lib/client/locale/ja-JP.d.ts +88 -0
- package/lib/client/locale/ja-JP.js +94 -0
- package/lib/client/locale/ru-RU.d.ts +88 -0
- package/lib/client/locale/ru-RU.js +94 -0
- package/lib/client/locale/tr-TR.d.ts +88 -0
- package/lib/client/locale/tr-TR.js +94 -0
- package/lib/client/locale/zh-CN.d.ts +130 -0
- package/lib/client/locale/zh-CN.js +136 -0
- package/lib/client/nodes/calculation.d.ts +0 -1
- package/lib/client/nodes/calculation.js +9 -17
- package/lib/client/nodes/condition.js +16 -22
- package/lib/client/nodes/create.d.ts +3 -1
- package/lib/client/nodes/create.js +11 -11
- package/lib/client/nodes/delay.js +8 -6
- package/lib/client/nodes/index.js +46 -14
- package/lib/client/nodes/parallel.d.ts +0 -1
- package/lib/client/nodes/parallel.js +11 -32
- package/lib/client/nodes/query.js +9 -17
- package/lib/client/nodes/request.d.ts +138 -0
- package/lib/client/nodes/request.js +167 -0
- package/lib/client/nodes/update.js +4 -2
- package/lib/client/schemas/collection.js +3 -1
- package/lib/client/schemas/executions.d.ts +211 -207
- package/lib/client/schemas/executions.js +102 -96
- package/lib/client/schemas/workflows.js +112 -22
- package/lib/client/style.js +7 -7
- package/lib/client/triggers/collection.d.ts +2 -1
- package/lib/client/triggers/collection.js +49 -34
- package/lib/client/triggers/index.d.ts +4 -6
- package/lib/client/triggers/index.js +57 -51
- package/lib/client/triggers/schedule/EndsByField.js +13 -39
- package/lib/client/triggers/schedule/OnField.js +10 -5
- package/lib/client/triggers/schedule/RepeatField.js +6 -14
- package/lib/client/triggers/schedule/ScheduleConfig.js +25 -20
- package/lib/client/triggers/schedule/constants.d.ts +4 -0
- package/lib/client/triggers/schedule/constants.js +11 -0
- package/lib/client/triggers/schedule/index.d.ts +2 -3
- package/lib/client/triggers/schedule/index.js +55 -40
- package/lib/server/Plugin.d.ts +15 -5
- package/lib/server/Plugin.js +176 -61
- package/lib/server/Processor.d.ts +1 -2
- package/lib/server/Processor.js +3 -19
- package/lib/server/actions/jobs.js +2 -3
- package/lib/server/actions/workflows.js +13 -5
- package/lib/server/calculators/index.d.ts +4 -2
- package/lib/server/calculators/index.js +6 -4
- package/lib/server/collections/executions.js +2 -1
- package/lib/server/constants.d.ts +1 -0
- package/lib/server/constants.js +1 -0
- package/lib/server/extensions/assignees/actions.js +2 -3
- package/lib/server/extensions/assignees/collections/users_jobs.js +9 -1
- package/lib/server/index.d.ts +3 -4
- package/lib/server/index.js +21 -44
- package/lib/server/instructions/condition.js +1 -1
- package/lib/server/instructions/create.js +3 -1
- package/lib/server/instructions/delay.js +2 -3
- package/lib/server/instructions/destroy.js +3 -1
- package/lib/server/instructions/index.d.ts +3 -2
- package/lib/server/instructions/index.js +1 -1
- package/lib/server/instructions/prompt.js +2 -1
- package/lib/server/instructions/query.js +3 -1
- package/lib/server/instructions/request.d.ts +14 -0
- package/lib/server/instructions/request.js +154 -0
- package/lib/server/instructions/update.d.ts +1 -1
- package/lib/server/instructions/update.js +3 -1
- package/lib/server/migrations/20221129153547-calculation-variables.d.ts +5 -0
- package/lib/server/migrations/20221129153547-calculation-variables.js +116 -0
- package/lib/server/triggers/collection.js +5 -7
- package/lib/server/triggers/schedule.js +17 -6
- package/package.json +13 -8
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.NAMESPACE = void 0;
|
|
7
|
+
exports.lang = lang;
|
|
8
|
+
exports.useWorkflowTranslation = useWorkflowTranslation;
|
|
9
|
+
|
|
10
|
+
function _reactI18next() {
|
|
11
|
+
const data = require("react-i18next");
|
|
12
|
+
|
|
13
|
+
_reactI18next = function _reactI18next() {
|
|
14
|
+
return data;
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
return data;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
function _client() {
|
|
21
|
+
const data = require("@nocobase/client");
|
|
22
|
+
|
|
23
|
+
_client = function _client() {
|
|
24
|
+
return data;
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
return data;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
var _zhCN = _interopRequireDefault(require("./zh-CN"));
|
|
31
|
+
|
|
32
|
+
var _enUS = _interopRequireDefault(require("./en-US"));
|
|
33
|
+
|
|
34
|
+
var _jaJP = _interopRequireDefault(require("./ja-JP"));
|
|
35
|
+
|
|
36
|
+
var _ruRU = _interopRequireDefault(require("./ru-RU"));
|
|
37
|
+
|
|
38
|
+
var _trTR = _interopRequireDefault(require("./tr-TR"));
|
|
39
|
+
|
|
40
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
41
|
+
|
|
42
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
43
|
+
|
|
44
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
45
|
+
|
|
46
|
+
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
47
|
+
|
|
48
|
+
const NAMESPACE = 'workflow';
|
|
49
|
+
exports.NAMESPACE = NAMESPACE;
|
|
50
|
+
|
|
51
|
+
_client().i18n.addResources('zh-CN', NAMESPACE, _zhCN.default);
|
|
52
|
+
|
|
53
|
+
_client().i18n.addResources('en-US', NAMESPACE, _enUS.default);
|
|
54
|
+
|
|
55
|
+
_client().i18n.addResources('ja-JP', NAMESPACE, _jaJP.default);
|
|
56
|
+
|
|
57
|
+
_client().i18n.addResources('ru-RU', NAMESPACE, _ruRU.default);
|
|
58
|
+
|
|
59
|
+
_client().i18n.addResources('tr-TR', NAMESPACE, _trTR.default);
|
|
60
|
+
|
|
61
|
+
function lang(key, options = {}) {
|
|
62
|
+
return _client().i18n.t(key, _objectSpread(_objectSpread({}, options), {}, {
|
|
63
|
+
ns: NAMESPACE
|
|
64
|
+
}));
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
function useWorkflowTranslation() {
|
|
68
|
+
return (0, _reactI18next().useTranslation)(NAMESPACE);
|
|
69
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
Workflow: string;
|
|
3
|
+
"Execution history": string;
|
|
4
|
+
"Trigger type": string;
|
|
5
|
+
Status: string;
|
|
6
|
+
On: string;
|
|
7
|
+
Off: string;
|
|
8
|
+
Version: string;
|
|
9
|
+
"Copy to new version": string;
|
|
10
|
+
"Load failed": string;
|
|
11
|
+
Trigger: string;
|
|
12
|
+
"Collection event": string;
|
|
13
|
+
"Trigger on": string;
|
|
14
|
+
"After record added": string;
|
|
15
|
+
"After record updated": string;
|
|
16
|
+
"After record added or updated": string;
|
|
17
|
+
"After record deleted": string;
|
|
18
|
+
"Changed fields": string;
|
|
19
|
+
"Triggered only if one of the selected fields changes. If unselected, it means that it will be triggered when any field changes. When record is added or deleted, any field is considered to have been changed.": string;
|
|
20
|
+
"Only triggers when match conditions": string;
|
|
21
|
+
"Schedule event": string;
|
|
22
|
+
"Trigger mode": string;
|
|
23
|
+
"Based on certain date": string;
|
|
24
|
+
"Based on date field of collection": string;
|
|
25
|
+
"Starts on": string;
|
|
26
|
+
"Ends on": string;
|
|
27
|
+
"Exactly at": string;
|
|
28
|
+
"Repeat mode": string;
|
|
29
|
+
"Repeat limit": string;
|
|
30
|
+
"No limit": string;
|
|
31
|
+
Seconds: string;
|
|
32
|
+
Minutes: string;
|
|
33
|
+
Hours: string;
|
|
34
|
+
Days: string;
|
|
35
|
+
Weeks: string;
|
|
36
|
+
Months: string;
|
|
37
|
+
"No repeat": string;
|
|
38
|
+
Every: string;
|
|
39
|
+
"By minute": string;
|
|
40
|
+
"By hour": string;
|
|
41
|
+
"By day": string;
|
|
42
|
+
"By week": string;
|
|
43
|
+
"By month": string;
|
|
44
|
+
"By field": string;
|
|
45
|
+
"By custom date": string;
|
|
46
|
+
Advanced: string;
|
|
47
|
+
End: string;
|
|
48
|
+
"Trigger variables": string;
|
|
49
|
+
"Node result": string;
|
|
50
|
+
Constant: string;
|
|
51
|
+
Boolean: string;
|
|
52
|
+
String: string;
|
|
53
|
+
"Arithmetic calculation": string;
|
|
54
|
+
"String operation": string;
|
|
55
|
+
"On going": string;
|
|
56
|
+
Succeeded: string;
|
|
57
|
+
Failed: string;
|
|
58
|
+
Canceled: string;
|
|
59
|
+
"This node contains branches, deleting will also be preformed to them, are you sure?": string;
|
|
60
|
+
Control: string;
|
|
61
|
+
"Collection operations": string;
|
|
62
|
+
"Node type": string;
|
|
63
|
+
Calculation: string;
|
|
64
|
+
"Configure calculation": string;
|
|
65
|
+
"Calculation result": string;
|
|
66
|
+
True: string;
|
|
67
|
+
False: string;
|
|
68
|
+
Condition: string;
|
|
69
|
+
Mode: string;
|
|
70
|
+
"Continue when \"Yes\"": string;
|
|
71
|
+
"Branch into \"Yes\" and \"No\"": string;
|
|
72
|
+
Conditions: string;
|
|
73
|
+
"Parallel branch": string;
|
|
74
|
+
"All succeeded": string;
|
|
75
|
+
"Any succeeded": string;
|
|
76
|
+
"Continue after all branches succeeded": string;
|
|
77
|
+
"Continue after any branch succeeded": string;
|
|
78
|
+
"Create record": string;
|
|
79
|
+
"Update record": string;
|
|
80
|
+
"Query record": string;
|
|
81
|
+
"Multiple records": string;
|
|
82
|
+
"Please select collection first": string;
|
|
83
|
+
"Only update records matching conditions": string;
|
|
84
|
+
"Fields that are not assigned a value will be set to the default value, and those that do not have a default value are set to null.": string;
|
|
85
|
+
"Trigger in executed workflow cannot be modified": string;
|
|
86
|
+
"Node in executed workflow cannot be modified": string;
|
|
87
|
+
};
|
|
88
|
+
export default _default;
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _default = {
|
|
8
|
+
"Workflow": "ワークフロー",
|
|
9
|
+
"Execution history": "実行履歴",
|
|
10
|
+
"Trigger type": "トリガータイプ",
|
|
11
|
+
"Status": "状態",
|
|
12
|
+
"On": "有効",
|
|
13
|
+
"Off": "無効",
|
|
14
|
+
"Version": "バージョン",
|
|
15
|
+
"Copy to new version": "新しいバージョンにコピー",
|
|
16
|
+
"Load failed": "読み込みに失敗しました",
|
|
17
|
+
"Trigger": "トリガー",
|
|
18
|
+
"Collection event": "コレクションイベント",
|
|
19
|
+
"Trigger on": "トリガータイミング",
|
|
20
|
+
"After record added": "レコードを追加した後",
|
|
21
|
+
"After record updated": "レコードを更新した後",
|
|
22
|
+
"After record added or updated": "レコードを追加もしくは更新した後",
|
|
23
|
+
"After record deleted": "レコードを削除した後",
|
|
24
|
+
"Changed fields": "フィールドが変更された時",
|
|
25
|
+
"Triggered only if one of the selected fields changes. If unselected, it means that it will be triggered when any field changes. When record is added or deleted, any field is considered to have been changed.": "選択したフィールドの 1 つが変更された場合にのみトリガーされます。 選択されていない場合は、フィールドが変更されたときにトリガーされることを意味します。 レコードが追加または削除されると、すべてのフィールドが変更されたと見なされます。",
|
|
26
|
+
"Only triggers when match conditions": "以下の条件を満たすと発動",
|
|
27
|
+
"Schedule event": "スケジュールイベント",
|
|
28
|
+
"Trigger mode": "トリガーモード",
|
|
29
|
+
"Based on certain date": "カスタム時間",
|
|
30
|
+
"Based on date field of collection": "コレクションのフィールド時間に基づく",
|
|
31
|
+
"Starts on": "開始",
|
|
32
|
+
"Ends on": "終了",
|
|
33
|
+
"Exactly at": "ちょうど",
|
|
34
|
+
"Repeat mode": "繰り返しパターン",
|
|
35
|
+
"Repeat limit": "繰り返し回数",
|
|
36
|
+
"No limit": "無制限",
|
|
37
|
+
"Seconds": "秒",
|
|
38
|
+
"Minutes": "分",
|
|
39
|
+
"Hours": "時",
|
|
40
|
+
"Days": "日",
|
|
41
|
+
"Weeks": "週",
|
|
42
|
+
"Months": "月",
|
|
43
|
+
"No repeat": "繰り返さない",
|
|
44
|
+
"Every": "毎",
|
|
45
|
+
"By minute": "分ごと",
|
|
46
|
+
"By hour": "時間ごと",
|
|
47
|
+
"By day": "日ごと",
|
|
48
|
+
"By week": "週ごと",
|
|
49
|
+
"By month": "月ごと",
|
|
50
|
+
"By field": "フィールドごと",
|
|
51
|
+
"By custom date": "カスタム時間",
|
|
52
|
+
"Advanced": "アドバンスド",
|
|
53
|
+
"End": "終了",
|
|
54
|
+
"Trigger variables": "トリガーフィールド",
|
|
55
|
+
"Node result": "ノードの結果",
|
|
56
|
+
"Constant": "定数",
|
|
57
|
+
"Boolean": "論理値",
|
|
58
|
+
"String": "文字列",
|
|
59
|
+
"Arithmetic calculation": "算術演算",
|
|
60
|
+
"String operation": "文字列操作",
|
|
61
|
+
"On going": "処理中",
|
|
62
|
+
"Succeeded": "成功",
|
|
63
|
+
"Failed": "失敗",
|
|
64
|
+
"Canceled": "取消",
|
|
65
|
+
"This node contains branches, deleting will also be preformed to them, are you sure?": "ノードにはブランチが含まれており、そのすべてのブランチの下にあるすべての子ノードが同時に削除されます。続行してもよろしいですか?",
|
|
66
|
+
"Control": "プロセス制御",
|
|
67
|
+
"Collection operations": "フィールド操作",
|
|
68
|
+
"Node type": "ノードタイプ",
|
|
69
|
+
"Calculation": "演算",
|
|
70
|
+
"Configure calculation": "演算設定",
|
|
71
|
+
"Calculation result": "演算結果",
|
|
72
|
+
"True": "真",
|
|
73
|
+
"False": "偽",
|
|
74
|
+
"Condition": "条件",
|
|
75
|
+
"Mode": "モデル",
|
|
76
|
+
"Continue when \"Yes\"": "「はい」の場合に続行",
|
|
77
|
+
"Branch into \"Yes\" and \"No\"": "「はい」と「いいえ」で分岐して続行",
|
|
78
|
+
"Conditions": "条件設定",
|
|
79
|
+
"Parallel branch": "分岐",
|
|
80
|
+
"All succeeded": "すべて成功",
|
|
81
|
+
"Any succeeded": "いずれかが成功",
|
|
82
|
+
"Continue after all branches succeeded": "すべての分岐が成功した後に続行",
|
|
83
|
+
"Continue after any branch succeeded": "いずれかの分岐が成功した後に続行",
|
|
84
|
+
"Create record": "レコード追加",
|
|
85
|
+
"Update record": "レコード更新",
|
|
86
|
+
"Query record": "クエリ レコード",
|
|
87
|
+
"Multiple records": "複数レコード",
|
|
88
|
+
"Please select collection first": "先にコレクションを選択してください",
|
|
89
|
+
"Only update records matching conditions": "条件を満たすレコードのみ更新",
|
|
90
|
+
"Fields that are not assigned a value will be set to the default value, and those that do not have a default value are set to null.": "値が割り当てられていないフィールドはデフォルト値に設定され、デフォルト値がないフィールドは null に設定されます",
|
|
91
|
+
"Trigger in executed workflow cannot be modified": "すでにワークフローを実行したトリガーは変更できません",
|
|
92
|
+
"Node in executed workflow cannot be modified": "すでに実行されたワークフローのノードは変更できません"
|
|
93
|
+
};
|
|
94
|
+
exports.default = _default;
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
Workflow: string;
|
|
3
|
+
"Execution history": string;
|
|
4
|
+
"Trigger type": string;
|
|
5
|
+
Status: string;
|
|
6
|
+
On: string;
|
|
7
|
+
Off: string;
|
|
8
|
+
Version: string;
|
|
9
|
+
"Copy to new version": string;
|
|
10
|
+
"Load failed": string;
|
|
11
|
+
Trigger: string;
|
|
12
|
+
"Collection event": string;
|
|
13
|
+
"Trigger on": string;
|
|
14
|
+
"After record added": string;
|
|
15
|
+
"After record updated": string;
|
|
16
|
+
"After record added or updated": string;
|
|
17
|
+
"After record deleted": string;
|
|
18
|
+
"Changed fields": string;
|
|
19
|
+
"Triggered only if one of the selected fields changes. If unselected, it means that it will be triggered when any field changes. When record is added or deleted, any field is considered to have been changed.": string;
|
|
20
|
+
"Only triggers when match conditions": string;
|
|
21
|
+
"Schedule event": string;
|
|
22
|
+
"Trigger mode": string;
|
|
23
|
+
"Based on certain date": string;
|
|
24
|
+
"Based on date field of collection": string;
|
|
25
|
+
"Starts on": string;
|
|
26
|
+
"Ends on": string;
|
|
27
|
+
"Exactly at": string;
|
|
28
|
+
"Repeat mode": string;
|
|
29
|
+
"Repeat limit": string;
|
|
30
|
+
"No limit": string;
|
|
31
|
+
Seconds: string;
|
|
32
|
+
Minutes: string;
|
|
33
|
+
Hours: string;
|
|
34
|
+
Days: string;
|
|
35
|
+
Weeks: string;
|
|
36
|
+
Months: string;
|
|
37
|
+
"No repeat": string;
|
|
38
|
+
Every: string;
|
|
39
|
+
"By minute": string;
|
|
40
|
+
"By hour": string;
|
|
41
|
+
"By day": string;
|
|
42
|
+
"By week": string;
|
|
43
|
+
"By month": string;
|
|
44
|
+
"By field": string;
|
|
45
|
+
"By custom date": string;
|
|
46
|
+
Advanced: string;
|
|
47
|
+
End: string;
|
|
48
|
+
"Trigger variables": string;
|
|
49
|
+
"Node result": string;
|
|
50
|
+
Constant: string;
|
|
51
|
+
Boolean: string;
|
|
52
|
+
String: string;
|
|
53
|
+
"Arithmetic calculation": string;
|
|
54
|
+
"String operation": string;
|
|
55
|
+
"On going": string;
|
|
56
|
+
Succeeded: string;
|
|
57
|
+
Failed: string;
|
|
58
|
+
Canceled: string;
|
|
59
|
+
"This node contains branches, deleting will also be preformed to them, are you sure?": string;
|
|
60
|
+
Control: string;
|
|
61
|
+
"Collection operations": string;
|
|
62
|
+
"Node type": string;
|
|
63
|
+
Calculation: string;
|
|
64
|
+
"Configure calculation": string;
|
|
65
|
+
"Calculation result": string;
|
|
66
|
+
True: string;
|
|
67
|
+
False: string;
|
|
68
|
+
Condition: string;
|
|
69
|
+
Mode: string;
|
|
70
|
+
"Continue when \"Yes\"": string;
|
|
71
|
+
"Branch into \"Yes\" and \"No\"": string;
|
|
72
|
+
Conditions: string;
|
|
73
|
+
"Parallel branch": string;
|
|
74
|
+
"All succeeded": string;
|
|
75
|
+
"Any succeeded": string;
|
|
76
|
+
"Continue after all branches succeeded": string;
|
|
77
|
+
"Continue after any branch succeeded": string;
|
|
78
|
+
"Create record": string;
|
|
79
|
+
"Update record": string;
|
|
80
|
+
"Query record": string;
|
|
81
|
+
"Multiple records": string;
|
|
82
|
+
"Please select collection first": string;
|
|
83
|
+
"Only update records matching conditions": string;
|
|
84
|
+
"Fields that are not assigned a value will be set to the default value, and those that do not have a default value are set to null.": string;
|
|
85
|
+
"Trigger in executed workflow cannot be modified": string;
|
|
86
|
+
"Node in executed workflow cannot be modified": string;
|
|
87
|
+
};
|
|
88
|
+
export default _default;
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _default = {
|
|
8
|
+
"Workflow": "Рабочий процесс",
|
|
9
|
+
"Execution history": "История запусков",
|
|
10
|
+
"Trigger type": "Тип триггера",
|
|
11
|
+
"Status": "Статус",
|
|
12
|
+
"On": "Вкл.",
|
|
13
|
+
"Off": "Выкл.",
|
|
14
|
+
"Version": "Версия",
|
|
15
|
+
"Copy to new version": "Скопировать в новую версию",
|
|
16
|
+
"Load failed": "Загрузка не удалась",
|
|
17
|
+
"Trigger": "Триггер",
|
|
18
|
+
"Collection event": "Событие коллекции",
|
|
19
|
+
"Trigger on": "Триггер на",
|
|
20
|
+
"After record added": "После добавления записи",
|
|
21
|
+
"After record updated": "После обновления записи",
|
|
22
|
+
"After record added or updated": "После добавления или обновления записи",
|
|
23
|
+
"After record deleted": "После удаления записи",
|
|
24
|
+
"Changed fields": "Измененные поля",
|
|
25
|
+
"Triggered only if one of the selected fields changes. If unselected, it means that it will be triggered when any field changes. When record is added or deleted, any field is considered to have been changed.": "Запускается только при изменении одного из выбранных полей. Если флажок не установлен, это означает, что он будет срабатывать при изменении любого поля. При добавлении или удалении записи любое поле считается измененным.",
|
|
26
|
+
"Only triggers when match conditions": "Срабатывает только при совпадении условий",
|
|
27
|
+
"Schedule event": "Событие по расписанию",
|
|
28
|
+
"Trigger mode": "Режим триггера",
|
|
29
|
+
"Based on certain date": "На основе определенной даты",
|
|
30
|
+
"Based on date field of collection": "На базе поля с датой в коллекции",
|
|
31
|
+
"Starts on": "Стартует с",
|
|
32
|
+
"Ends on": "Оканчивается в",
|
|
33
|
+
"Exactly at": "Ровно в",
|
|
34
|
+
"Repeat mode": "Режим повтора",
|
|
35
|
+
"Repeat limit": "Ограничение на повторы",
|
|
36
|
+
"No limit": "Нет ограничений",
|
|
37
|
+
"Seconds": "Секунды",
|
|
38
|
+
"Minutes": "Минуты",
|
|
39
|
+
"Hours": "Часы",
|
|
40
|
+
"Days": "Дни",
|
|
41
|
+
"Weeks": "Недели",
|
|
42
|
+
"Months": "Месяцы",
|
|
43
|
+
"No repeat": "Не повторять",
|
|
44
|
+
"Every": "Каждые",
|
|
45
|
+
"By minute": "По минутам",
|
|
46
|
+
"By hour": "По часам",
|
|
47
|
+
"By day": "По дням",
|
|
48
|
+
"By week": "По неделям",
|
|
49
|
+
"By month": "По месяцам",
|
|
50
|
+
"By field": "По полю",
|
|
51
|
+
"By custom date": "По пользовательской дате",
|
|
52
|
+
"Advanced": "Продвинутый",
|
|
53
|
+
"End": "Окончание",
|
|
54
|
+
"Trigger variables": "Контекст триггера",
|
|
55
|
+
"Node result": "Результат Узла",
|
|
56
|
+
"Constant": "Константа",
|
|
57
|
+
"Boolean": "Логический",
|
|
58
|
+
"String": "Строка",
|
|
59
|
+
"Arithmetic calculation": "Арифметическое вычисление",
|
|
60
|
+
"String operation": "Операция со строкой",
|
|
61
|
+
"On going": "Непрерывный",
|
|
62
|
+
"Succeeded": "Успешный",
|
|
63
|
+
"Failed": "Неудачный",
|
|
64
|
+
"Canceled": "Прерванный",
|
|
65
|
+
"This node contains branches, deleting will also be preformed to them, are you sure?": "Этот узел содержит ветки, к ним тоже будет произведено удаление, вы уверены?",
|
|
66
|
+
"Control": "Управление",
|
|
67
|
+
"Collection operations": "Операции с Коллекцией",
|
|
68
|
+
"Node type": "Тип Узла",
|
|
69
|
+
"Calculation": "Вычисление",
|
|
70
|
+
"Configure calculation": "Настроить вычисление",
|
|
71
|
+
"Calculation result": "Результат вычисления",
|
|
72
|
+
"True": "Истина",
|
|
73
|
+
"False": "Ложь",
|
|
74
|
+
"Condition": "Условие",
|
|
75
|
+
"Mode": "Режим",
|
|
76
|
+
"Continue when \"Yes\"": "Продолжить когда \"Да\"",
|
|
77
|
+
"Branch into \"Yes\" and \"No\"": "Разветвление на \"Да\" and \"Нет\"",
|
|
78
|
+
"Conditions": "Условия",
|
|
79
|
+
"Parallel branch": "Параллельная ветвь",
|
|
80
|
+
"All succeeded": "Всё успешно",
|
|
81
|
+
"Any succeeded": "Что-то успешно",
|
|
82
|
+
"Continue after all branches succeeded": "Продолжать после успеха на всех ветвях",
|
|
83
|
+
"Continue after any branch succeeded": "Продолжать после успеха на любой из ветвей",
|
|
84
|
+
"Create record": "Создать запись",
|
|
85
|
+
"Update record": "Обновить запись",
|
|
86
|
+
"Query record": "Запрос записи",
|
|
87
|
+
"Multiple records": "Множество записей",
|
|
88
|
+
"Please select collection first": "Выберите сначала Коллекцию, пожалуйста",
|
|
89
|
+
"Only update records matching conditions": "Обновлять только записи, соответствующие условиям",
|
|
90
|
+
"Fields that are not assigned a value will be set to the default value, and those that do not have a default value are set to null.": "Поля, которым не присвоено значение, будут установлены на значение по умолчанию, а поля, не имеющие значения по умолчанию, будут установлены на null.",
|
|
91
|
+
"Trigger in executed workflow cannot be modified": "Триггер в выполняемом рабочем процессе не может быть изменен",
|
|
92
|
+
"Node in executed workflow cannot be modified": "Узел в выполняемом рабочем процессе не может быть изменен"
|
|
93
|
+
};
|
|
94
|
+
exports.default = _default;
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
Workflow: string;
|
|
3
|
+
"Execution history": string;
|
|
4
|
+
"Trigger type": string;
|
|
5
|
+
Status: string;
|
|
6
|
+
On: string;
|
|
7
|
+
Off: string;
|
|
8
|
+
Version: string;
|
|
9
|
+
"Copy to new version": string;
|
|
10
|
+
"Load failed": string;
|
|
11
|
+
Trigger: string;
|
|
12
|
+
"Collection event": string;
|
|
13
|
+
"Trigger on": string;
|
|
14
|
+
"After record added": string;
|
|
15
|
+
"After record updated": string;
|
|
16
|
+
"After record added or updated": string;
|
|
17
|
+
"After record deleted": string;
|
|
18
|
+
"Changed fields": string;
|
|
19
|
+
"Triggered only if one of the selected fields changes. If unselected, it means that it will be triggered when any field changes. When record is added or deleted, any field is considered to have been changed.": string;
|
|
20
|
+
"Only triggers when match conditions": string;
|
|
21
|
+
"Schedule event": string;
|
|
22
|
+
"Trigger mode": string;
|
|
23
|
+
"Based on certain date": string;
|
|
24
|
+
"Based on date field of collection": string;
|
|
25
|
+
"Starts on": string;
|
|
26
|
+
"Ends on": string;
|
|
27
|
+
"Exactly at": string;
|
|
28
|
+
"Repeat mode": string;
|
|
29
|
+
"Repeat limit": string;
|
|
30
|
+
"No limit": string;
|
|
31
|
+
Seconds: string;
|
|
32
|
+
Minutes: string;
|
|
33
|
+
Hours: string;
|
|
34
|
+
Days: string;
|
|
35
|
+
Weeks: string;
|
|
36
|
+
Months: string;
|
|
37
|
+
"No repeat": string;
|
|
38
|
+
Every: string;
|
|
39
|
+
"By minute": string;
|
|
40
|
+
"By hour": string;
|
|
41
|
+
"By day": string;
|
|
42
|
+
"By week": string;
|
|
43
|
+
"By month": string;
|
|
44
|
+
"By field": string;
|
|
45
|
+
"By custom date": string;
|
|
46
|
+
Advanced: string;
|
|
47
|
+
End: string;
|
|
48
|
+
"Trigger variables": string;
|
|
49
|
+
"Node result": string;
|
|
50
|
+
Constant: string;
|
|
51
|
+
Boolean: string;
|
|
52
|
+
String: string;
|
|
53
|
+
"Arithmetic calculation": string;
|
|
54
|
+
"String operation": string;
|
|
55
|
+
"On going": string;
|
|
56
|
+
Succeeded: string;
|
|
57
|
+
Failed: string;
|
|
58
|
+
Canceled: string;
|
|
59
|
+
"This node contains branches, deleting will also be preformed to them, are you sure?": string;
|
|
60
|
+
Control: string;
|
|
61
|
+
"Collection operations": string;
|
|
62
|
+
"Node type": string;
|
|
63
|
+
Calculation: string;
|
|
64
|
+
"Configure calculation": string;
|
|
65
|
+
"Calculation result": string;
|
|
66
|
+
True: string;
|
|
67
|
+
False: string;
|
|
68
|
+
Condition: string;
|
|
69
|
+
Mode: string;
|
|
70
|
+
"Continue when \"Yes\"": string;
|
|
71
|
+
"Branch into \"Yes\" and \"No\"": string;
|
|
72
|
+
Conditions: string;
|
|
73
|
+
"Parallel branch": string;
|
|
74
|
+
"All succeeded": string;
|
|
75
|
+
"Any succeeded": string;
|
|
76
|
+
"Continue after all branches succeeded": string;
|
|
77
|
+
"Continue after any branch succeeded": string;
|
|
78
|
+
"Create record": string;
|
|
79
|
+
"Update record": string;
|
|
80
|
+
"Query record": string;
|
|
81
|
+
"Multiple records": string;
|
|
82
|
+
"Please select collection first": string;
|
|
83
|
+
"Only update records matching conditions": string;
|
|
84
|
+
"Fields that are not assigned a value will be set to the default value, and those that do not have a default value are set to null.": string;
|
|
85
|
+
"Trigger in executed workflow cannot be modified": string;
|
|
86
|
+
"Node in executed workflow cannot be modified": string;
|
|
87
|
+
};
|
|
88
|
+
export default _default;
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _default = {
|
|
8
|
+
"Workflow": "İş Akışı",
|
|
9
|
+
"Execution history": "Yürütme Geçmişi",
|
|
10
|
+
"Trigger type": "Tetikleme türü",
|
|
11
|
+
"Status": "Durum",
|
|
12
|
+
"On": "Aç",
|
|
13
|
+
"Off": "Kapa",
|
|
14
|
+
"Version": "Sürüm",
|
|
15
|
+
"Copy to new version": "Yeni sürüme kopyala",
|
|
16
|
+
"Load failed": "Yükleme başarısız",
|
|
17
|
+
"Trigger": "Tetikle",
|
|
18
|
+
"Collection event": "Koleksiyon etkinliği",
|
|
19
|
+
"Trigger on": "Tetikleme açık",
|
|
20
|
+
"After record added": "Kayıt eklendikten sonra",
|
|
21
|
+
"After record updated": "Kayıt güncellendikten sonra",
|
|
22
|
+
"After record added or updated": "Kayıt eklendikten veya güncellendikten sonra",
|
|
23
|
+
"After record deleted": "Kayıt silindikten sonra",
|
|
24
|
+
"Changed fields": "Değiştirilen alanlar",
|
|
25
|
+
"Triggered only if one of the selected fields changes. If unselected, it means that it will be triggered when any field changes. When record is added or deleted, any field is considered to have been changed.": "Yalnızca seçilen alanlardan biri değiştiğinde tetiklenir. Seçili değilse, herhangi bir alan değiştiğinde tetikleneceği anlamına gelir. Kayıt eklendiğinde veya silindiğinde, herhangi bir alan değiştirilmiş olarak kabul edilir.",
|
|
26
|
+
"Only triggers when match conditions": "Yalnızca eşleşme koşulları olduğunda tetiklenir",
|
|
27
|
+
"Schedule event": "Etkinlik planla",
|
|
28
|
+
"Trigger mode": "Tetikleme modu",
|
|
29
|
+
"Based on certain date": "Belirli bir tarihe göre",
|
|
30
|
+
"Based on date field of collection": "Koleksiyonun tarih alanına göre",
|
|
31
|
+
"Starts on": "Başlangıç",
|
|
32
|
+
"Ends on": "Bitiş",
|
|
33
|
+
"Exactly at": "Tam zamanı",
|
|
34
|
+
"Repeat mode": "Tekrarlama modu",
|
|
35
|
+
"Repeat limit": "Tekrarlama limiti",
|
|
36
|
+
"No limit": "Limit yok",
|
|
37
|
+
"Seconds": "Saniye",
|
|
38
|
+
"Minutes": "Dakika",
|
|
39
|
+
"Hours": "Saat",
|
|
40
|
+
"Days": "Gün",
|
|
41
|
+
"Weeks": "Hafta",
|
|
42
|
+
"Months": "Ay",
|
|
43
|
+
"No repeat": "Tekrar yok",
|
|
44
|
+
"Every": "Her",
|
|
45
|
+
"By minute": "Dakikada",
|
|
46
|
+
"By hour": "Saatte",
|
|
47
|
+
"By day": "Günde",
|
|
48
|
+
"By week": "Haftada",
|
|
49
|
+
"By month": "Ayda",
|
|
50
|
+
"By field": "Alanda",
|
|
51
|
+
"By custom date": "Özel tarihe göre",
|
|
52
|
+
"Advanced": "Gelişmiş",
|
|
53
|
+
"End": "Son",
|
|
54
|
+
"Trigger variables": "Tetikleyici bağlamı",
|
|
55
|
+
"Node result": "Düğüm sonucu",
|
|
56
|
+
"Constant": "Devamlı",
|
|
57
|
+
"Boolean": "Boolean",
|
|
58
|
+
"String": "String",
|
|
59
|
+
"Arithmetic calculation": "Aritmetik hesaplama",
|
|
60
|
+
"String operation": "String operation",
|
|
61
|
+
"On going": "Devam eden",
|
|
62
|
+
"Succeeded": "Başarılı",
|
|
63
|
+
"Failed": "Başarısız",
|
|
64
|
+
"Canceled": "İptal edilen",
|
|
65
|
+
"This node contains branches, deleting will also be preformed to them, are you sure?": "Bu düğüm başka içeriklerle bağlantı içeriyor, silme işlemini onaylarsanız o bağlantılarda silinecek, emin misiniz?",
|
|
66
|
+
"Control": "Kontrol",
|
|
67
|
+
"Collection operations": "Koleksiyon operasyonları",
|
|
68
|
+
"Node type": "Düğüm türü",
|
|
69
|
+
"Calculation": "Hesaplama",
|
|
70
|
+
"Configure calculation": "Hesaplamayı yapılandır",
|
|
71
|
+
"Calculation result": "Hesaplama sonucu",
|
|
72
|
+
"True": "Doğru",
|
|
73
|
+
"False": "Yanlış",
|
|
74
|
+
"Condition": "Koşul",
|
|
75
|
+
"Mode": "Tür",
|
|
76
|
+
"Continue when \"Yes\"": "\"Evet\" durumunda devam",
|
|
77
|
+
"Branch into \"Yes\" and \"No\"": "\"Evet\" ve \"Hayır\" olarak dallandırın",
|
|
78
|
+
"Conditions": "Koşullar",
|
|
79
|
+
"Parallel branch": "Paralel dal",
|
|
80
|
+
"All succeeded": "Hepsi başarılı",
|
|
81
|
+
"Any succeeded": "Herhangi biri başarılı",
|
|
82
|
+
"Continue after all branches succeeded": "Tüm dallar başarılı olduktan sonra devam et",
|
|
83
|
+
"Continue after any branch succeeded": "Herhangi bir dal başarılı olduktan sonra devam et",
|
|
84
|
+
"Create record": "Kayıt oluştur",
|
|
85
|
+
"Update record": "Kayıt güncelle",
|
|
86
|
+
"Query record": "Sorgu kaydı",
|
|
87
|
+
"Multiple records": "Birden çok kayıt",
|
|
88
|
+
"Please select collection first": "Lütfen önce koleksiyonu seçin",
|
|
89
|
+
"Only update records matching conditions": "Yalnızca koşullarla eşleşen kayıtları güncelleyin",
|
|
90
|
+
"Fields that are not assigned a value will be set to the default value, and those that do not have a default value are set to null.": "Değer atanmamış alanlar varsayılan değere, varsayılan değeri olmayan alanlar ise null olarak ayarlanır.",
|
|
91
|
+
"Trigger in executed workflow cannot be modified": "Yürütülen iş akışındaki tetikleyici değiştirilemez",
|
|
92
|
+
"Node in executed workflow cannot be modified": "Yürütülen iş akışındaki düğüm değiştirilemez"
|
|
93
|
+
};
|
|
94
|
+
exports.default = _default;
|