@tachybase/module-workflow 1.3.24 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client/components/ColumnExecutedTime.d.ts +1 -0
- package/dist/client/components/ColumnShowEventSource.d.ts +1 -0
- package/dist/client/index.d.ts +2 -1
- package/dist/client/index.js +55 -54
- package/dist/client/locale/index.d.ts +1 -1
- package/dist/client/provider/EventSourceProvider.d.ts +7 -0
- package/dist/client/schemas/workflows.d.ts +8 -0
- package/dist/externalVersion.js +11 -11
- package/dist/locale/en-US.json +6 -0
- package/dist/locale/es-ES.json +7 -0
- package/dist/locale/fr-FR.json +7 -0
- package/dist/locale/ja-JP.json +7 -0
- package/dist/locale/ko_KR.json +7 -0
- package/dist/locale/pt-BR.json +7 -0
- package/dist/locale/ru-RU.json +7 -0
- package/dist/locale/tr-TR.json +7 -0
- package/dist/locale/zh-CN.json +10 -0
- package/dist/node_modules/@babel/core/lib/index.js +12 -12
- package/dist/node_modules/@babel/core/package.json +1 -1
- package/dist/node_modules/@babel/preset-env/lib/index.js +82 -82
- package/dist/node_modules/@babel/preset-env/package.json +1 -1
- package/dist/node_modules/@babel/preset-react/lib/index.js +12 -12
- package/dist/node_modules/@babel/preset-react/package.json +1 -1
- package/dist/node_modules/@babel/preset-typescript/lib/index.js +12 -12
- package/dist/node_modules/@babel/preset-typescript/package.json +1 -1
- package/dist/node_modules/cron-parser/package.json +1 -1
- package/dist/node_modules/form-data/package.json +1 -1
- package/dist/node_modules/jsonata/package.json +1 -1
- package/dist/node_modules/lru-cache/package.json +1 -1
- package/dist/node_modules/mime-types/package.json +1 -1
- package/dist/node_modules/qrcode/package.json +1 -1
- package/dist/server/actions/executions.js +2 -2
- package/dist/server/actions/workflows.js +25 -10
- package/dist/server/collections/1-users_jobs.js +1 -1
- package/dist/server/collections/executions.js +1 -1
- package/dist/server/collections/jobs.js +1 -1
- package/dist/server/collections/workflowCategories.js +4 -0
- package/dist/server/collections/workflows.js +6 -0
- package/dist/server/features/loop/LoopInstruction.d.ts +4 -0
- package/dist/server/features/loop/LoopInstruction.js +10 -2
- package/dist/server/features/request/RequestInstruction.js +7 -0
- package/dist/server/features/script/script.instruction.js +1 -1
- package/dist/server/features/trigger-instruction/TriggerInstruction.d.ts +1 -1
- package/dist/server/features/trigger-instruction/TriggerInstruction.js +45 -16
- package/dist/server/instructions/CreateInstruction.js +1 -1
- package/dist/server/instructions/UpdateInstruction.d.ts +4 -1
- package/dist/server/instructions/UpdateInstruction.js +6 -2
- package/dist/server/instructions/UpdateOrCreateInstruction.js +1 -1
- package/dist/server/migrations/20251104174604-add-sort-to-workflows.d.ts +6 -0
- package/dist/server/migrations/20251104174604-add-sort-to-workflows.js +88 -0
- package/package.json +13 -13
- /package/dist/client/{ExecutionContextProvider.d.ts → provider/ExecutionContextProvider.d.ts} +0 -0
- /package/dist/client/{ExecutionResourceProvider.d.ts → provider/ExecutionResourceProvider.d.ts} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const NAMESPACE = "workflow";
|
|
2
2
|
export declare function lang(key: string, options?: {}): string;
|
|
3
|
-
export declare function useTranslation(): import("react-i18next").UseTranslationResponse<[
|
|
3
|
+
export declare function useTranslation(): import("react-i18next").UseTranslationResponse<readonly ["workflow", "core"], undefined>;
|
|
4
4
|
export declare const tval: (key: string, opts?: {}) => string;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const EventSourceContext: import("react").Context<{
|
|
2
|
+
eventSourceList: any[];
|
|
3
|
+
}>;
|
|
4
|
+
export declare const EventSourceProvider: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export declare const useEventSourceContext: () => {
|
|
6
|
+
eventSourceList: any[];
|
|
7
|
+
};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { ISchema } from '@tachybase/schema';
|
|
2
3
|
export declare const collectionWorkflows: {
|
|
3
4
|
name: string;
|
|
@@ -76,6 +77,13 @@ export declare const collectionWorkflowCategories: {
|
|
|
76
77
|
}[];
|
|
77
78
|
};
|
|
78
79
|
export declare const workflowFieldset: Record<string, ISchema>;
|
|
80
|
+
export declare const useCreateFormBlockProps: () => {
|
|
81
|
+
form: any;
|
|
82
|
+
};
|
|
79
83
|
export declare const createWorkflow: ISchema;
|
|
80
84
|
export declare const updateWorkflow: ISchema;
|
|
85
|
+
export declare const WorkflowTabCardItem: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
86
|
+
export declare const TabTableBlockProvider: React.MemoExoticComponent<import("@tachybase/schema").ReactFC<{
|
|
87
|
+
params: any;
|
|
88
|
+
}>>;
|
|
81
89
|
export declare const workflowSchema: ISchema;
|
package/dist/externalVersion.js
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
module.exports = {
|
|
2
2
|
"react": "18.3.1",
|
|
3
|
-
"@tachybase/client": "1.
|
|
3
|
+
"@tachybase/client": "1.4.0",
|
|
4
4
|
"@ant-design/icons": "5.6.1",
|
|
5
5
|
"antd": "5.22.5",
|
|
6
6
|
"lodash": "4.17.21",
|
|
7
|
-
"@tego/client": "1.3.
|
|
8
|
-
"react-i18next": "
|
|
7
|
+
"@tego/client": "1.3.52",
|
|
8
|
+
"react-i18next": "16.2.1",
|
|
9
9
|
"react-router-dom": "6.28.1",
|
|
10
|
-
"@tachybase/schema": "1.3.
|
|
11
|
-
"@tego/server": "1.3.
|
|
10
|
+
"@tachybase/schema": "1.3.52",
|
|
11
|
+
"@tego/server": "1.3.52",
|
|
12
|
+
"dayjs": "1.11.13",
|
|
12
13
|
"@dnd-kit/core": "6.3.1",
|
|
13
|
-
"axios": "1.
|
|
14
|
+
"axios": "1.13.0",
|
|
14
15
|
"sequelize": "6.37.5",
|
|
15
|
-
"@tachybase/plugin-workflow-test": "1.
|
|
16
|
-
"@tachybase/test": "1.3.
|
|
17
|
-
"
|
|
18
|
-
"@tachybase/module-
|
|
19
|
-
"@tachybase/module-ui-schema": "1.3.24"
|
|
16
|
+
"@tachybase/plugin-workflow-test": "1.4.0",
|
|
17
|
+
"@tachybase/test": "1.3.52",
|
|
18
|
+
"@tachybase/module-error-handler": "1.4.0",
|
|
19
|
+
"@tachybase/module-ui-schema": "1.4.0"
|
|
20
20
|
};
|
package/dist/locale/en-US.json
CHANGED
|
@@ -136,12 +136,16 @@
|
|
|
136
136
|
"Everyone should pass": "Everyone should pass",
|
|
137
137
|
"Exactly at": "Exactly at",
|
|
138
138
|
"Execute a SQL statement in database": "Execute a SQL statement in database",
|
|
139
|
+
"Execute empty test": "Execute empty test",
|
|
140
|
+
"Execute ended": "Execute ended",
|
|
141
|
+
"Execute successfully": "Execute successfully",
|
|
139
142
|
"Executed": "Executed",
|
|
140
143
|
"Executed at": "Executed at",
|
|
141
144
|
"Execution history": "Execution history",
|
|
142
145
|
"Extended types": "Extended types",
|
|
143
146
|
"Fail and exit": "Fail and exit",
|
|
144
147
|
"Failed": "Failed",
|
|
148
|
+
"Failed to retry execution": "Failed to retry execution",
|
|
145
149
|
"False": "False",
|
|
146
150
|
"Field name existed in form": "Field name existed in form",
|
|
147
151
|
"Field to aggregate": "Field to aggregate",
|
|
@@ -250,6 +254,7 @@
|
|
|
250
254
|
"Separately": "Separately",
|
|
251
255
|
"Sequentially": "Sequentially",
|
|
252
256
|
"Show Notice Detail": "Show Notice Detail",
|
|
257
|
+
"Show execution history": "Show execution history",
|
|
253
258
|
"Start": "Start",
|
|
254
259
|
"Starts on": "Starts on",
|
|
255
260
|
"Status": "Status",
|
|
@@ -264,6 +269,7 @@
|
|
|
264
269
|
"Task node": "Task node",
|
|
265
270
|
"Terminate the process": "Terminate the process",
|
|
266
271
|
"Test": "Test",
|
|
272
|
+
"Test execution ended": "Test execution ended",
|
|
267
273
|
"Test workflow": "Test workflow",
|
|
268
274
|
"The Notified Person": "The Notified Person",
|
|
269
275
|
"The interface of show notice detail": "The interface of show notice detail",
|
package/dist/locale/es-ES.json
CHANGED
|
@@ -51,12 +51,16 @@
|
|
|
51
51
|
"Ends on": "Finaliza el",
|
|
52
52
|
"Every": "Cada",
|
|
53
53
|
"Exactly at": "Exactamente en",
|
|
54
|
+
"Execute empty test": "Ejecutar prueba vacía",
|
|
55
|
+
"Execute ended": "Ejecución terminada",
|
|
56
|
+
"Execute successfully": "Ejecutado correctamente",
|
|
54
57
|
"Executed": "Ejecutado",
|
|
55
58
|
"Executed at": "Ejecutado en",
|
|
56
59
|
"Execution history": "Historial de ejecución",
|
|
57
60
|
"Extended types": "Tipos ampliados",
|
|
58
61
|
"Fail and exit": "Falla y sale",
|
|
59
62
|
"Failed": "Fallido",
|
|
63
|
+
"Failed to retry execution": "Error al reintentar la ejecución",
|
|
60
64
|
"False": "Falso",
|
|
61
65
|
"Fields that are not assigned a value will be set to the default value, and those that do not have a default value are set to null.": "Los campos a los que no se les asigne un valor se establecerán en el valor predeterminado, y los que no tengan un valor predeterminado se establecerán en nulo.",
|
|
62
66
|
"Format": "Formato",
|
|
@@ -95,15 +99,18 @@
|
|
|
95
99
|
"Queueing": "Puesta en cola",
|
|
96
100
|
"Repeat limit": "Límite de repetición",
|
|
97
101
|
"Repeat mode": "Modo repetición",
|
|
102
|
+
"Retry": "Reintentar",
|
|
98
103
|
"Schedule event": "Programar evento",
|
|
99
104
|
"Seconds": "Segundos",
|
|
100
105
|
"Select status": "Seleccionar estado",
|
|
106
|
+
"Show execution history": "Mostrar historial de ejecución",
|
|
101
107
|
"Starts on": "Comienza el",
|
|
102
108
|
"Status": "Estado",
|
|
103
109
|
"String": "Cadena",
|
|
104
110
|
"String operation": "Operación de Cadena",
|
|
105
111
|
"Succeed and continue": "Éxito y continuar",
|
|
106
112
|
"Succeeded": "Logrado",
|
|
113
|
+
"Test execution ended": "Prueba de ejecución terminada",
|
|
107
114
|
"The result of this node has been referenced by other nodes ({{nodes}}), please remove the usage before deleting.": "El resultado de este nodo ha sido referenciado por otros nodos ({{nodes}}",
|
|
108
115
|
"This node contains branches, deleting will also be preformed to them, are you sure?": "Este nodo contiene ramas, el borrado también se preformará a ellas, ¿estás seguro?",
|
|
109
116
|
"Timeout config": "Tiempo de espera config",
|
package/dist/locale/fr-FR.json
CHANGED
|
@@ -51,12 +51,16 @@
|
|
|
51
51
|
"Ends on": "Se termine le",
|
|
52
52
|
"Every": "Chaque",
|
|
53
53
|
"Exactly at": "Exactement à",
|
|
54
|
+
"Execute empty test": "Exécuter une test vide",
|
|
55
|
+
"Execute ended": "Exécution terminée",
|
|
56
|
+
"Execute successfully": "Exécuté avec succès",
|
|
54
57
|
"Executed": "Exécuté",
|
|
55
58
|
"Executed at": "Exécuté à",
|
|
56
59
|
"Execution history": "Historique d'exécution",
|
|
57
60
|
"Extended types": "Types étendus",
|
|
58
61
|
"Fail and exit": "Échouer et quitter",
|
|
59
62
|
"Failed": "Échoué",
|
|
63
|
+
"Failed to retry execution": "Erreur lors du rejet de l'exécution",
|
|
60
64
|
"False": "Faux",
|
|
61
65
|
"Fields that are not assigned a value will be set to the default value, and those that do not have a default value are set to null.": "Les champs qui ne reçoivent pas de valeur seront définis sur la valeur par défaut, et ceux qui n'ont pas de valeur par défaut seront définis sur null.",
|
|
62
66
|
"Format": "Format",
|
|
@@ -95,15 +99,18 @@
|
|
|
95
99
|
"Queueing": "En attente",
|
|
96
100
|
"Repeat limit": "Limite de répétition",
|
|
97
101
|
"Repeat mode": "Mode de répétition",
|
|
102
|
+
"Retry": "Réessayer",
|
|
98
103
|
"Schedule event": "Événement planifié",
|
|
99
104
|
"Seconds": "Secondes",
|
|
100
105
|
"Select status": "Sélectionner un statut",
|
|
106
|
+
"Show execution history": "Afficher l'historique d'exécution",
|
|
101
107
|
"Starts on": "Commence le",
|
|
102
108
|
"Status": "Statut",
|
|
103
109
|
"String": "Chaîne de caractères",
|
|
104
110
|
"String operation": "Opération sur les chaînes de caractères",
|
|
105
111
|
"Succeed and continue": "Réussir et continuer",
|
|
106
112
|
"Succeeded": "Réussi",
|
|
113
|
+
"Test execution ended": "Test d'exécution terminé",
|
|
107
114
|
"The result of this node has been referenced by other nodes ({{nodes}}), please remove the usage before deleting.": "Le résultat de ce nœud a été référencé par d'autres nœuds ({{nodes}}), veuillez supprimer son utilisation avant de le supprimer.",
|
|
108
115
|
"This node contains branches, deleting will also be preformed to them, are you sure?": "Ce nœud contient des branches, leur suppression sera également effectuée, êtes-vous sûr(e) ?",
|
|
109
116
|
"Timeout config": "Configuration du délai d'expiration",
|
package/dist/locale/ja-JP.json
CHANGED
|
@@ -39,8 +39,12 @@
|
|
|
39
39
|
"Ends on": "終了",
|
|
40
40
|
"Every": "毎",
|
|
41
41
|
"Exactly at": "ちょうど",
|
|
42
|
+
"Execute empty test": "空のテストを実行",
|
|
43
|
+
"Execute ended": "実行が終了しました",
|
|
44
|
+
"Execute successfully": "実行成功",
|
|
42
45
|
"Execution history": "実行履歴",
|
|
43
46
|
"Failed": "失敗",
|
|
47
|
+
"Failed to retry execution": "実行再試行に失敗",
|
|
44
48
|
"False": "偽",
|
|
45
49
|
"Fields that are not assigned a value will be set to the default value, and those that do not have a default value are set to null.": "値が割り当てられていないフィールドはデフォルト値に設定され、デフォルト値がないフィールドは null に設定されます",
|
|
46
50
|
"Hours": "時",
|
|
@@ -64,13 +68,16 @@
|
|
|
64
68
|
"Query record": "クエリ レコード",
|
|
65
69
|
"Repeat limit": "繰り返し回数",
|
|
66
70
|
"Repeat mode": "繰り返しパターン",
|
|
71
|
+
"Retry": "再試行",
|
|
67
72
|
"Schedule event": "スケジュールイベント",
|
|
68
73
|
"Seconds": "秒",
|
|
74
|
+
"Show execution history": "実行履歴を表示",
|
|
69
75
|
"Starts on": "開始",
|
|
70
76
|
"Status": "状態",
|
|
71
77
|
"String": "文字列",
|
|
72
78
|
"String operation": "文字列操作",
|
|
73
79
|
"Succeeded": "成功",
|
|
80
|
+
"Test execution ended": "テスト実行が終了しました",
|
|
74
81
|
"This node contains branches, deleting will also be preformed to them, are you sure?": "ノードにはブランチが含まれており、そのすべてのブランチの下にあるすべての子ノードが同時に削除されます。続行してもよろしいですか?",
|
|
75
82
|
"Trigger": "トリガー",
|
|
76
83
|
"Trigger in executed workflow cannot be modified": "すでにワークフローを実行したトリガーは変更できません",
|
package/dist/locale/ko_KR.json
CHANGED
|
@@ -100,6 +100,9 @@
|
|
|
100
100
|
"Everyone should pass": "모든 사람이 통과해야 합니다.",
|
|
101
101
|
"Exactly at": "정확한 시각",
|
|
102
102
|
"Execute a SQL statement in database": "데이터베이스에서 SQL 문을 실행합니다",
|
|
103
|
+
"Execute empty test": "빈 테스트 실행",
|
|
104
|
+
"Execute ended": "실행 종료",
|
|
105
|
+
"Execute successfully": "실행 성공",
|
|
103
106
|
"Executed": "실행됨",
|
|
104
107
|
"Executed at": "실행된 시각",
|
|
105
108
|
"Executed workflow cannot be modified": "이미 실행된 워크플로는 수정할 수 없습니다.",
|
|
@@ -109,6 +112,7 @@
|
|
|
109
112
|
"Extended types": "확장된 유형",
|
|
110
113
|
"Fail and exit": "실패하고 종료",
|
|
111
114
|
"Failed": "실패",
|
|
115
|
+
"Failed to retry execution": "실행 재시도 실패",
|
|
112
116
|
"Failed to satisfy node configurations.": "노드 구성을 충족하지 못했습니다.",
|
|
113
117
|
"False": "거짓",
|
|
114
118
|
"Field name existed in form": "양식에 이미 존재하는 필드 이름",
|
|
@@ -168,6 +172,7 @@
|
|
|
168
172
|
"Repeat limit": "반복 제한",
|
|
169
173
|
"Repeat mode": "반복 모드",
|
|
170
174
|
"Resolved": "해결됨",
|
|
175
|
+
"Retry": "다시 시도",
|
|
171
176
|
"Retry needed": "재시도 필요",
|
|
172
177
|
"Role of user submitted form": "사용자 제출 폼의 역할",
|
|
173
178
|
"Run multiple branch processes in parallel.": "여러 분기 프로세스를 병렬로 실행합니다.",
|
|
@@ -184,6 +189,7 @@
|
|
|
184
189
|
"Select workflow": "워크플로우 선택",
|
|
185
190
|
"Send HTTP request to a URL. You can use the variables in the upstream nodes as request headers, parameters and request body.": "URL에 HTTP 요청을 보냅니다. 상류 노드의 변수를 요청 헤더, 매개변수 및 요청 본문으로 사용할 수 있습니다.",
|
|
186
191
|
"Separately": "별도로",
|
|
192
|
+
"Show execution history": "실행 기록 보기",
|
|
187
193
|
"Some node meets error.": "일부 노드에서 오류가 발생했습니다.",
|
|
188
194
|
"Started and executing, maybe waiting for an async callback (manual, delay, etc.).": "시작되어 실행 중이며, 비동기 콜백을 기다리는 중일 수 있습니다(수동, 지연 등).",
|
|
189
195
|
"Starts on": "시작 날짜",
|
|
@@ -198,6 +204,7 @@
|
|
|
198
204
|
"Target type": "대상 유형",
|
|
199
205
|
"Task node": "작업 노드",
|
|
200
206
|
"Terminate the process": "프로세스 종료",
|
|
207
|
+
"Test execution ended": "테스트 실행 종료",
|
|
201
208
|
"The result of this node has been referenced by other nodes ({{nodes}}), please remove the usage before deleting.": "이 노드의 결과가 다른 노드에서 참조되었습니다({{nodes}}). 삭제 전에 참조를 제거하세요.",
|
|
202
209
|
"The updated data can trigger other workflows, and the audit log will also be recorded. But it is usually only applicable to several or dozens of pieces of data, otherwise there will be performance problems.": "업데이트된 데이터는 다른 워크플로를 트리거하고 감사 로그도 기록할 수 있습니다. 그러나 일반적으로 몇 개 또는 몇 십 개의 데이터에만 적용되며, 그렇지 않으면 성능 문제가 발생할 수 있습니다.",
|
|
203
210
|
"This node contains branches, deleting will also be performed on them, are you sure?": "이 노드에는 분기가 포함되어 있습니다. 삭제하면 그들에게도 적용됩니다. 계속하시겠습니까?",
|
package/dist/locale/pt-BR.json
CHANGED
|
@@ -51,12 +51,16 @@
|
|
|
51
51
|
"Ends on": "Termina em",
|
|
52
52
|
"Every": "Cada",
|
|
53
53
|
"Exactly at": "Exatamente às",
|
|
54
|
+
"Execute empty test": "Executar teste vazio",
|
|
55
|
+
"Execute ended": "Execução terminada",
|
|
56
|
+
"Execute successfully": "Executado com sucesso",
|
|
54
57
|
"Executed": "Executado",
|
|
55
58
|
"Executed at": "Executado em",
|
|
56
59
|
"Execution history": "Histórico de execução",
|
|
57
60
|
"Extended types": "Tipos estendidos",
|
|
58
61
|
"Fail and exit": "Falhar e sair",
|
|
59
62
|
"Failed": "Falhou",
|
|
63
|
+
"Failed to retry execution": "Falha ao reexecutar",
|
|
60
64
|
"False": "Falso",
|
|
61
65
|
"Fields that are not assigned a value will be set to the default value, and those that do not have a default value are set to null.": "Campos que não recebem valor serão definidos como valor padrão e aqueles sem valor padrão serão definidos como nulo.",
|
|
62
66
|
"Format": "Formato",
|
|
@@ -95,15 +99,18 @@
|
|
|
95
99
|
"Queueing": "Em fila",
|
|
96
100
|
"Repeat limit": "Limite de repetição",
|
|
97
101
|
"Repeat mode": "Modo de repetição",
|
|
102
|
+
"Retry": "Reexecutar",
|
|
98
103
|
"Schedule event": "Evento programado",
|
|
99
104
|
"Seconds": "Segundos",
|
|
100
105
|
"Select status": "Selecionar status",
|
|
106
|
+
"Show execution history": "Mostrar histórico de execução",
|
|
101
107
|
"Starts on": "Começa em",
|
|
102
108
|
"Status": "Status",
|
|
103
109
|
"String": "String",
|
|
104
110
|
"String operation": "Operação de string",
|
|
105
111
|
"Succeed and continue": "Ter sucesso e continuar",
|
|
106
112
|
"Succeeded": "Sucesso",
|
|
113
|
+
"Test execution ended": "Teste de execução terminado",
|
|
107
114
|
"The result of this node has been referenced by other nodes ({{nodes}}), please remove the usage before deleting.": "O resultado deste nó foi referenciado por outros nós ({{nodes}}), por favor, remova a referência antes de excluir.",
|
|
108
115
|
"This node contains branches, deleting will also be preformed to them, are you sure?": "Este nó contém ramos, a exclusão também será realizada neles, você tem certeza?",
|
|
109
116
|
"Timeout config": "Configuração de tempo limite",
|
package/dist/locale/ru-RU.json
CHANGED
|
@@ -39,8 +39,12 @@
|
|
|
39
39
|
"Ends on": "Оканчивается в",
|
|
40
40
|
"Every": "Каждые",
|
|
41
41
|
"Exactly at": "Ровно в",
|
|
42
|
+
"Execute empty test": "Выполнить пустой тест",
|
|
43
|
+
"Execute ended": "Выполнение завершено",
|
|
44
|
+
"Execute successfully": "Выполнено успешно",
|
|
42
45
|
"Execution history": "История запусков",
|
|
43
46
|
"Failed": "Неудачный",
|
|
47
|
+
"Failed to retry execution": "Не удалось повторно выполнить",
|
|
44
48
|
"False": "Ложь",
|
|
45
49
|
"Fields that are not assigned a value will be set to the default value, and those that do not have a default value are set to null.": "Поля, которым не присвоено значение, будут установлены на значение по умолчанию, а поля, не имеющие значения по умолчанию, будут установлены на null.",
|
|
46
50
|
"Hours": "Часы",
|
|
@@ -64,13 +68,16 @@
|
|
|
64
68
|
"Query record": "Запрос записи",
|
|
65
69
|
"Repeat limit": "Ограничение на повторы",
|
|
66
70
|
"Repeat mode": "Режим повтора",
|
|
71
|
+
"Retry": "Повторить",
|
|
67
72
|
"Schedule event": "Событие по расписанию",
|
|
68
73
|
"Seconds": "Секунды",
|
|
74
|
+
"Show execution history": "Показать историю выполнения",
|
|
69
75
|
"Starts on": "Стартует с",
|
|
70
76
|
"Status": "Статус",
|
|
71
77
|
"String": "Строка",
|
|
72
78
|
"String operation": "Операция со строкой",
|
|
73
79
|
"Succeeded": "Успешный",
|
|
80
|
+
"Test execution ended": "Тест выполнения завершен",
|
|
74
81
|
"This node contains branches, deleting will also be preformed to them, are you sure?": "Этот узел содержит ветки, к ним тоже будет произведено удаление, вы уверены?",
|
|
75
82
|
"Trigger": "Триггер",
|
|
76
83
|
"Trigger in executed workflow cannot be modified": "Триггер в выполняемом рабочем процессе не может быть изменен",
|
package/dist/locale/tr-TR.json
CHANGED
|
@@ -39,8 +39,12 @@
|
|
|
39
39
|
"Ends on": "Bitiş",
|
|
40
40
|
"Every": "Her",
|
|
41
41
|
"Exactly at": "Tam zamanı",
|
|
42
|
+
"Execute empty test": "Boş testi yürüt",
|
|
43
|
+
"Execute ended": "Yürütme tamamlandı",
|
|
44
|
+
"Execute successfully": "Başarıyla yürütüldü",
|
|
42
45
|
"Execution history": "Yürütme Geçmişi",
|
|
43
46
|
"Failed": "Başarısız",
|
|
47
|
+
"Failed to retry execution": "Yeniden yürütme başarısız",
|
|
44
48
|
"False": "Yanlış",
|
|
45
49
|
"Fields that are not assigned a value will be set to the default value, and those that do not have a default value are set to null.": "Değer atanmamış alanlar varsayılan değere, varsayılan değeri olmayan alanlar ise null olarak ayarlanır.",
|
|
46
50
|
"Hours": "Saat",
|
|
@@ -64,13 +68,16 @@
|
|
|
64
68
|
"Query record": "Sorgu kaydı",
|
|
65
69
|
"Repeat limit": "Tekrarlama limiti",
|
|
66
70
|
"Repeat mode": "Tekrarlama modu",
|
|
71
|
+
"Retry": "Yeniden yürüt",
|
|
67
72
|
"Schedule event": "Etkinlik planla",
|
|
68
73
|
"Seconds": "Saniye",
|
|
74
|
+
"Show execution history": "Yürütme geçmişini göster",
|
|
69
75
|
"Starts on": "Başlangıç",
|
|
70
76
|
"Status": "Durum",
|
|
71
77
|
"String": "String",
|
|
72
78
|
"String operation": "String operation",
|
|
73
79
|
"Succeeded": "Başarılı",
|
|
80
|
+
"Test execution ended": "Test yürütme tamamlandı",
|
|
74
81
|
"This node contains branches, deleting will also be preformed to them, are you sure?": "Bu düğüm başka içeriklerle bağlantı içeriyor, silme işlemini onaylarsanız o bağlantılarda silinecek, emin misiniz?",
|
|
75
82
|
"Trigger": "Tetikle",
|
|
76
83
|
"Trigger in executed workflow cannot be modified": "Yürütülen iş akışındaki tetikleyici değiştirilemez",
|
package/dist/locale/zh-CN.json
CHANGED
|
@@ -89,6 +89,7 @@
|
|
|
89
89
|
"Canceled": "取消",
|
|
90
90
|
"Carbon Copy me": "抄送我的",
|
|
91
91
|
"CarbonCopy": "抄送",
|
|
92
|
+
"Category": "分类",
|
|
92
93
|
"Changed fields": "发生变动的字段",
|
|
93
94
|
"Clear all executions": "清除所有执行记录",
|
|
94
95
|
"Clear executions will not reset executed count, and started executions will not be deleted, are you sure you want to delete them all?": "清空执行记录不会重置执行次数,且执行中的也不会被删除,确定要删除所有执行记录吗?",
|
|
@@ -158,6 +159,7 @@
|
|
|
158
159
|
"End the workflow after rejection branch": "否决后终止流程",
|
|
159
160
|
"Ends on": "结束于",
|
|
160
161
|
"Error": "出错",
|
|
162
|
+
"Event source": "事件源",
|
|
161
163
|
"Event will be scheduled and triggered base on time conditions.": "基于时间条件进行定时触发的事件。",
|
|
162
164
|
"Event will be triggered on collection data row created, updated or deleted.": "当数据表中的数据被新增、更新或删除时触发。",
|
|
163
165
|
"Every": "每",
|
|
@@ -165,7 +167,10 @@
|
|
|
165
167
|
"Everyone should pass": "每个人通过才通过",
|
|
166
168
|
"Exactly at": "当时",
|
|
167
169
|
"Execute a SQL statement in database.": "在数据库中执行一个 SQL 语句",
|
|
170
|
+
"Execute empty test": "执行空测试",
|
|
171
|
+
"Execute ended": "执行结束",
|
|
168
172
|
"Execute mode": "执行模式",
|
|
173
|
+
"Execute successfully": "执行成功",
|
|
169
174
|
"Execute workflow asynchronously or synchronously based on trigger type, and could not be changed after created.": "基于触发类型异步或同步执行工作流,创建后不可更改。",
|
|
170
175
|
"Executed": "已执行",
|
|
171
176
|
"Executed at": "执行于",
|
|
@@ -180,12 +185,14 @@
|
|
|
180
185
|
"Extended types": "扩展类型",
|
|
181
186
|
"Fail and exit": "失败并退出",
|
|
182
187
|
"Failed": "失败",
|
|
188
|
+
"Failed to retry execution": "重试执行失败",
|
|
183
189
|
"Failed to satisfy node configurations.": "未满足节点配置造成的失败。",
|
|
184
190
|
"False": "假",
|
|
185
191
|
"Field name existed in form": "表单中已有对应标识的字段",
|
|
186
192
|
"Field to aggregate": "聚合字段",
|
|
187
193
|
"File": "文件",
|
|
188
194
|
"Filter settings": "筛选设置",
|
|
195
|
+
"Finally executed on": "最后执行于",
|
|
189
196
|
"For initiating approvals, or viewing and manipulating initiated approvals.": "用于发起审批,或者查看和操作已发起的审批。",
|
|
190
197
|
"For user actions that require immediate feedback. Can not use asynchronous nodes in such mode, and it is not recommended to perform time-consuming operations under synchronous mode.": "适用于需要即时反馈的用户操作。不能在此模式下使用异步节点,并且不建议在同步模式下执行耗时的操作。",
|
|
191
198
|
"Format": "格式化",
|
|
@@ -319,6 +326,8 @@
|
|
|
319
326
|
"Separately": "分别处理",
|
|
320
327
|
"Sequentially": "顺序",
|
|
321
328
|
"Show Notice Detail": "显示通知详情",
|
|
329
|
+
"Show execution history": "显示执行历史",
|
|
330
|
+
|
|
322
331
|
"Some node meets error.": "某个节点出错。",
|
|
323
332
|
"Start": "开始",
|
|
324
333
|
"Started and executing, maybe waiting for an async callback (manual, delay etc.).": "已开始执行,可能在等待异步回调(人工、延时等)。",
|
|
@@ -340,6 +349,7 @@
|
|
|
340
349
|
"Task node": "任务节点",
|
|
341
350
|
"Terminate the process": "终止流程",
|
|
342
351
|
"Test": "测试",
|
|
352
|
+
"Test execution ended": "测试执行结束",
|
|
343
353
|
"Test workflow": "测试工作流",
|
|
344
354
|
"The Notified Person": "被通知人",
|
|
345
355
|
"The approval or rejection by anyone of them is the result.": "任意一人通过或否决即为结果。",
|