@nocobase/plugin-workflow 2.1.0-alpha.4 → 2.1.0-alpha.45
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/LICENSE +201 -661
- package/README.md +79 -10
- package/dist/client/214.7e602cfe7a8251b8.js +10 -0
- package/dist/client/618.19af7f84261c815d.js +10 -0
- package/dist/client/67.452743ce8ec30617.js +10 -0
- package/dist/client/964.ffbf5b47ed12bbdc.js +10 -0
- package/dist/client/Branch.d.ts +7 -3
- package/dist/client/BranchContext.d.ts +18 -0
- package/dist/client/components/TimeoutInput.d.ts +11 -0
- package/dist/client/constants.d.ts +13 -0
- package/dist/client/flows/triggerWorkflows.d.ts +14 -1
- package/dist/client/hooks/{useWorkflowFilterActionProps.d.ts → useResourceFilterActionProps.d.ts} +1 -1
- package/dist/client/index.js +1 -1
- package/dist/client/nodes/create.d.ts +10 -0
- package/dist/client/nodes/destroy.d.ts +10 -0
- package/dist/client/nodes/index.d.ts +5 -0
- package/dist/client/nodes/query.d.ts +18 -2
- package/dist/client/nodes/update.d.ts +10 -0
- package/dist/client/schemas/collection.d.ts +8 -2
- package/dist/client/schemas/executions.d.ts +62 -2
- package/dist/client/triggers/collection.d.ts +14 -1
- package/dist/client/triggers/index.d.ts +4 -0
- package/dist/client/triggers/schedule/constants.d.ts +4 -0
- package/dist/client/triggers/schedule/index.d.ts +15 -0
- package/dist/client/utils.d.ts +17 -0
- package/dist/common/collections/executions.d.ts +43 -1
- package/dist/common/collections/executions.js +62 -1
- package/dist/common/collections/jobs.js +7 -0
- package/dist/common/collections/workflows.d.ts +65 -11
- package/dist/common/collections/workflows.js +34 -2
- package/dist/common/constants.d.ts +5 -0
- package/dist/common/constants.js +7 -0
- package/dist/externalVersion.js +15 -13
- package/dist/locale/de-DE.json +4 -0
- package/dist/locale/en-US.json +7 -0
- package/dist/locale/es-ES.json +4 -0
- package/dist/locale/fr-FR.json +4 -0
- package/dist/locale/hu-HU.json +7 -3
- package/dist/locale/id-ID.json +4 -0
- package/dist/locale/it-IT.json +4 -0
- package/dist/locale/ja-JP.json +5 -1
- package/dist/locale/ko-KR.json +4 -0
- package/dist/locale/nl-NL.json +7 -3
- package/dist/locale/pt-BR.json +4 -0
- package/dist/locale/ru-RU.json +4 -0
- package/dist/locale/tr-TR.json +4 -0
- package/dist/locale/uk-UA.json +7 -3
- package/dist/locale/vi-VN.json +7 -3
- package/dist/locale/zh-CN.json +12 -1
- package/dist/locale/zh-TW.json +7 -3
- package/dist/node_modules/cron-parser/lib/parser.js +1 -1
- package/dist/node_modules/cron-parser/package.json +1 -1
- package/dist/node_modules/joi/dist/joi-browser.min.js +1 -0
- package/dist/node_modules/joi/lib/annotate.js +175 -0
- package/dist/node_modules/joi/lib/base.js +1069 -0
- package/dist/node_modules/joi/lib/cache.js +143 -0
- package/dist/node_modules/joi/lib/common.js +216 -0
- package/dist/node_modules/joi/lib/compile.js +283 -0
- package/dist/node_modules/joi/lib/errors.js +271 -0
- package/dist/node_modules/joi/lib/extend.js +312 -0
- package/dist/node_modules/joi/lib/index.d.ts +2365 -0
- package/dist/node_modules/joi/lib/index.js +1 -0
- package/dist/node_modules/joi/lib/manifest.js +476 -0
- package/dist/node_modules/joi/lib/messages.js +178 -0
- package/dist/node_modules/joi/lib/modify.js +267 -0
- package/dist/node_modules/joi/lib/ref.js +414 -0
- package/dist/node_modules/joi/lib/schemas.js +302 -0
- package/dist/node_modules/joi/lib/state.js +166 -0
- package/dist/node_modules/joi/lib/template.js +463 -0
- package/dist/node_modules/joi/lib/trace.js +346 -0
- package/dist/node_modules/joi/lib/types/alternatives.js +364 -0
- package/dist/node_modules/joi/lib/types/any.js +174 -0
- package/dist/node_modules/joi/lib/types/array.js +809 -0
- package/dist/node_modules/joi/lib/types/binary.js +100 -0
- package/dist/node_modules/joi/lib/types/boolean.js +150 -0
- package/dist/node_modules/joi/lib/types/date.js +233 -0
- package/dist/node_modules/joi/lib/types/function.js +93 -0
- package/dist/node_modules/joi/lib/types/keys.js +1067 -0
- package/dist/node_modules/joi/lib/types/link.js +168 -0
- package/dist/node_modules/joi/lib/types/number.js +363 -0
- package/dist/node_modules/joi/lib/types/object.js +22 -0
- package/dist/node_modules/joi/lib/types/string.js +850 -0
- package/dist/node_modules/joi/lib/types/symbol.js +102 -0
- package/dist/node_modules/joi/lib/validator.js +750 -0
- package/dist/node_modules/joi/lib/values.js +263 -0
- package/dist/node_modules/joi/node_modules/@hapi/topo/lib/index.d.ts +60 -0
- package/dist/node_modules/joi/node_modules/@hapi/topo/lib/index.js +225 -0
- package/dist/node_modules/joi/node_modules/@hapi/topo/package.json +30 -0
- package/dist/node_modules/joi/package.json +1 -0
- package/dist/node_modules/lru-cache/dist/commonjs/diagnostics-channel.d.ts +5 -0
- package/dist/node_modules/lru-cache/dist/commonjs/diagnostics-channel.js +10 -0
- package/dist/node_modules/lru-cache/dist/commonjs/index.d.ts +1381 -0
- package/dist/node_modules/lru-cache/dist/commonjs/index.js +1692 -0
- package/dist/node_modules/lru-cache/dist/commonjs/index.min.js +1 -0
- package/dist/node_modules/lru-cache/dist/esm/browser/diagnostics-channel.d.ts +5 -0
- package/dist/node_modules/lru-cache/dist/esm/browser/diagnostics-channel.js +4 -0
- package/dist/node_modules/lru-cache/dist/esm/browser/index.d.ts +1381 -0
- package/dist/node_modules/lru-cache/dist/{mjs → esm/browser}/index.js +537 -179
- package/dist/node_modules/lru-cache/dist/esm/browser/index.min.js +2 -0
- package/dist/node_modules/lru-cache/dist/esm/diagnostics-channel.d.ts +5 -0
- package/dist/node_modules/lru-cache/dist/esm/diagnostics-channel.js +19 -0
- package/dist/node_modules/lru-cache/dist/esm/index.d.ts +1381 -0
- package/dist/node_modules/lru-cache/dist/{cjs → esm}/index.js +538 -184
- package/dist/node_modules/lru-cache/dist/esm/index.min.js +2 -0
- package/dist/node_modules/lru-cache/dist/esm/node/diagnostics-channel.d.ts +5 -0
- package/dist/node_modules/lru-cache/dist/esm/node/diagnostics-channel.js +7 -0
- package/dist/node_modules/lru-cache/dist/esm/node/index.d.ts +1381 -0
- package/dist/node_modules/lru-cache/dist/esm/node/index.js +1688 -0
- package/dist/node_modules/lru-cache/dist/esm/node/index.min.js +2 -0
- package/dist/node_modules/lru-cache/package.json +1 -1
- package/dist/node_modules/nodejs-snowflake/nodejs_snowflake.js +1 -1
- package/dist/node_modules/nodejs-snowflake/package.json +1 -1
- package/dist/server/Dispatcher.d.ts +9 -6
- package/dist/server/Dispatcher.js +241 -160
- package/dist/server/ExecutionTimeoutManager.d.ts +45 -0
- package/dist/server/ExecutionTimeoutManager.js +312 -0
- package/dist/server/Plugin.d.ts +13 -0
- package/dist/server/Plugin.js +49 -4
- package/dist/server/Processor.d.ts +65 -9
- package/dist/server/Processor.js +285 -33
- package/dist/server/RunningExecutionRegistry.d.ts +18 -0
- package/dist/server/RunningExecutionRegistry.js +48 -0
- package/dist/server/actions/executions.d.ts +4 -3
- package/dist/server/actions/executions.js +42 -21
- package/dist/server/actions/jobs.d.ts +2 -1
- package/dist/server/actions/jobs.js +28 -1
- package/dist/server/actions/nodes.d.ts +5 -0
- package/dist/server/actions/nodes.js +38 -5
- package/dist/server/actions/workflows.d.ts +6 -0
- package/dist/server/actions/workflows.js +38 -0
- package/dist/server/constants.d.ts +2 -0
- package/dist/server/constants.js +3 -0
- package/dist/server/index.d.ts +2 -0
- package/dist/server/index.js +2 -0
- package/dist/server/instructions/ConditionInstruction.d.ts +2 -0
- package/dist/server/instructions/ConditionInstruction.js +17 -0
- package/dist/server/instructions/CreateInstruction.d.ts +3 -0
- package/dist/server/instructions/CreateInstruction.js +25 -0
- package/dist/server/instructions/DestroyInstruction.d.ts +3 -0
- package/dist/server/instructions/DestroyInstruction.js +25 -0
- package/dist/server/instructions/EndInstruction.d.ts +2 -0
- package/dist/server/instructions/EndInstruction.js +4 -0
- package/dist/server/instructions/MultiConditionsInstruction.d.ts +2 -0
- package/dist/server/instructions/MultiConditionsInstruction.js +23 -0
- package/dist/server/instructions/OutputInstruction.d.ts +2 -0
- package/dist/server/instructions/OutputInstruction.js +14 -0
- package/dist/server/instructions/QueryInstruction.d.ts +3 -0
- package/dist/server/instructions/QueryInstruction.js +32 -7
- package/dist/server/instructions/UpdateInstruction.d.ts +3 -0
- package/dist/server/instructions/UpdateInstruction.js +27 -0
- package/dist/server/instructions/index.d.ts +24 -4
- package/dist/server/instructions/index.js +18 -0
- package/dist/server/migrations/20260423225800-fill-workflow-created-updated-by.d.ts +13 -0
- package/dist/server/migrations/20260423225800-fill-workflow-created-updated-by.js +57 -0
- package/dist/server/migrations/20260501120000-workflow-timeout.d.ts +13 -0
- package/dist/server/migrations/20260501120000-workflow-timeout.js +63 -0
- package/dist/server/timeout-errors.d.ts +13 -0
- package/dist/server/timeout-errors.js +47 -0
- package/dist/server/triggers/CollectionTrigger.d.ts +3 -0
- package/dist/server/triggers/CollectionTrigger.js +28 -0
- package/dist/server/triggers/ScheduleTrigger/index.d.ts +3 -0
- package/dist/server/triggers/ScheduleTrigger/index.js +18 -3
- package/dist/server/triggers/index.d.ts +3 -0
- package/dist/server/triggers/index.js +18 -0
- package/dist/server/types/Execution.d.ts +6 -0
- package/dist/server/types/Job.d.ts +3 -3
- package/dist/server/types/Workflow.d.ts +6 -1
- package/dist/server/utils.d.ts +27 -0
- package/dist/server/utils.js +138 -2
- package/dist/swagger/index.d.ts +849 -106
- package/dist/swagger/index.js +969 -208
- package/package.json +6 -5
- package/dist/client/27bd65abee87cafa.js +0 -10
- package/dist/client/478692c1637f2742.js +0 -10
- package/dist/client/c1347b9d21f864d9.js +0 -10
- package/dist/client/f39e94207f92e352.js +0 -10
- package/dist/node_modules/lru-cache/LICENSE +0 -15
- package/dist/node_modules/lru-cache/dist/cjs/index-cjs.d.ts +0 -7
- package/dist/node_modules/lru-cache/dist/cjs/index-cjs.js +0 -1
- package/dist/node_modules/lru-cache/dist/cjs/index.d.ts +0 -807
- package/dist/node_modules/lru-cache/dist/cjs/index.min.js +0 -2
- package/dist/node_modules/lru-cache/dist/mjs/index.d.ts +0 -807
- package/dist/node_modules/lru-cache/dist/mjs/index.min.js +0 -2
- /package/dist/node_modules/lru-cache/dist/{cjs → commonjs}/package.json +0 -0
- /package/dist/node_modules/lru-cache/dist/{mjs → esm}/package.json +0 -0
package/dist/locale/vi-VN.json
CHANGED
|
@@ -102,6 +102,8 @@
|
|
|
102
102
|
"Executed at": "Executed at",
|
|
103
103
|
"Executed workflow cannot be modified. Could be copied to a new version to modify.": "Executed workflow cannot be modified. Could be copied to a new version to modify.",
|
|
104
104
|
"Execution history": "Execution history",
|
|
105
|
+
"Timeout settings": "Cài đặt thời gian chờ",
|
|
106
|
+
"0 means unlimited. If you set any other value and the execution is still not completed when the timeout is reached, the execution plan will be terminated and the remaining nodes will not be executed. Time spent in queue is not counted; timing starts only after it first enters a processor.": "0 nghĩa là không giới hạn. Nếu đặt bất kỳ giá trị nào khác mà việc thực thi vẫn chưa hoàn tất khi hết thời gian chờ, kế hoạch thực thi sẽ bị chấm dứt và các nút còn lại sẽ không được thực thi. Thời gian chờ trong hàng đợi không được tính; chỉ bắt đầu tính thời gian sau khi lần đầu đi vào bộ xử lý.",
|
|
105
107
|
"Exit when query result is null": "Exit when query result is null",
|
|
106
108
|
"Expression syntax error": "Expression syntax error",
|
|
107
109
|
"Extended types": "Extended types",
|
|
@@ -115,7 +117,8 @@
|
|
|
115
117
|
"Full form data": "Full form data",
|
|
116
118
|
"General failed but should do another try.": "General failed but should do another try.",
|
|
117
119
|
"Go back": "Go back",
|
|
118
|
-
"Hours": "
|
|
120
|
+
"Hours": "Giờ",
|
|
121
|
+
"Milliseconds": "Mili giây",
|
|
119
122
|
"If checked, all nodes in-progress could continue to be processed in execution of disabled workflow. Otherwise, all nodes in-progress will be aborted automatically.": "If checked, all nodes in-progress could continue to be processed in execution of disabled workflow. Otherwise, all nodes in-progress will be aborted automatically.",
|
|
120
123
|
"If checked, when there are multiple records in the query result, an array will be returned as the result, which can be operated on one by one using a loop node. Otherwise, only one record will be returned.": "If checked, when there are multiple records in the query result, an array will be returned as the result, which can be operated on one by one using a loop node. Otherwise, only one record will be returned.",
|
|
121
124
|
"If the number of loop calls is too large, there will be performance issues.": "If the number of loop calls is too large, there will be performance issues.",
|
|
@@ -131,7 +134,7 @@
|
|
|
131
134
|
"Manually canceled whole execution when waiting.": "Manually canceled whole execution when waiting.",
|
|
132
135
|
"Maximum number of cycling triggers": "Maximum number of cycling triggers",
|
|
133
136
|
"Maximum number of loop calls": "Maximum number of loop calls",
|
|
134
|
-
"Minutes": "
|
|
137
|
+
"Minutes": "Phút",
|
|
135
138
|
"Mode": "Chế độ",
|
|
136
139
|
"Months": "Months",
|
|
137
140
|
"Move all downstream nodes to": "Move all downstream nodes to",
|
|
@@ -178,7 +181,7 @@
|
|
|
178
181
|
"Running of some node was aborted by program flow.": "Running of some node was aborted by program flow.",
|
|
179
182
|
"Schedule event": "Schedule event",
|
|
180
183
|
"Scope variables": "Scope variables",
|
|
181
|
-
"Seconds": "
|
|
184
|
+
"Seconds": "Giây",
|
|
182
185
|
"Select context": "Select context",
|
|
183
186
|
"Select users": "Select users",
|
|
184
187
|
"Select workflow": "Select workflow",
|
|
@@ -232,6 +235,7 @@
|
|
|
232
235
|
"Unassigned fields will be set to default values, and those without default values will be set to null.": "Unassigned fields will be set to default values, and those without default values will be set to null.",
|
|
233
236
|
"Unknown node": "Unknown node",
|
|
234
237
|
"Unknown trigger": "Unknown trigger",
|
|
238
|
+
"Unlimited": "Không giới hạn",
|
|
235
239
|
"Update all eligible data at one time, which has better performance when the amount of data is large. But association fields are not supported (unless foreign key in current collection), and the updated data will not trigger other workflows.": "Update all eligible data at one time, which has better performance when the amount of data is large. But association fields are not supported (unless foreign key in current collection), and the updated data will not trigger other workflows.",
|
|
236
240
|
"Update in a batch": "Update in a batch",
|
|
237
241
|
"Update mode": "Update mode",
|
package/dist/locale/zh-CN.json
CHANGED
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"Add node": "添加节点",
|
|
13
13
|
"Add workflow": "添加工作流",
|
|
14
14
|
"Advanced": "高级模式",
|
|
15
|
+
"Advance options": "高级选项",
|
|
15
16
|
"After end of branches": "分支结束后",
|
|
16
17
|
"After record added": "新增数据后",
|
|
17
18
|
"After record added or updated": "新增或更新数据后",
|
|
@@ -89,6 +90,7 @@
|
|
|
89
90
|
"Duplicate": "复制",
|
|
90
91
|
"Duplicate to new workflow": "复制为新工作流",
|
|
91
92
|
"Edit category": "编辑分类",
|
|
93
|
+
"Enabled": "启用",
|
|
92
94
|
"End": "结束",
|
|
93
95
|
"End as failed": "以失败结束",
|
|
94
96
|
"End process": "结束流程",
|
|
@@ -106,6 +108,11 @@
|
|
|
106
108
|
"Executed at": "执行于",
|
|
107
109
|
"Executed workflow cannot be modified. Could be copied to a new version to modify.": "已经执行过的工作流不能被修改,可通过复制到新版本后再修改。",
|
|
108
110
|
"Execution history": "执行历史",
|
|
111
|
+
"Timeout settings": "超时设置",
|
|
112
|
+
"Timed out": "已超时",
|
|
113
|
+
"Canceled manually": "手动取消",
|
|
114
|
+
"Aborted with parent execution": "随父执行一同终止",
|
|
115
|
+
"0 means unlimited. If you set any other value and the execution is still not completed when the timeout is reached, the execution plan will be terminated and the remaining nodes will not be executed. Time spent in queue is not counted; timing starts only after it first enters a processor.": "0 表示不限制,设置其他任意值在到期还未执行完成时,执行计划将被终止,剩余节点不再被执行。处于队列中的执行计划不计时,仅在首次进入处理器后开始计时。",
|
|
109
116
|
"Exit when query result is null": "查询结果为空时,退出流程",
|
|
110
117
|
"Expression syntax error": "表达式语法错误",
|
|
111
118
|
"Extended types": "扩展类型",
|
|
@@ -120,6 +127,7 @@
|
|
|
120
127
|
"General failed but should do another try.": "执行失败,需重试。",
|
|
121
128
|
"Go back": "返回",
|
|
122
129
|
"Hours": "小时",
|
|
130
|
+
"Milliseconds": "毫秒",
|
|
123
131
|
"If checked, all nodes in-progress could continue to be processed in execution of disabled workflow. Otherwise, all nodes in-progress will be aborted automatically.": "如果选中,在途的节点在禁用或升级到新版本的工作流中将继续处理。否则将自动取消执行。",
|
|
124
132
|
"If checked, when there are multiple records in the query result, an array will be returned as the result, which can be operated on one by one using a loop node. Otherwise, only one record will be returned.": "选中后,当查询结果有多条记录时,会返回数组作为结果,可以使用循环节点对它逐条操作;否则,仅返回一条数据。",
|
|
125
133
|
"Input workflow result": "请输入工作流执行结果",
|
|
@@ -223,12 +231,14 @@
|
|
|
223
231
|
"The workflow tasks page has already been created.": "工作流待办页面已创建。",
|
|
224
232
|
"This is a main version, delete it will cause the whole workflow to be deleted (including all other revisions).": "当前是主版本,删除将导致整个流程被删除(包括所有其他版本)。",
|
|
225
233
|
"This node contains branches, deleting will also be preformed to them, are you sure?": "节点包含分支,将同时删除其所有分支下的子节点,确定继续?",
|
|
234
|
+
"This type of node can not be used in current type of workflow or execute mode.": "该类型的节点在当前类型的工作流或执行模式中不可用。",
|
|
226
235
|
"This type of trigger has not been supported to be executed manually.": "该类型的触发器暂未支持手动执行。",
|
|
227
236
|
"This will perform all the actions configured in the workflow. Are you sure you want to continue?": "将按照工作流中配置的所有操作执行,确定继续吗?",
|
|
228
237
|
"Trigger": "触发器",
|
|
238
|
+
"Trigger configuration": "触发器配置",
|
|
229
239
|
"Trigger data": "触发数据",
|
|
230
240
|
"Trigger data context": "触发数据上下文",
|
|
231
|
-
"Trigger in executed workflow cannot be modified": "
|
|
241
|
+
"Trigger in executed workflow cannot be modified": "已执行的工作流中的触发器无法修改",
|
|
232
242
|
"Trigger mode": "触发模式",
|
|
233
243
|
"Trigger on": "触发时机",
|
|
234
244
|
"Trigger time": "触发时间",
|
|
@@ -244,6 +254,7 @@
|
|
|
244
254
|
"Unassigned fields will be set to default values, and those without default values will be set to null.": "未被赋值的字段将被设置为默认值,没有默认值的设置为空值。",
|
|
245
255
|
"Unknown node": "未知节点",
|
|
246
256
|
"Unknown trigger": "未知触发器",
|
|
257
|
+
"Unlimited": "不限制",
|
|
247
258
|
"Update all eligible data at one time, which has better performance when the amount of data is large. But association fields are not supported (unless foreign key in current collection), and the updated data will not trigger other workflows.": "一次性更新所有符合条件的数据,在数据量较大时有比较好的性能;但不支持关系字段的更新(除非是在当前表中的外键),被更新的数据也不会触发其他工作流。",
|
|
248
259
|
"Update in a batch": "批量更新",
|
|
249
260
|
"Update mode": "更新模式",
|
package/dist/locale/zh-TW.json
CHANGED
|
@@ -102,6 +102,8 @@
|
|
|
102
102
|
"Executed at": "Executed at",
|
|
103
103
|
"Executed workflow cannot be modified. Could be copied to a new version to modify.": "Executed workflow cannot be modified. Could be copied to a new version to modify.",
|
|
104
104
|
"Execution history": "Execution history",
|
|
105
|
+
"Timeout settings": "逾時設定",
|
|
106
|
+
"0 means unlimited. If you set any other value and the execution is still not completed when the timeout is reached, the execution plan will be terminated and the remaining nodes will not be executed. Time spent in queue is not counted; timing starts only after it first enters a processor.": "0 表示不限制,設定其他任意值在到期仍未執行完成時,執行計畫將被終止,剩餘節點不再執行。處於佇列中的執行計畫不計時,僅在首次進入處理器後開始計時。",
|
|
105
107
|
"Exit when query result is null": "Exit when query result is null",
|
|
106
108
|
"Expression syntax error": "Expression syntax error",
|
|
107
109
|
"Extended types": "Extended types",
|
|
@@ -115,7 +117,8 @@
|
|
|
115
117
|
"Full form data": "Full form data",
|
|
116
118
|
"General failed but should do another try.": "General failed but should do another try.",
|
|
117
119
|
"Go back": "Go back",
|
|
118
|
-
"Hours": "
|
|
120
|
+
"Hours": "小時",
|
|
121
|
+
"Milliseconds": "毫秒",
|
|
119
122
|
"If checked, all nodes in-progress could continue to be processed in execution of disabled workflow. Otherwise, all nodes in-progress will be aborted automatically.": "If checked, all nodes in-progress could continue to be processed in execution of disabled workflow. Otherwise, all nodes in-progress will be aborted automatically.",
|
|
120
123
|
"If checked, when there are multiple records in the query result, an array will be returned as the result, which can be operated on one by one using a loop node. Otherwise, only one record will be returned.": "If checked, when there are multiple records in the query result, an array will be returned as the result, which can be operated on one by one using a loop node. Otherwise, only one record will be returned.",
|
|
121
124
|
"If the number of loop calls is too large, there will be performance issues.": "If the number of loop calls is too large, there will be performance issues.",
|
|
@@ -131,7 +134,7 @@
|
|
|
131
134
|
"Manually canceled whole execution when waiting.": "Manually canceled whole execution when waiting.",
|
|
132
135
|
"Maximum number of cycling triggers": "Maximum number of cycling triggers",
|
|
133
136
|
"Maximum number of loop calls": "Maximum number of loop calls",
|
|
134
|
-
"Minutes": "
|
|
137
|
+
"Minutes": "分鐘",
|
|
135
138
|
"Mode": "Mode",
|
|
136
139
|
"Months": "Months",
|
|
137
140
|
"Move all downstream nodes to": "Move all downstream nodes to",
|
|
@@ -178,7 +181,7 @@
|
|
|
178
181
|
"Running of some node was aborted by program flow.": "Running of some node was aborted by program flow.",
|
|
179
182
|
"Schedule event": "Schedule event",
|
|
180
183
|
"Scope variables": "Scope variables",
|
|
181
|
-
"Seconds": "
|
|
184
|
+
"Seconds": "秒",
|
|
182
185
|
"Select context": "Select context",
|
|
183
186
|
"Select users": "Select users",
|
|
184
187
|
"Select workflow": "Select workflow",
|
|
@@ -232,6 +235,7 @@
|
|
|
232
235
|
"Unassigned fields will be set to default values, and those without default values will be set to null.": "Unassigned fields will be set to default values, and those without default values will be set to null.",
|
|
233
236
|
"Unknown node": "Unknown node",
|
|
234
237
|
"Unknown trigger": "Unknown trigger",
|
|
238
|
+
"Unlimited": "不限制",
|
|
235
239
|
"Update all eligible data at one time, which has better performance when the amount of data is large. But association fields are not supported (unless foreign key in current collection), and the updated data will not trigger other workflows.": "Update all eligible data at one time, which has better performance when the amount of data is large. But association fields are not supported (unless foreign key in current collection), and the updated data will not trigger other workflows.",
|
|
236
240
|
"Update in a batch": "Update in a batch",
|
|
237
241
|
"Update mode": "Update mode",
|