@nocobase/plugin-workflow 2.0.0-beta.2 → 2.0.0-beta.20

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.
Files changed (47) hide show
  1. package/dist/client/{80d4cd8911e03c27.js → 2076012783c998ad.js} +1 -1
  2. package/dist/client/cc4188baa297ff50.js +10 -0
  3. package/dist/client/e37f5077c1cb2207.js +10 -0
  4. package/dist/client/index.d.ts +3 -0
  5. package/dist/client/index.js +1 -1
  6. package/dist/client/models/NodeDetailsModel.d.ts +34 -0
  7. package/dist/client/models/NodeValueModel.d.ts +15 -0
  8. package/dist/client/models/TaskCardCommonItemModel.d.ts +14 -0
  9. package/dist/client/models/index.d.ts +11 -0
  10. package/dist/client/nodes/calculation.d.ts +7 -0
  11. package/dist/client/nodes/create.d.ts +7 -0
  12. package/dist/client/nodes/index.d.ts +14 -0
  13. package/dist/client/nodes/output.d.ts +53 -0
  14. package/dist/client/nodes/query.d.ts +7 -0
  15. package/dist/common/collections/jobs.js +4 -0
  16. package/dist/externalVersion.js +12 -12
  17. package/dist/locale/de-DE.json +3 -4
  18. package/dist/locale/en-US.json +7 -4
  19. package/dist/locale/es-ES.json +3 -4
  20. package/dist/locale/fr-FR.json +3 -4
  21. package/dist/locale/it-IT.json +3 -4
  22. package/dist/locale/ja-JP.json +3 -6
  23. package/dist/locale/ko-KR.json +3 -4
  24. package/dist/locale/nl-NL.json +3 -4
  25. package/dist/locale/pt-BR.json +3 -4
  26. package/dist/locale/ru-RU.json +3 -4
  27. package/dist/locale/tr-TR.json +3 -4
  28. package/dist/locale/uk-UA.json +3 -4
  29. package/dist/locale/zh-CN.json +10 -5
  30. package/dist/locale/zh-TW.json +2 -3
  31. package/dist/node_modules/cron-parser/package.json +1 -1
  32. package/dist/node_modules/lru-cache/package.json +1 -1
  33. package/dist/node_modules/nodejs-snowflake/package.json +1 -1
  34. package/dist/server/Dispatcher.js +2 -1
  35. package/dist/server/Plugin.js +5 -1
  36. package/dist/server/Processor.d.ts +9 -0
  37. package/dist/server/Processor.js +6 -1
  38. package/dist/server/actions/index.js +1 -0
  39. package/dist/server/actions/nodes.d.ts +1 -0
  40. package/dist/server/actions/nodes.js +168 -2
  41. package/dist/server/instructions/ConditionInstruction.js +4 -1
  42. package/dist/server/instructions/OutputInstruction.d.ts +21 -0
  43. package/dist/server/instructions/OutputInstruction.js +54 -0
  44. package/dist/server/repositories/WorkflowRepository.js +2 -1
  45. package/package.json +2 -2
  46. package/dist/client/bfc2a351589613e1.js +0 -10
  47. package/dist/client/e078314a62391f36.js +0 -10
@@ -0,0 +1,34 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ import { BlockGridModel, CollectionBlockModel, DetailsGridModel } from '@nocobase/client';
10
+ import { SingleRecordResource } from '@nocobase/flow-engine';
11
+ import React from 'react';
12
+ export declare class NodeDetailsModel extends CollectionBlockModel<{
13
+ parent?: BlockGridModel;
14
+ subModels?: {
15
+ grid: DetailsGridModel;
16
+ };
17
+ }> {
18
+ isManualRefresh: boolean;
19
+ _defaultCustomModelClasses: {
20
+ RecordActionGroupModel: string;
21
+ DetailsItemModel: string;
22
+ DetailsAssociationFieldGroupModel: string;
23
+ DetailsCustomItemModel: string;
24
+ };
25
+ customModelClasses: {};
26
+ get dataSourceKey(): any;
27
+ get collectionName(): any;
28
+ get collection(): import("@nocobase/flow-engine").Collection;
29
+ get dataPath(): any;
30
+ createResource(ctx: any, params: any): SingleRecordResource<unknown>;
31
+ onInit(options: any): void;
32
+ getCurrentRecord(): any;
33
+ renderComponent(): React.JSX.Element;
34
+ }
@@ -0,0 +1,15 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ import { BlockModel } from '@nocobase/client';
10
+ export declare class NodeValueModel extends BlockModel {
11
+ get execution(): any;
12
+ get dataSource(): any;
13
+ get defaultValue(): any;
14
+ renderComponent(): any;
15
+ }
@@ -0,0 +1,14 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ import { DetailsCustomItemModel } from '@nocobase/client';
10
+ import { FlowModelContext, ModelRenderMode, SubModelItem } from '@nocobase/flow-engine';
11
+ export declare class TaskCardCommonItemModel extends DetailsCustomItemModel {
12
+ static renderMode: ModelRenderMode;
13
+ static defineChildren(ctx: FlowModelContext): Promise<SubModelItem[]> | SubModelItem[];
14
+ }
@@ -0,0 +1,11 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ export { NodeDetailsModel } from './NodeDetailsModel';
10
+ export { NodeValueModel } from './NodeValueModel';
11
+ export { TaskCardCommonItemModel } from './TaskCardCommonItemModel';
@@ -11,6 +11,7 @@ import { SchemaInitializerItemType } from '@nocobase/client';
11
11
  import { RadioWithTooltip } from '../components/RadioWithTooltip';
12
12
  import { WorkflowVariableTextArea } from '../variable';
13
13
  import { Instruction } from '.';
14
+ import { SubModelItem } from '@nocobase/flow-engine';
14
15
  export default class extends Instruction {
15
16
  title: string;
16
17
  type: string;
@@ -78,5 +79,11 @@ export default class extends Instruction {
78
79
  label: any;
79
80
  };
80
81
  useInitializers(node: any): SchemaInitializerItemType;
82
+ /**
83
+ * 2.0
84
+ */
85
+ getCreateModelMenuItem({ node }: {
86
+ node: any;
87
+ }): SubModelItem;
81
88
  testable: boolean;
82
89
  }
@@ -10,6 +10,7 @@ import React from 'react';
10
10
  import { SchemaInitializerItemType, useCollectionDataSource } from '@nocobase/client';
11
11
  import { AssignedFieldsFormSchemaConfig } from '../components/AssignedFieldsFormSchemaConfig';
12
12
  import { Instruction, useNodeSavedConfig } from '.';
13
+ import { SubModelItem } from '@nocobase/flow-engine';
13
14
  declare function useVariables({ key: name, title, config }: {
14
15
  key: any;
15
16
  title: any;
@@ -107,5 +108,11 @@ export default class extends Instruction {
107
108
  };
108
109
  useVariables: typeof useVariables;
109
110
  useInitializers(node: any): SchemaInitializerItemType | null;
111
+ /**
112
+ * 2.0
113
+ */
114
+ getCreateModelMenuItem({ node }: {
115
+ node: any;
116
+ }): SubModelItem;
110
117
  }
111
118
  export {};
@@ -11,6 +11,7 @@ import React from 'react';
11
11
  import { SchemaInitializerItemType } from '@nocobase/client';
12
12
  import WorkflowPlugin from '..';
13
13
  import { UseVariableOptions, VariableOption } from '../variable';
14
+ import { SubModelItem } from '@nocobase/flow-engine';
14
15
  export type NodeAvailableContext = {
15
16
  engine: WorkflowPlugin;
16
17
  workflow: object;
@@ -66,7 +67,20 @@ export declare abstract class Instruction {
66
67
  isAvailable?(ctx: NodeAvailableContext): boolean;
67
68
  end?: boolean | ((node: any) => boolean);
68
69
  testable?: boolean;
70
+ /**
71
+ * 2.0
72
+ */
73
+ getCreateModelMenuItem?({ node, workflow }: {
74
+ node: any;
75
+ workflow: any;
76
+ }): SubModelItem | null;
69
77
  }
78
+ export declare function updateNodeConfig({ api, nodeId, config, resourceName }: {
79
+ api: any;
80
+ nodeId: any;
81
+ config: any;
82
+ resourceName?: string;
83
+ }): Promise<void>;
70
84
  export declare const NodeContext: React.Context<any>;
71
85
  export declare function useNodeContext(): any;
72
86
  export declare function useNodeSavedConfig(keys?: any[]): boolean;
@@ -0,0 +1,53 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ import React from 'react';
10
+ import { Instruction } from '.';
11
+ import { WorkflowVariableInput } from '../variable';
12
+ export default class extends Instruction {
13
+ title: string;
14
+ type: string;
15
+ group: string;
16
+ description: string;
17
+ icon: React.JSX.Element;
18
+ fieldset: {
19
+ value: {
20
+ type: string;
21
+ 'x-decorator': string;
22
+ 'x-component': string;
23
+ 'x-component-props': {
24
+ changeOnSelect: boolean;
25
+ useTypedConstant: boolean;
26
+ nullable: boolean;
27
+ autoSize: {
28
+ minRows: number;
29
+ };
30
+ placeholder: string;
31
+ };
32
+ title: string;
33
+ };
34
+ };
35
+ scope: {};
36
+ components: {
37
+ ArrayItems: import("@formily/reactive-react").ReactFC<React.HTMLAttributes<HTMLDivElement>> & import("@formily/antd-v5").ArrayBaseMixins & {
38
+ Item: import("@formily/reactive-react").ReactFC<React.HTMLAttributes<HTMLDivElement> & {
39
+ type?: "divide" | "card";
40
+ }>;
41
+ };
42
+ WorkflowVariableInput: typeof WorkflowVariableInput;
43
+ };
44
+ useVariables({ key, title }: {
45
+ key: any;
46
+ title: any;
47
+ }, { types }: {
48
+ types: any;
49
+ }): {
50
+ value: any;
51
+ label: any;
52
+ };
53
+ }
@@ -12,6 +12,7 @@ import { FilterDynamicComponent } from '../components/FilterDynamicComponent';
12
12
  import { WorkflowVariableInput } from '../variable';
13
13
  import { Instruction, useNodeSavedConfig } from '.';
14
14
  import { RadioWithTooltip } from '../components';
15
+ import { SubModelItem } from '@nocobase/flow-engine';
15
16
  declare function useVariables({ key: name, title, config }: {
16
17
  key: any;
17
18
  title: any;
@@ -232,5 +233,11 @@ export default class extends Instruction {
232
233
  };
233
234
  useVariables: typeof useVariables;
234
235
  useInitializers(node: any): SchemaInitializerItemType | null;
236
+ /**
237
+ * 2.0
238
+ */
239
+ getCreateModelMenuItem({ node }: {
240
+ node: any;
241
+ }): SubModelItem;
235
242
  }
236
243
  export {};
@@ -73,6 +73,10 @@ var jobs_default = {
73
73
  {
74
74
  type: "json",
75
75
  name: "result"
76
+ },
77
+ {
78
+ type: "json",
79
+ name: "meta"
76
80
  }
77
81
  ]
78
82
  };
@@ -11,8 +11,8 @@ module.exports = {
11
11
  "react": "18.2.0",
12
12
  "@formily/core": "2.3.7",
13
13
  "@formily/react": "2.3.7",
14
- "@nocobase/client": "2.0.0-beta.2",
15
- "@nocobase/utils": "2.0.0-beta.2",
14
+ "@nocobase/client": "2.0.0-beta.20",
15
+ "@nocobase/utils": "2.0.0-beta.20",
16
16
  "antd": "5.24.2",
17
17
  "@ant-design/icons": "5.6.1",
18
18
  "react-router-dom": "6.30.1",
@@ -20,18 +20,18 @@ module.exports = {
20
20
  "lodash": "4.17.21",
21
21
  "@dnd-kit/core": "6.1.0",
22
22
  "@formily/shared": "2.3.7",
23
- "@nocobase/flow-engine": "2.0.0-beta.2",
24
- "@nocobase/plugin-mobile": "2.0.0-beta.2",
23
+ "@nocobase/flow-engine": "2.0.0-beta.20",
24
+ "@nocobase/plugin-mobile": "2.0.0-beta.20",
25
25
  "sequelize": "6.35.2",
26
- "@nocobase/server": "2.0.0-beta.2",
27
- "@nocobase/database": "2.0.0-beta.2",
28
- "@nocobase/data-source-manager": "2.0.0-beta.2",
29
- "@nocobase/logger": "2.0.0-beta.2",
30
- "@nocobase/evaluators": "2.0.0-beta.2",
26
+ "@nocobase/server": "2.0.0-beta.20",
27
+ "@nocobase/database": "2.0.0-beta.20",
28
+ "@nocobase/data-source-manager": "2.0.0-beta.20",
29
+ "@nocobase/logger": "2.0.0-beta.20",
30
+ "@nocobase/evaluators": "2.0.0-beta.20",
31
31
  "@formily/antd-v5": "1.2.3",
32
32
  "@formily/reactive": "2.3.7",
33
- "@nocobase/actions": "2.0.0-beta.2",
33
+ "@nocobase/actions": "2.0.0-beta.20",
34
34
  "dayjs": "1.11.13",
35
- "@nocobase/plugin-workflow-test": "2.0.0-beta.2",
36
- "@nocobase/test": "2.0.0-beta.2"
35
+ "@nocobase/plugin-workflow-test": "2.0.0-beta.20",
36
+ "@nocobase/test": "2.0.0-beta.20"
37
37
  };
@@ -54,7 +54,7 @@
54
54
  "Collection event": "Sammlungsereignis",
55
55
  "Collection operations": "Sammlungsoperationen",
56
56
  "Completed": "Abgeschlossen",
57
- "Concat": "Concat",
57
+ "Concatenate": "verketten",
58
58
  "Condition": "Bedingung",
59
59
  "Condition expression": "Bedingungsausdruck",
60
60
  "Condition label": "Condition label",
@@ -247,12 +247,11 @@
247
247
  "Will be executed in the background as a queued task.": "Wird im Hintergrund als Aufgabe in der Warteschlange ausgeführt.",
248
248
  "Workflow": "Workflow",
249
249
  "Workflow executed, the result status is <1>{{statusText}}</1><2>View the execution</2>": "Workflow ausgeführt, der Ergebnisstatus ist <1>{{statusText}}</1><2>Ausführung anzeigen</2>",
250
- "Workflow is not exists": "Workflow is not exists",
250
+ "Workflow of execution is not existed": "Workflow of execution is not existed",
251
251
  "Workflow tasks": "Workflow tasks",
252
252
  "Workflow todos": "Workflow-Aufgaben",
253
253
  "Workflow will be triggered before deleting succeeded (only supports pre-action event in local mode).": "Workflow wird vor erfolgreichem Löschen ausgelöst (unterstützt nur Ereignis vor der Aktion im lokalen Modus).",
254
254
  "Workflow will be triggered directly once the button clicked, without data saving. Only supports to be bound with \"Custom action event\".": "Workflow wird direkt ausgelöst, sobald der Button geklickt wird, ohne Datenspeicherung. Unterstützt nur die Bindung an \"Benutzerdefiniertes Aktionsereignis\".",
255
255
  "Workflow with unknown type will cause error. Please delete it or check plugin which provide this type.": "Workflow mit unbekanntem Typ verursacht Fehler. Bitte löschen Sie ihn oder überprüfen Sie das Plugin, das diesen Typ bereitstellt.",
256
- "Yes": "Yes",
257
- "concat": "verketten"
256
+ "Yes": "Yes"
258
257
  }
@@ -56,7 +56,7 @@
56
56
  "Collection event": "Collection event",
57
57
  "Collection operations": "Collection operations",
58
58
  "Completed": "Completed",
59
- "Concat": "Concat",
59
+ "Concatenate": "Concatenate",
60
60
  "Condition": "Condition",
61
61
  "Condition expression": "Condition expression",
62
62
  "Condition label": "Condition label",
@@ -152,6 +152,7 @@
152
152
  "Node type": "Node type",
153
153
  "Node with unknown type will cause error. Please delete it or check plugin which provide this type.": "Node with unknown type will cause error. Please delete it or check plugin which provide this type.",
154
154
  "Null": "Null",
155
+ "Not found": "Not found",
155
156
  "Off": "Off",
156
157
  "On": "On",
157
158
  "On going": "On going",
@@ -160,6 +161,8 @@
160
161
  "Operations": "Operations",
161
162
  "Operator": "Operator",
162
163
  "Otherwise": "Otherwise",
164
+ "Output": "Output",
165
+ "Output value": "Output value",
163
166
  "Pending": "Pending",
164
167
  "Please add at least one condition": "Please add at least one condition",
165
168
  "Please select collection first": "Please select collection first",
@@ -185,6 +188,7 @@
185
188
  "Select context": "Select context",
186
189
  "Select users": "Select users",
187
190
  "Select workflow": "Select workflow",
191
+ "Set output data of this workflow. When this one is executed as a subflow, the output could be used as variables in downstream nodes of super workflow. You can also use this node in an AI employee workflow, to define what to output. If this node is added multiple times, the value of the last executed node prevails.": "Set output data of this workflow. When this one is executed as a subflow, the output could be used as variables in downstream nodes of super workflow. You can also use this node in an AI employee workflow, to define what to output. If this node is added multiple times, the value of the last executed node prevails.",
188
192
  "Single record": "Single record",
189
193
  "Some node meets error.": "Some node meets error.",
190
194
  "Started and executing, maybe waiting for an async callback (manual, delay etc.).": "Started and executing, maybe waiting for an async callback (manual, delay etc.).",
@@ -250,12 +254,11 @@
250
254
  "Will be executed in the background as a queued task.": "Will be executed in the background as a queued task.",
251
255
  "Workflow": "Workflow",
252
256
  "Workflow executed, the result status is <1>{{statusText}}</1><2>View the execution</2>": "Workflow executed, the result status is <1>{{statusText}}</1><2>View the execution</2>",
253
- "Workflow is not exists": "Workflow is not exists",
257
+ "Workflow of execution is not existed": "Workflow of execution is not existed",
254
258
  "Workflow tasks": "Workflow tasks",
255
259
  "Workflow todos": "Workflow todos",
256
260
  "Workflow will be triggered before deleting succeeded (only supports pre-action event in local mode).": "Workflow will be triggered before deleting succeeded (only supports pre-action event in local mode).",
257
261
  "Workflow will be triggered directly once the button clicked, without data saving. Only supports to be bound with \"Custom action event\".": "Workflow will be triggered directly once the button clicked, without data saving. Only supports to be bound with \"Custom action event\".",
258
262
  "Workflow with unknown type will cause error. Please delete it or check plugin which provide this type.": "Workflow with unknown type will cause error. Please delete it or check plugin which provide this type.",
259
- "Yes": "Yes",
260
- "concat": "concat"
263
+ "Yes": "Yes"
261
264
  }
@@ -54,7 +54,7 @@
54
54
  "Collection event": "Evento de recogida",
55
55
  "Collection operations": "Operaciones de recogida",
56
56
  "Completed": "Completed",
57
- "Concat": "Concat",
57
+ "Concatenate": "Concatenate",
58
58
  "Condition": "Condición",
59
59
  "Condition expression": "Condition expression",
60
60
  "Condition label": "Condition label",
@@ -247,12 +247,11 @@
247
247
  "Will be executed in the background as a queued task.": "Will be executed in the background as a queued task.",
248
248
  "Workflow": "Flujo de trabajo",
249
249
  "Workflow executed, the result status is <1>{{statusText}}</1><2>View the execution</2>": "Workflow executed, the result status is <1>{{statusText}}</1><2>View the execution</2>",
250
- "Workflow is not exists": "Workflow is not exists",
250
+ "Workflow of execution is not existed": "Workflow of execution is not existed",
251
251
  "Workflow tasks": "Workflow tasks",
252
252
  "Workflow todos": "Workflow todos",
253
253
  "Workflow will be triggered before deleting succeeded (only supports pre-action event in local mode).": "Workflow will be triggered before deleting succeeded (only supports pre-action event in local mode).",
254
254
  "Workflow will be triggered directly once the button clicked, without data saving. Only supports to be bound with \"Custom action event\".": "Workflow will be triggered directly once the button clicked, without data saving. Only supports to be bound with \"Custom action event\".",
255
255
  "Workflow with unknown type will cause error. Please delete it or check plugin which provide this type.": "Workflow with unknown type will cause error. Please delete it or check plugin which provide this type.",
256
- "Yes": "Yes",
257
- "concat": "concat"
256
+ "Yes": "Yes"
258
257
  }
@@ -54,7 +54,7 @@
54
54
  "Collection event": "Événement de collection",
55
55
  "Collection operations": "Opérations sur la collection",
56
56
  "Completed": "Completed",
57
- "Concat": "Concat",
57
+ "Concatenate": "Concatenate",
58
58
  "Condition": "Condition",
59
59
  "Condition expression": "Condition expression",
60
60
  "Condition label": "Condition label",
@@ -247,12 +247,11 @@
247
247
  "Will be executed in the background as a queued task.": "Will be executed in the background as a queued task.",
248
248
  "Workflow": "Workflow",
249
249
  "Workflow executed, the result status is <1>{{statusText}}</1><2>View the execution</2>": "Workflow executed, the result status is <1>{{statusText}}</1><2>View the execution</2>",
250
- "Workflow is not exists": "Workflow is not exists",
250
+ "Workflow of execution is not existed": "Workflow of execution is not existed",
251
251
  "Workflow tasks": "Workflow tasks",
252
252
  "Workflow todos": "Workflow todos",
253
253
  "Workflow will be triggered before deleting succeeded (only supports pre-action event in local mode).": "Workflow will be triggered before deleting succeeded (only supports pre-action event in local mode).",
254
254
  "Workflow will be triggered directly once the button clicked, without data saving. Only supports to be bound with \"Custom action event\".": "Workflow will be triggered directly once the button clicked, without data saving. Only supports to be bound with \"Custom action event\".",
255
255
  "Workflow with unknown type will cause error. Please delete it or check plugin which provide this type.": "Workflow with unknown type will cause error. Please delete it or check plugin which provide this type.",
256
- "Yes": "Yes",
257
- "concat": "concat"
256
+ "Yes": "Yes"
258
257
  }
@@ -54,7 +54,7 @@
54
54
  "Collection event": "Evento raccolta",
55
55
  "Collection operations": "Operazioni raccolta",
56
56
  "Completed": "Completato",
57
- "Concat": "Concat",
57
+ "Concatenate": "concatena",
58
58
  "Condition": "Condizione",
59
59
  "Condition expression": "Espressione di condizione",
60
60
  "Condition label": "Condition label",
@@ -247,12 +247,11 @@
247
247
  "Will be executed in the background as a queued task.": "Verrà eseguito in background come attività in coda.",
248
248
  "Workflow": "Workflow",
249
249
  "Workflow executed, the result status is <1>{{statusText}}</1><2>View the execution</2>": "Workflow eseguito, lo stato del risultato è <1>{{statusText}}</1><2>Visualizza l'esecuzione</2>",
250
- "Workflow is not exists": "Workflow is not exists",
250
+ "Workflow of execution is not existed": "Workflow of execution is not existed",
251
251
  "Workflow tasks": "Workflow tasks",
252
252
  "Workflow todos": "Da fare",
253
253
  "Workflow will be triggered before deleting succeeded (only supports pre-action event in local mode).": "Il workflow verrà attivato prima dell'eliminazione riuscita (supporta solo l'evento pre-azione in modalità locale).",
254
254
  "Workflow will be triggered directly once the button clicked, without data saving. Only supports to be bound with \"Custom action event\".": "Il workflow verrà attivato direttamente una volta cliccato il pulsante, senza salvataggio dei dati. Supporta solo il collegamento con \"evento azione personalizzata\".",
255
255
  "Workflow with unknown type will cause error. Please delete it or check plugin which provide this type.": "Un workflow con tipo sconosciuto causerà un errore. Si prega di eliminarlo o controllare il plugin che fornisce questo tipo.",
256
- "Yes": "Yes",
257
- "concat": "concatena"
256
+ "Yes": "Yes"
258
257
  }
@@ -54,7 +54,7 @@
54
54
  "Collection event": "コレクションイベント",
55
55
  "Collection operations": "フィールド操作",
56
56
  "Completed": "完了",
57
- "Concat": "Concat",
57
+ "Concatenate": "連結",
58
58
  "Condition": "条件",
59
59
  "Condition expression": "条件式",
60
60
  "Condition label": "Condition label",
@@ -249,15 +249,12 @@
249
249
  "Will be executed in the background as a queued task.": "キュータスクとしてバックグラウンドで実行されます。",
250
250
  "Workflow": "ワークフロー",
251
251
  "Workflow executed, the result status is <1>{{statusText}}</1><2>View the execution</2>": "ワークフローが実行されました。結果ステータス: <1>{{statusText}}</1><2>実行詳細を表示</2>",
252
- "Workflow is not exists": "Workflow is not exists",
252
+ "Workflow of execution is not existed": "Workflow of execution is not existed",
253
253
  "Workflow tasks": "Workflow tasks",
254
254
  "Workflow todos": "ワークフロー対応事項",
255
255
  "Workflow will be triggered before deleting succeeded (only supports pre-action event in local mode).": "削除が成功する前にワークフローがトリガーされます(ローカルモードではアクション前イベントのみサポート)。",
256
256
  "Workflow will be triggered before or after submitting succeeded based on workflow type (supports pre/post action event in local mode, and approval event).": "ワークフローは、送信が成功する前または後に、ワークフローの種類に基づいてトリガーされます(ローカルモードでのアクション前後のイベントと承認イベントをサポート)。",
257
257
  "Workflow will be triggered directly once the button clicked, without data saving. Only supports to be bound with \"Custom action event\".": "ボタンをクリックするとデータを保存せずにワークフローが直接トリガーされます。「カスタムアクションイベント」にのみバインドできます。",
258
258
  "Workflow with unknown type will cause error. Please delete it or check plugin which provide this type.": "不明なタイプのワークフローはエラーを引き起こします。このタイプを提供するプラグインを削除するか確認してください。",
259
- "Yes": "Yes",
260
- "concat": "連結",
261
- "false": "偽",
262
- "true": "真"
259
+ "Yes": "Yes"
263
260
  }
@@ -59,7 +59,7 @@
59
59
  "Collection event": "컬렉션 이벤트",
60
60
  "Collection operations": "컬렉션 작업",
61
61
  "Completed": "완료됨",
62
- "Concat": "Concat",
62
+ "Concatenate": "연결",
63
63
  "Condition": "조건",
64
64
  "Condition expression": "조건식",
65
65
  "Condition label": "Condition label",
@@ -265,7 +265,7 @@
265
265
  "Will be executed in the background as a queued task.": "백그라운드에서 대기 작업으로 실행됩니다.",
266
266
  "Workflow": "워크플로우",
267
267
  "Workflow executed, the result status is <1>{{statusText}}</1><2>View the execution</2>": "워크플로우가 실행되었습니다. 결과 상태는 <1>{{statusText}}</1><2>실행 보기</2>",
268
- "Workflow is not exists": "Workflow is not exists",
268
+ "Workflow of execution is not existed": "Workflow of execution is not existed",
269
269
  "Workflow tasks": "Workflow tasks",
270
270
  "Workflow todos": "워크플로우 할 일",
271
271
  "Workflow will be triggered after saving succeeded.": "저장 성공 후 워크플로우가 트리거됩니다.",
@@ -274,6 +274,5 @@
274
274
  "Workflow will be triggered directly once the button clicked, without data saving. Only supports to be bound with \"Custom action event\".": "버튼 클릭 시 데이터 저장 없이 워크플로우가 바로 트리거됩니다. \"Custom action event\"에만 바인딩할 수 있습니다.",
275
275
  "Workflow will be triggered directly once the button is clicked, without data saving.": "버튼 클릭 시 데이터 저장 없이 워크플로우가 바로 트리거됩니다.",
276
276
  "Workflow with unknown type will cause error. Please delete it or check plugin which provide this type.": "알 수 없는 유형의 워크플로우는 오류를 유발합니다. 삭제하거나 해당 플러그인을 확인하세요.",
277
- "Yes": "Yes",
278
- "concat": "연결"
277
+ "Yes": "Yes"
279
278
  }
@@ -54,7 +54,7 @@
54
54
  "Collection event": "Collection event",
55
55
  "Collection operations": "Collection operations",
56
56
  "Completed": "Completed",
57
- "Concat": "Concat",
57
+ "Concatenate": "Concatenate",
58
58
  "Condition": "Voorwaarde",
59
59
  "Condition expression": "Condition expression",
60
60
  "Condition label": "Condition label",
@@ -247,12 +247,11 @@
247
247
  "Will be executed in the background as a queued task.": "Will be executed in the background as a queued task.",
248
248
  "Workflow": "Workflow",
249
249
  "Workflow executed, the result status is <1>{{statusText}}</1><2>View the execution</2>": "Workflow executed, the result status is <1>{{statusText}}</1><2>View the execution</2>",
250
- "Workflow is not exists": "Workflow is not exists",
250
+ "Workflow of execution is not existed": "Workflow of execution is not existed",
251
251
  "Workflow tasks": "Workflow tasks",
252
252
  "Workflow todos": "Workflow todos",
253
253
  "Workflow will be triggered before deleting succeeded (only supports pre-action event in local mode).": "Workflow will be triggered before deleting succeeded (only supports pre-action event in local mode).",
254
254
  "Workflow will be triggered directly once the button clicked, without data saving. Only supports to be bound with \"Custom action event\".": "Workflow will be triggered directly once the button clicked, without data saving. Only supports to be bound with \"Custom action event\".",
255
255
  "Workflow with unknown type will cause error. Please delete it or check plugin which provide this type.": "Workflow with unknown type will cause error. Please delete it or check plugin which provide this type.",
256
- "Yes": "Yes",
257
- "concat": "concat"
256
+ "Yes": "Yes"
258
257
  }
@@ -54,7 +54,7 @@
54
54
  "Collection event": "Evento da coleção",
55
55
  "Collection operations": "Operações de coleção",
56
56
  "Completed": "Completed",
57
- "Concat": "Concat",
57
+ "Concatenate": "Concatenar",
58
58
  "Condition": "Condição",
59
59
  "Condition expression": "Condition expression",
60
60
  "Condition label": "Condition label",
@@ -247,12 +247,11 @@
247
247
  "Will be executed in the background as a queued task.": "Will be executed in the background as a queued task.",
248
248
  "Workflow": "Fluxo de trabalho",
249
249
  "Workflow executed, the result status is <1>{{statusText}}</1><2>View the execution</2>": "Workflow executed, the result status is <1>{{statusText}}</1><2>View the execution</2>",
250
- "Workflow is not exists": "Workflow is not exists",
250
+ "Workflow of execution is not existed": "Workflow of execution is not existed",
251
251
  "Workflow tasks": "Workflow tasks",
252
252
  "Workflow todos": "Workflow todos",
253
253
  "Workflow will be triggered before deleting succeeded (only supports pre-action event in local mode).": "Workflow will be triggered before deleting succeeded (only supports pre-action event in local mode).",
254
254
  "Workflow will be triggered directly once the button clicked, without data saving. Only supports to be bound with \"Custom action event\".": "Workflow will be triggered directly once the button clicked, without data saving. Only supports to be bound with \"Custom action event\".",
255
255
  "Workflow with unknown type will cause error. Please delete it or check plugin which provide this type.": "Workflow with unknown type will cause error. Please delete it or check plugin which provide this type.",
256
- "Yes": "Yes",
257
- "concat": "concatenar"
256
+ "Yes": "Yes"
258
257
  }
@@ -54,7 +54,7 @@
54
54
  "Collection event": "Событие коллекции",
55
55
  "Collection operations": "Операции с коллекцией",
56
56
  "Completed": "Завершено",
57
- "Concat": "Concat",
57
+ "Concatenate": "объединить",
58
58
  "Condition": "Условие",
59
59
  "Condition expression": "Выражение условия",
60
60
  "Condition label": "Condition label",
@@ -247,12 +247,11 @@
247
247
  "Will be executed in the background as a queued task.": "Будет выполнен в фоновом режиме как задача в очереди.",
248
248
  "Workflow": "Рабочий процесс",
249
249
  "Workflow executed, the result status is <1>{{statusText}}</1><2>View the execution</2>": "Рабочий процесс выполнен, статус результата: <1>{{statusText}}</1><2>Посмотреть выполнение</2>",
250
- "Workflow is not exists": "Workflow is not exists",
250
+ "Workflow of execution is not existed": "Workflow of execution is not existed",
251
251
  "Workflow tasks": "Workflow tasks",
252
252
  "Workflow todos": "Задачи рабочего процесса",
253
253
  "Workflow will be triggered before deleting succeeded (only supports pre-action event in local mode).": "Рабочий процесс будет запущен перед успешным удалением (поддерживается только событие \"предварительного действия\" в локальном режиме).",
254
254
  "Workflow will be triggered directly once the button clicked, without data saving. Only supports to be bound with \"Custom action event\".": "Рабочий процесс будет запущен сразу после нажатия кнопки без сохранения данных. Поддерживается только привязка к событию \"Пользовательское действие\".",
255
255
  "Workflow with unknown type will cause error. Please delete it or check plugin which provide this type.": "Рабочий процесс с неизвестным типом вызовет ошибку. Пожалуйста, удалите его или проверьте плагин, который предоставляет этот тип.",
256
- "Yes": "Yes",
257
- "concat": "объединить"
256
+ "Yes": "Yes"
258
257
  }
@@ -54,7 +54,7 @@
54
54
  "Collection event": "Koleksiyon etkinliği",
55
55
  "Collection operations": "Koleksiyon operasyonları",
56
56
  "Completed": "Completed",
57
- "Concat": "Concat",
57
+ "Concatenate": "Concatenate",
58
58
  "Condition": "Koşul",
59
59
  "Condition expression": "Condition expression",
60
60
  "Condition label": "Condition label",
@@ -247,12 +247,11 @@
247
247
  "Will be executed in the background as a queued task.": "Will be executed in the background as a queued task.",
248
248
  "Workflow": "İş Akışı",
249
249
  "Workflow executed, the result status is <1>{{statusText}}</1><2>View the execution</2>": "Workflow executed, the result status is <1>{{statusText}}</1><2>View the execution</2>",
250
- "Workflow is not exists": "Workflow is not exists",
250
+ "Workflow of execution is not existed": "Workflow of execution is not existed",
251
251
  "Workflow tasks": "Workflow tasks",
252
252
  "Workflow todos": "Workflow todos",
253
253
  "Workflow will be triggered before deleting succeeded (only supports pre-action event in local mode).": "Workflow will be triggered before deleting succeeded (only supports pre-action event in local mode).",
254
254
  "Workflow will be triggered directly once the button clicked, without data saving. Only supports to be bound with \"Custom action event\".": "Workflow will be triggered directly once the button clicked, without data saving. Only supports to be bound with \"Custom action event\".",
255
255
  "Workflow with unknown type will cause error. Please delete it or check plugin which provide this type.": "Workflow with unknown type will cause error. Please delete it or check plugin which provide this type.",
256
- "Yes": "Yes",
257
- "concat": "concat"
256
+ "Yes": "Yes"
258
257
  }
@@ -54,7 +54,7 @@
54
54
  "Collection event": "Collection event",
55
55
  "Collection operations": "Collection operations",
56
56
  "Completed": "Completed",
57
- "Concat": "Concat",
57
+ "Concatenate": "Concatenate",
58
58
  "Condition": "Condition",
59
59
  "Condition expression": "Condition expression",
60
60
  "Condition label": "Condition label",
@@ -247,12 +247,11 @@
247
247
  "Will be executed in the background as a queued task.": "Will be executed in the background as a queued task.",
248
248
  "Workflow": "Workflow",
249
249
  "Workflow executed, the result status is <1>{{statusText}}</1><2>View the execution</2>": "Workflow executed, the result status is <1>{{statusText}}</1><2>View the execution</2>",
250
- "Workflow is not exists": "Workflow is not exists",
250
+ "Workflow of execution is not existed": "Workflow of execution is not existed",
251
251
  "Workflow tasks": "Workflow tasks",
252
252
  "Workflow todos": "Workflow todos",
253
253
  "Workflow will be triggered before deleting succeeded (only supports pre-action event in local mode).": "Workflow will be triggered before deleting succeeded (only supports pre-action event in local mode).",
254
254
  "Workflow will be triggered directly once the button clicked, without data saving. Only supports to be bound with \"Custom action event\".": "Workflow will be triggered directly once the button clicked, without data saving. Only supports to be bound with \"Custom action event\".",
255
255
  "Workflow with unknown type will cause error. Please delete it or check plugin which provide this type.": "Workflow with unknown type will cause error. Please delete it or check plugin which provide this type.",
256
- "Yes": "Yes",
257
- "concat": "concat"
256
+ "Yes": "Yes"
258
257
  }