@nocobase/plugin-workflow 2.1.0-alpha.1 → 2.1.0-alpha.10

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 (74) hide show
  1. package/LICENSE +201 -661
  2. package/README.md +79 -10
  3. package/dist/client/0e7da88f89e15485.js +10 -0
  4. package/dist/client/37560b46d530bcf9.js +10 -0
  5. package/dist/client/4464fed3a8411375.js +10 -0
  6. package/dist/client/973723cf75f1e4e9.js +10 -0
  7. package/dist/client/AddNodeContext.d.ts +1 -0
  8. package/dist/client/NodeClipboardContext.d.ts +11 -0
  9. package/dist/client/NodeDragContext.d.ts +11 -0
  10. package/dist/client/hooks/{useWorkflowFilterActionProps.d.ts → useResourceFilterActionProps.d.ts} +1 -1
  11. package/dist/client/index.d.ts +3 -0
  12. package/dist/client/index.js +1 -1
  13. package/dist/client/models/NodeDetailsGridModel.d.ts +13 -0
  14. package/dist/client/models/NodeDetailsModel.d.ts +34 -0
  15. package/dist/client/models/NodeValueModel.d.ts +15 -0
  16. package/dist/client/models/TaskCardCommonItemModel.d.ts +14 -0
  17. package/dist/client/models/index.d.ts +11 -0
  18. package/dist/client/nodeVariableUtils.d.ts +14 -0
  19. package/dist/client/nodes/calculation.d.ts +7 -0
  20. package/dist/client/nodes/create.d.ts +13 -0
  21. package/dist/client/nodes/index.d.ts +24 -0
  22. package/dist/client/nodes/output.d.ts +53 -0
  23. package/dist/client/nodes/query.d.ts +13 -0
  24. package/dist/client/nodes/update.d.ts +1 -0
  25. package/dist/client/schemas/executions.d.ts +41 -22
  26. package/dist/client/style.d.ts +4 -0
  27. package/dist/client/triggers/collection.d.ts +13 -0
  28. package/dist/client/triggers/index.d.ts +10 -0
  29. package/dist/client/triggers/schedule/index.d.ts +13 -0
  30. package/dist/common/collections/executions.d.ts +22 -22
  31. package/dist/common/collections/executions.js +12 -0
  32. package/dist/common/collections/jobs.js +4 -0
  33. package/dist/common/collections/workflows.d.ts +22 -9
  34. package/dist/common/collections/workflows.js +9 -1
  35. package/dist/externalVersion.js +12 -12
  36. package/dist/locale/de-DE.json +10 -3
  37. package/dist/locale/en-US.json +22 -3
  38. package/dist/locale/es-ES.json +10 -3
  39. package/dist/locale/fr-FR.json +10 -3
  40. package/dist/locale/hu-HU.json +10 -2
  41. package/dist/locale/id-ID.json +10 -2
  42. package/dist/locale/it-IT.json +10 -3
  43. package/dist/locale/ja-JP.json +10 -5
  44. package/dist/locale/ko-KR.json +10 -3
  45. package/dist/locale/nl-NL.json +10 -3
  46. package/dist/locale/pt-BR.json +10 -3
  47. package/dist/locale/ru-RU.json +10 -3
  48. package/dist/locale/tr-TR.json +10 -3
  49. package/dist/locale/uk-UA.json +10 -3
  50. package/dist/locale/vi-VN.json +10 -2
  51. package/dist/locale/zh-CN.json +27 -5
  52. package/dist/locale/zh-TW.json +10 -3
  53. package/dist/node_modules/cron-parser/package.json +1 -1
  54. package/dist/node_modules/lru-cache/package.json +1 -1
  55. package/dist/node_modules/nodejs-snowflake/package.json +1 -1
  56. package/dist/server/Dispatcher.d.ts +3 -2
  57. package/dist/server/Dispatcher.js +76 -62
  58. package/dist/server/Plugin.js +6 -1
  59. package/dist/server/Processor.d.ts +9 -0
  60. package/dist/server/Processor.js +6 -1
  61. package/dist/server/actions/index.js +2 -0
  62. package/dist/server/actions/nodes.d.ts +2 -0
  63. package/dist/server/actions/nodes.js +281 -2
  64. package/dist/server/instructions/ConditionInstruction.js +4 -1
  65. package/dist/server/instructions/OutputInstruction.d.ts +21 -0
  66. package/dist/server/instructions/OutputInstruction.js +54 -0
  67. package/dist/server/repositories/WorkflowRepository.js +2 -1
  68. package/dist/swagger/index.d.ts +814 -62
  69. package/dist/swagger/index.js +975 -205
  70. package/package.json +3 -3
  71. package/dist/client/27bd65abee87cafa.js +0 -10
  72. package/dist/client/80d4cd8911e03c27.js +0 -10
  73. package/dist/client/bfc2a351589613e1.js +0 -10
  74. package/dist/client/e078314a62391f36.js +0 -10
@@ -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.1.0-alpha.1",
15
- "@nocobase/utils": "2.1.0-alpha.1",
14
+ "@nocobase/client": "2.1.0-alpha.10",
15
+ "@nocobase/utils": "2.1.0-alpha.10",
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.1.0-alpha.1",
24
- "@nocobase/plugin-mobile": "2.1.0-alpha.1",
23
+ "@nocobase/flow-engine": "2.1.0-alpha.10",
24
+ "@nocobase/plugin-mobile": "2.1.0-alpha.10",
25
25
  "sequelize": "6.35.2",
26
- "@nocobase/server": "2.1.0-alpha.1",
27
- "@nocobase/database": "2.1.0-alpha.1",
28
- "@nocobase/data-source-manager": "2.1.0-alpha.1",
29
- "@nocobase/logger": "2.1.0-alpha.1",
30
- "@nocobase/evaluators": "2.1.0-alpha.1",
26
+ "@nocobase/server": "2.1.0-alpha.10",
27
+ "@nocobase/database": "2.1.0-alpha.10",
28
+ "@nocobase/data-source-manager": "2.1.0-alpha.10",
29
+ "@nocobase/logger": "2.1.0-alpha.10",
30
+ "@nocobase/evaluators": "2.1.0-alpha.10",
31
31
  "@formily/antd-v5": "1.2.3",
32
32
  "@formily/reactive": "2.3.7",
33
- "@nocobase/actions": "2.1.0-alpha.1",
33
+ "@nocobase/actions": "2.1.0-alpha.10",
34
34
  "dayjs": "1.11.13",
35
- "@nocobase/plugin-workflow-test": "2.1.0-alpha.1",
36
- "@nocobase/test": "2.1.0-alpha.1"
35
+ "@nocobase/plugin-workflow-test": "2.1.0-alpha.10",
36
+ "@nocobase/test": "2.1.0-alpha.10"
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,19 @@
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
256
  "Yes": "Yes",
257
- "concat": "verketten"
257
+ "Failed to move node": "Knoten konnte nicht verschoben werden",
258
+ "Confirm move": "Verschiebung bestätigen",
259
+ "Moving this node may remove variable references.": "Das Verschieben dieses Knotens kann Variablenreferenzen entfernen.",
260
+ "Impacted current node variables": "Vom aktuellen Knoten referenzierte Variablen",
261
+ "Impacted dependent node variables": "Knoten, die Variablen des aktuellen Knotens referenzieren",
262
+ "Keep variable references": "Variablenreferenzen beibehalten",
263
+ "Keeping variable references requires manual adjustment, otherwise workflow may fail.": "Das Beibehalten von Variablenreferenzen erfordert eine manuelle Anpassung, andernfalls kann der Workflow fehlschlagen.",
264
+ "Failed to update node variables": "Aktualisierung der Knotenvariablen fehlgeschlagen"
258
265
  }
@@ -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,27 @@
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
263
  "Yes": "Yes",
260
- "concat": "concat"
264
+ "Failed to move node": "Failed to move node",
265
+ "Confirm move": "Confirm move",
266
+ "Moving this node may remove variable references.": "Moving this node may remove variable references.",
267
+ "Impacted current node variables": "Variables referenced by current node",
268
+ "Impacted dependent node variables": "Nodes referencing current node variables",
269
+ "Keep variable references": "Keep variable references, I will fix manually",
270
+ "Keeping variable references requires manual adjustment, otherwise workflow may fail.": "Keeping variable references requires manual adjustment, otherwise workflow may fail.",
271
+ "Failed to update node variables": "Failed to update node variables",
272
+ "Copy": "Copy",
273
+ "Cancel copy": "Cancel copy",
274
+ "Paste": "Paste",
275
+ "Copied node": "Copied node",
276
+ "Click a paste button to place": "Click a paste button to place",
277
+ "Confirm paste": "Confirm paste",
278
+ "This action will remove invalid variable references, otherwise the workflow cannot run correctly.": "This action will remove invalid variable references, otherwise the workflow cannot run correctly.",
279
+ "Failed to paste node": "Failed to paste node"
261
280
  }
@@ -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,19 @@
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
256
  "Yes": "Yes",
257
- "concat": "concat"
257
+ "Failed to move node": "No se pudo mover el nodo",
258
+ "Confirm move": "Confirmar movimiento",
259
+ "Moving this node may remove variable references.": "Mover este nodo puede eliminar referencias de variables.",
260
+ "Impacted current node variables": "Variables referenciadas por el nodo actual",
261
+ "Impacted dependent node variables": "Nodos que referencian las variables del nodo actual",
262
+ "Keep variable references": "Mantener referencias de variables",
263
+ "Keeping variable references requires manual adjustment, otherwise workflow may fail.": "Mantener las referencias de variables requiere un ajuste manual; de lo contrario, el flujo de trabajo puede fallar.",
264
+ "Failed to update node variables": "No se pudieron actualizar las variables del nodo"
258
265
  }
@@ -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,19 @@
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
256
  "Yes": "Yes",
257
- "concat": "concat"
257
+ "Failed to move node": "Échec du déplacement du nœud",
258
+ "Confirm move": "Confirmer le déplacement",
259
+ "Moving this node may remove variable references.": "Déplacer ce nœud peut supprimer des références de variables.",
260
+ "Impacted current node variables": "Variables référencées par le nœud actuel",
261
+ "Impacted dependent node variables": "Nœuds qui référencent les variables du nœud actuel",
262
+ "Keep variable references": "Conserver les références de variables",
263
+ "Keeping variable references requires manual adjustment, otherwise workflow may fail.": "Conserver les références de variables nécessite un ajustement manuel, sinon le workflow peut échouer.",
264
+ "Failed to update node variables": "Échec de la mise à jour des variables du nœud"
258
265
  }
@@ -254,5 +254,13 @@
254
254
  "Workflow will be triggered directly once the button clicked, without data saving. Only supports to be bound with \"Custom action event\".": "A munkafolyamat közvetlenül aktiválódik a gomb megnyomásakor, adatmentés nélkül. Csak az \"Egyéni művelet esemény\"-hez való kötést támogatja.",
255
255
  "Workflow with unknown type will cause error. Please delete it or check plugin which provide this type.": "Az ismeretlen típusú munkafolyamat hibát okoz. Kérjük, törölje vagy ellenőrizze a bővítményt, amely ezt a típust biztosítja.",
256
256
  "Yes": "Yes",
257
- "concat": "összefűzés"
258
- }
257
+ "concat": "összefűzés",
258
+ "Failed to move node": "A csomópont áthelyezése sikertelen",
259
+ "Confirm move": "Áthelyezés megerősítése",
260
+ "Moving this node may remove variable references.": "A csomópont áthelyezése eltávolíthatja a változóhivatkozásokat.",
261
+ "Impacted current node variables": "A jelenlegi csomópont által hivatkozott változók",
262
+ "Impacted dependent node variables": "A jelenlegi csomópont változóira hivatkozó csomópontok",
263
+ "Keep variable references": "Változóhivatkozások megtartása",
264
+ "Keeping variable references requires manual adjustment, otherwise workflow may fail.": "A változóhivatkozások megtartása kézi beállítást igényel, különben a munkafolyamat sikertelen lehet.",
265
+ "Failed to update node variables": "A csomópont változóinak frissítése sikertelen"
266
+ }
@@ -254,5 +254,13 @@
254
254
  "Workflow will be triggered directly once the button clicked, without data saving. Only supports to be bound with \"Custom action event\".": "Alur kerja akan dipicu langsung setelah tombol diklik, tanpa menyimpan data. Hanya mendukung untuk diikat dengan \"Peristiwa tindakan kustom\".",
255
255
  "Workflow with unknown type will cause error. Please delete it or check plugin which provide this type.": "Alur kerja dengan tipe tidak dikenal akan menyebabkan kesalahan. Harap hapus atau periksa plugin yang menyediakan tipe ini.",
256
256
  "Yes": "Yes",
257
- "concat": "gabungkan"
258
- }
257
+ "concat": "gabungkan",
258
+ "Failed to move node": "Gagal memindahkan node",
259
+ "Confirm move": "Konfirmasi pemindahan",
260
+ "Moving this node may remove variable references.": "Memindahkan node ini dapat menghapus referensi variabel.",
261
+ "Impacted current node variables": "Variabel yang dirujuk oleh node saat ini",
262
+ "Impacted dependent node variables": "Node yang merujuk variabel node saat ini",
263
+ "Keep variable references": "Pertahankan referensi variabel",
264
+ "Keeping variable references requires manual adjustment, otherwise workflow may fail.": "Mempertahankan referensi variabel memerlukan penyesuaian manual, jika tidak alur kerja dapat gagal.",
265
+ "Failed to update node variables": "Gagal memperbarui variabel node"
266
+ }
@@ -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,19 @@
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
256
  "Yes": "Yes",
257
- "concat": "concatena"
257
+ "Failed to move node": "Impossibile spostare il nodo",
258
+ "Confirm move": "Conferma spostamento",
259
+ "Moving this node may remove variable references.": "Spostare questo nodo può rimuovere i riferimenti alle variabili.",
260
+ "Impacted current node variables": "Variabili referenziate dal nodo corrente",
261
+ "Impacted dependent node variables": "Nodi che referenziano le variabili del nodo corrente",
262
+ "Keep variable references": "Mantieni i riferimenti alle variabili",
263
+ "Keeping variable references requires manual adjustment, otherwise workflow may fail.": "Mantenere i riferimenti alle variabili richiede una regolazione manuale, altrimenti il workflow potrebbe fallire.",
264
+ "Failed to update node variables": "Impossibile aggiornare le variabili del nodo"
258
265
  }
@@ -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,7 +249,7 @@
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).": "削除が成功する前にワークフローがトリガーされます(ローカルモードではアクション前イベントのみサポート)。",
@@ -257,7 +257,12 @@
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
259
  "Yes": "Yes",
260
- "concat": "連結",
261
- "false": "",
262
- "true": ""
260
+ "Failed to move node": "ノードの移動に失敗しました",
261
+ "Confirm move": "移動の確認",
262
+ "Moving this node may remove variable references.": "このノードを移動すると変数参照が削除される可能性があります。",
263
+ "Impacted current node variables": "現在のノードが参照する変数",
264
+ "Impacted dependent node variables": "現在のノード変数を参照するノード",
265
+ "Keep variable references": "変数参照を保持する",
266
+ "Keeping variable references requires manual adjustment, otherwise workflow may fail.": "変数参照を保持する場合は手動調整が必要です。調整しないとワークフローが失敗する可能性があります。",
267
+ "Failed to update node variables": "ノード変数の更新に失敗しました"
263
268
  }
@@ -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.": "저장 성공 후 워크플로우가 트리거됩니다.",
@@ -275,5 +275,12 @@
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
277
  "Yes": "Yes",
278
- "concat": "연결"
278
+ "Failed to move node": "노드를 이동하지 못했습니다",
279
+ "Confirm move": "이동 확인",
280
+ "Moving this node may remove variable references.": "이 노드를 이동하면 변수 참조가 제거될 수 있습니다.",
281
+ "Impacted current node variables": "현재 노드가 참조하는 변수",
282
+ "Impacted dependent node variables": "현재 노드 변수를 참조하는 노드",
283
+ "Keep variable references": "변수 참조 유지",
284
+ "Keeping variable references requires manual adjustment, otherwise workflow may fail.": "변수 참조를 유지하려면 수동으로 조정해야 하며, 그렇지 않으면 워크플로가 실패할 수 있습니다.",
285
+ "Failed to update node variables": "노드 변수 업데이트에 실패했습니다"
279
286
  }
@@ -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,19 @@
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
256
  "Yes": "Yes",
257
- "concat": "concat"
257
+ "Failed to move node": "Verplaatsen van knooppunt mislukt",
258
+ "Confirm move": "Verplaatsing bevestigen",
259
+ "Moving this node may remove variable references.": "Het verplaatsen van dit knooppunt kan variabele verwijzingen verwijderen.",
260
+ "Impacted current node variables": "Variabelen waarnaar de huidige node verwijst",
261
+ "Impacted dependent node variables": "Nodes die naar variabelen van de huidige node verwijzen",
262
+ "Keep variable references": "Variabelverwijzingen behouden",
263
+ "Keeping variable references requires manual adjustment, otherwise workflow may fail.": "Het behouden van variabelverwijzingen vereist handmatige aanpassing, anders kan de workflow falen.",
264
+ "Failed to update node variables": "Bijwerken van knooppuntvariabelen mislukt"
258
265
  }
@@ -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,19 @@
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
256
  "Yes": "Yes",
257
- "concat": "concatenar"
257
+ "Failed to move node": "Falha ao mover o nó",
258
+ "Confirm move": "Confirmar movimentação",
259
+ "Moving this node may remove variable references.": "Mover este nó pode remover referências de variáveis.",
260
+ "Impacted current node variables": "Variáveis referenciadas pelo nó atual",
261
+ "Impacted dependent node variables": "Nós que referenciam as variáveis do nó atual",
262
+ "Keep variable references": "Manter referências de variáveis",
263
+ "Keeping variable references requires manual adjustment, otherwise workflow may fail.": "Manter referências de variáveis exige ajuste manual, caso contrário o workflow pode falhar.",
264
+ "Failed to update node variables": "Falha ao atualizar as variáveis do nó"
258
265
  }
@@ -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,19 @@
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
256
  "Yes": "Yes",
257
- "concat": "объединить"
257
+ "Failed to move node": "Не удалось переместить узел",
258
+ "Confirm move": "Подтвердить перемещение",
259
+ "Moving this node may remove variable references.": "Перемещение этого узла может удалить ссылки на переменные.",
260
+ "Impacted current node variables": "Переменные, на которые ссылается текущий узел",
261
+ "Impacted dependent node variables": "Узлы, которые ссылаются на переменные текущего узла",
262
+ "Keep variable references": "Сохранить ссылки на переменные",
263
+ "Keeping variable references requires manual adjustment, otherwise workflow may fail.": "Сохранение ссылок на переменные требует ручной настройки, иначе рабочий процесс может завершиться ошибкой.",
264
+ "Failed to update node variables": "Не удалось обновить переменные узла"
258
265
  }
@@ -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,19 @@
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
256
  "Yes": "Yes",
257
- "concat": "concat"
257
+ "Failed to move node": "Düğüm taşınamadı",
258
+ "Confirm move": "Taşımayı onayla",
259
+ "Moving this node may remove variable references.": "Bu düğümü taşımak değişken başvurularını kaldırabilir.",
260
+ "Impacted current node variables": "Mevcut düğümün başvurduğu değişkenler",
261
+ "Impacted dependent node variables": "Mevcut düğüm değişkenlerine başvuran düğümler",
262
+ "Keep variable references": "Değişken başvurularını koru",
263
+ "Keeping variable references requires manual adjustment, otherwise workflow may fail.": "Değişken başvurularını korumak manuel ayar gerektirir; aksi halde iş akışı başarısız olabilir.",
264
+ "Failed to update node variables": "Düğüm değişkenleri güncellenemedi"
258
265
  }
@@ -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,19 @@
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
256
  "Yes": "Yes",
257
- "concat": "concat"
257
+ "Failed to move node": "Не вдалося перемістити вузол",
258
+ "Confirm move": "Підтвердити переміщення",
259
+ "Moving this node may remove variable references.": "Переміщення цього вузла може видалити посилання на змінні.",
260
+ "Impacted current node variables": "Змінні, на які посилається поточний вузол",
261
+ "Impacted dependent node variables": "Вузли, які посилаються на змінні поточного вузла",
262
+ "Keep variable references": "Зберегти посилання на змінні",
263
+ "Keeping variable references requires manual adjustment, otherwise workflow may fail.": "Збереження посилань на змінні потребує ручного налаштування, інакше робочий процес може завершитися помилкою.",
264
+ "Failed to update node variables": "Не вдалося оновити змінні вузла"
258
265
  }
@@ -254,5 +254,13 @@
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
256
  "Yes": "Yes",
257
- "concat": "concat"
258
- }
257
+ "concat": "concat",
258
+ "Failed to move node": "Không thể di chuyển nút",
259
+ "Confirm move": "Xác nhận di chuyển",
260
+ "Moving this node may remove variable references.": "Di chuyển nút này có thể loại bỏ các tham chiếu biến.",
261
+ "Impacted current node variables": "Các biến mà nút hiện tại tham chiếu",
262
+ "Impacted dependent node variables": "Các nút tham chiếu đến biến của nút hiện tại",
263
+ "Keep variable references": "Giữ tham chiếu biến",
264
+ "Keeping variable references requires manual adjustment, otherwise workflow may fail.": "Giữ tham chiếu biến cần điều chỉnh thủ công, nếu không quy trình có thể lỗi.",
265
+ "Failed to update node variables": "Không thể cập nhật biến của nút"
266
+ }