@tachybase/module-workflow 1.5.1 → 1.6.1
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/WorkflowCategoriesProvider.d.ts +4 -0
- package/dist/client/components/ColletionTreeSelect.d.ts +16 -0
- package/dist/client/components/EnabledStatusFilter.d.ts +2 -0
- package/dist/client/components/WorkflowCategoryColumn.d.ts +8 -0
- package/dist/client/components/index.d.ts +3 -0
- package/dist/client/features/script/Script.instruction.d.ts +136 -0
- package/dist/client/features/script/ScriptCodeEditor.d.ts +9 -0
- package/dist/client/features/script/SyncRemoteCodeButton.d.ts +6 -0
- package/dist/client/features/trigger-instruction/TriggerInstruction.d.ts +164 -5
- package/dist/client/hooks/index.d.ts +2 -0
- package/dist/client/hooks/useDumpAction.d.ts +7 -0
- package/dist/client/hooks/useRevisionAction.d.ts +7 -0
- package/dist/client/index.d.ts +2 -0
- package/dist/client/index.js +85 -59
- package/dist/client/nodes/select.d.ts +235 -0
- package/dist/client/schemas/workflows.d.ts +5 -0
- package/dist/client/utils.d.ts +2 -2
- package/dist/externalVersion.js +9 -9
- package/dist/locale/en-US.json +49 -1
- package/dist/locale/es-ES.json +19 -1
- package/dist/locale/fr-FR.json +18 -0
- package/dist/locale/ja-JP.json +19 -1
- package/dist/locale/ko_KR.json +19 -1
- package/dist/locale/pt-BR.json +19 -1
- package/dist/locale/ru-RU.json +20 -2
- package/dist/locale/tr-TR.json +20 -2
- package/dist/locale/zh-CN.json +52 -1
- package/dist/node_modules/@babel/core/lib/index.js +77 -77
- package/dist/node_modules/@babel/core/node_modules/.bin/parser +4 -4
- package/dist/node_modules/@babel/core/package.json +1 -1
- package/dist/node_modules/@babel/preset-env/lib/index.js +88 -88
- package/dist/node_modules/@babel/preset-env/package.json +1 -1
- package/dist/node_modules/@babel/preset-react/lib/index.js +80 -80
- package/dist/node_modules/@babel/preset-react/package.json +1 -1
- package/dist/node_modules/@babel/preset-typescript/lib/index.js +77 -77
- 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/Plugin.js +57 -1
- package/dist/server/actions/executions.d.ts +3 -3
- package/dist/server/actions/executions.js +42 -30
- package/dist/server/actions/index.js +3 -2
- package/dist/server/actions/nodes.d.ts +13 -6
- package/dist/server/actions/nodes.js +160 -34
- package/dist/server/actions/workflows.d.ts +17 -8
- package/dist/server/actions/workflows.helpers.d.ts +55 -0
- package/dist/server/actions/workflows.helpers.js +167 -0
- package/dist/server/actions/workflows.js +118 -69
- package/dist/server/features/interception/RequestInterceptionTrigger.d.ts +1 -1
- package/dist/server/features/interception/RequestInterceptionTrigger.js +12 -12
- package/dist/server/features/manual/actions.d.ts +1 -1
- package/dist/server/features/manual/actions.js +12 -12
- package/dist/server/features/notice/actions.js +19 -19
- package/dist/server/features/notice/plugin.js +0 -3
- package/dist/server/features/omni-trigger/CustomActionTrigger.d.ts +2 -2
- package/dist/server/features/omni-trigger/CustomActionTrigger.js +27 -27
- package/dist/server/features/script/script.instruction.js +146 -4
- package/dist/server/features/trigger-instruction/TriggerInstruction.d.ts +4 -0
- package/dist/server/features/trigger-instruction/TriggerInstruction.js +71 -5
- package/dist/server/instructions/SelectInstruction.d.ts +13 -0
- package/dist/server/instructions/SelectInstruction.js +126 -0
- package/dist/server/services/remote-code-fetcher.d.ts +48 -0
- package/dist/server/services/remote-code-fetcher.js +370 -0
- package/dist/server/utils/get-remote-code-fetcher.d.ts +7 -0
- package/dist/server/utils/get-remote-code-fetcher.js +39 -0
- package/dist/server/utils.d.ts +16 -0
- package/dist/server/utils.js +33 -2
- package/package.json +12 -12
- package/dist/client/provider/EventSourceProvider.d.ts +0 -7
- package/dist/server/features/trigger-instruction/index.d.ts +0 -0
- package/dist/server/features/trigger-instruction/index.js +0 -0
package/dist/locale/fr-FR.json
CHANGED
|
@@ -2,12 +2,15 @@
|
|
|
2
2
|
"\"Content-Type\" only support \"application/json\", and no need to specify": "\"Content-Type\" prend uniquement en charge \"application/json\" et n'a pas besoin d'être spécifié",
|
|
3
3
|
"Add branch": "Ajouter une branche",
|
|
4
4
|
"Add parameter": "Ajouter un paramètre",
|
|
5
|
+
"Add property": "Ajouter une propriété",
|
|
5
6
|
"Add request header": "Ajouter un en-tête de requête",
|
|
6
7
|
"Advanced": "Avancé",
|
|
7
8
|
"After record added": "Après l'ajout d'un enregistrement",
|
|
8
9
|
"After record added or updated": "Après l'ajout ou la mise à jour d'un enregistrement",
|
|
9
10
|
"After record deleted": "Après la suppression d'un enregistrement",
|
|
10
11
|
"After record updated": "Après la mise à jour d'un enregistrement",
|
|
12
|
+
"Alias": "Alias",
|
|
13
|
+
"All statuses": "Tous",
|
|
11
14
|
"All succeeded": "Tous réussis",
|
|
12
15
|
"Any succeeded": "Un réussi",
|
|
13
16
|
"Any succeeded or failed": "Un réussi ou un échoué",
|
|
@@ -29,6 +32,7 @@
|
|
|
29
32
|
"Can not delete": "Impossible de supprimer",
|
|
30
33
|
"Canceled": "Annulé",
|
|
31
34
|
"Changed fields": "Champs modifiés",
|
|
35
|
+
"Code editor failed to load": "Échec du chargement de l'éditeur de code",
|
|
32
36
|
"Collection event": "Événement de collection",
|
|
33
37
|
"Collection operations": "Opérations sur la collection",
|
|
34
38
|
"Condition": "Condition",
|
|
@@ -42,8 +46,10 @@
|
|
|
42
46
|
"Control": "Contrôle",
|
|
43
47
|
"Copy to new version": "Copier vers une nouvelle version",
|
|
44
48
|
"Create record": "Créer un enregistrement",
|
|
49
|
+
"Data source map": "Carte des sources de données",
|
|
45
50
|
"Days": "Jours",
|
|
46
51
|
"Delay": "Délai",
|
|
52
|
+
"Disabled status": "Désactivé",
|
|
47
53
|
"Duplicate": "Dupliquer",
|
|
48
54
|
"Duration": "Durée",
|
|
49
55
|
"End": "Fin",
|
|
@@ -60,21 +66,28 @@
|
|
|
60
66
|
"Extended types": "Types étendus",
|
|
61
67
|
"Fail and exit": "Échouer et quitter",
|
|
62
68
|
"Failed": "Échoué",
|
|
69
|
+
"Failed to create execution": "Échec de la création de l'exécution",
|
|
63
70
|
"Failed to retry execution": "Erreur lors du rejet de l'exécution",
|
|
64
71
|
"False": "Faux",
|
|
65
72
|
"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.",
|
|
66
73
|
"Format": "Format",
|
|
74
|
+
"Get specific data from JSON result of any node BY js code or json code;": "Obtenir des données spécifiques à partir du résultat JSON de n'importe quel nœud via du code js ou du code json ;",
|
|
67
75
|
"HTTP method": "Méthode HTTP",
|
|
68
76
|
"HTTP request": "Requête HTTP",
|
|
69
77
|
"Headers": "En-têtes",
|
|
70
78
|
"Hours": "Heures",
|
|
79
|
+
"If the type of query result is object or array of object, could map the properties which to be accessed in subsequent nodes.": "Si le type de résultat de requête est un objet ou un tableau d'objets, les propriétés peuvent être mappées pour être accessibles dans les nœuds suivants.",
|
|
71
80
|
"Ignore fail request and continue workflow": "Ignorer l'échec de la requête et continuer le workflow",
|
|
72
81
|
"Input request data": "Entrée des données de requête",
|
|
73
82
|
"Insert": "Insérer",
|
|
83
|
+
"Label": "Étiquette",
|
|
84
|
+
"Last sync time": "Dernière heure de synchronisation",
|
|
74
85
|
"Load failed": "Échec du chargement",
|
|
75
86
|
"Loading": "Chargement",
|
|
87
|
+
"Loading editor...": "Chargement de l'éditeur...",
|
|
76
88
|
"Minutes": "Minutes",
|
|
77
89
|
"Mode": "Mode",
|
|
90
|
+
"Monaco Editor failed to load, downgraded to basic text editor. Some features may be limited.": "Échec du chargement de Monaco Editor, rétrogradé vers l'éditeur de texte de base. Certaines fonctionnalités peuvent être limitées.",
|
|
78
91
|
"Months": "Mois",
|
|
79
92
|
"Multiple records": "Multiples enregistrements",
|
|
80
93
|
"No end": "Pas de fin",
|
|
@@ -94,7 +107,10 @@
|
|
|
94
107
|
"Parallel branch": "Branche parallèle",
|
|
95
108
|
"Parameters": "Paramètres",
|
|
96
109
|
"Pending": "En attente",
|
|
110
|
+
"Please enter code...": "Veuillez entrer le code...",
|
|
97
111
|
"Please select collection first": "Veuillez d'abord sélectionner une collection",
|
|
112
|
+
"Properties mapping": "Mappage des propriétés",
|
|
113
|
+
"Property path": "Chemin de propriété",
|
|
98
114
|
"Query record": "Interroger un enregistrement",
|
|
99
115
|
"Queueing": "En attente",
|
|
100
116
|
"Repeat limit": "Limite de répétition",
|
|
@@ -111,6 +127,7 @@
|
|
|
111
127
|
"Succeed and continue": "Réussir et continuer",
|
|
112
128
|
"Succeeded": "Réussi",
|
|
113
129
|
"Test execution ended": "Test d'exécution terminé",
|
|
130
|
+
"Test execution failed": "Échec de l'exécution du test",
|
|
114
131
|
"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.",
|
|
115
132
|
"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) ?",
|
|
116
133
|
"Timeout config": "Configuration du délai d'expiration",
|
|
@@ -132,5 +149,6 @@
|
|
|
132
149
|
"Weeks": "Semaines",
|
|
133
150
|
"Workflow": "Workflow",
|
|
134
151
|
"concat": "concat",
|
|
152
|
+
"keyName": "Nom de clé",
|
|
135
153
|
"ms": "ms"
|
|
136
154
|
}
|
package/dist/locale/ja-JP.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
+
"Add property": "プロパティを追加",
|
|
2
3
|
"Advanced": "アドバンスド",
|
|
3
4
|
"After record added": "レコードを追加した後",
|
|
4
5
|
"After record added or updated": "レコードを追加もしくは更新した後",
|
|
5
6
|
"After record deleted": "レコードを削除した後",
|
|
6
7
|
"After record updated": "レコードを更新した後",
|
|
8
|
+
"Alias": "エイリアス",
|
|
9
|
+
"All statuses": "すべて",
|
|
7
10
|
"All succeeded": "すべて成功",
|
|
8
11
|
"Any succeeded": "いずれかが成功",
|
|
9
12
|
"Arithmetic calculation": "算術演算",
|
|
@@ -22,6 +25,7 @@
|
|
|
22
25
|
"Calculation result": "演算結果",
|
|
23
26
|
"Canceled": "取消",
|
|
24
27
|
"Changed fields": "フィールドが変更された時",
|
|
28
|
+
"Code editor failed to load": "コードエディターの読み込みに失敗しました",
|
|
25
29
|
"Collection event": "コレクションイベント",
|
|
26
30
|
"Collection operations": "フィールド操作",
|
|
27
31
|
"Condition": "条件",
|
|
@@ -34,7 +38,9 @@
|
|
|
34
38
|
"Control": "プロセス制御",
|
|
35
39
|
"Copy to new version": "新しいバージョンにコピー",
|
|
36
40
|
"Create record": "レコード追加",
|
|
41
|
+
"Data source map": "データソースマップ",
|
|
37
42
|
"Days": "日",
|
|
43
|
+
"Disabled status": "無効",
|
|
38
44
|
"End": "終了",
|
|
39
45
|
"Ends on": "終了",
|
|
40
46
|
"Every": "毎",
|
|
@@ -44,13 +50,20 @@
|
|
|
44
50
|
"Execute successfully": "実行成功",
|
|
45
51
|
"Execution history": "実行履歴",
|
|
46
52
|
"Failed": "失敗",
|
|
53
|
+
"Failed to create execution": "実行の作成に失敗しました",
|
|
47
54
|
"Failed to retry execution": "実行再試行に失敗",
|
|
48
55
|
"False": "偽",
|
|
49
56
|
"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 に設定されます",
|
|
57
|
+
"Get specific data from JSON result of any node BY js code or json code;": "js コードまたは json コードを使用して、任意のノードの JSON 結果から特定のデータを取得します;",
|
|
50
58
|
"Hours": "時",
|
|
59
|
+
"If the type of query result is object or array of object, could map the properties which to be accessed in subsequent nodes.": "クエリ結果の型がオブジェクトまたはオブジェクトの配列の場合、後続のノードでアクセスするプロパティをマッピングできます。",
|
|
60
|
+
"Label": "ラベル",
|
|
61
|
+
"Last sync time": "最後の同期時刻",
|
|
51
62
|
"Load failed": "読み込みに失敗しました",
|
|
63
|
+
"Loading editor...": "エディターを読み込み中...",
|
|
52
64
|
"Minutes": "分",
|
|
53
65
|
"Mode": "モデル",
|
|
66
|
+
"Monaco Editor failed to load, downgraded to basic text editor. Some features may be limited.": "Monaco Editor の読み込みに失敗しました。基本的なテキストエディターにダウングレードされました。一部の機能が制限される場合があります。",
|
|
54
67
|
"Months": "月",
|
|
55
68
|
"Multiple records": "複数レコード",
|
|
56
69
|
"No limit": "無制限",
|
|
@@ -64,7 +77,10 @@
|
|
|
64
77
|
"Only triggers when match conditions": "以下の条件を満たすと発動",
|
|
65
78
|
"Only update records matching conditions": "条件を満たすレコードのみ更新",
|
|
66
79
|
"Parallel branch": "分岐",
|
|
80
|
+
"Please enter code...": "コードを入力してください...",
|
|
67
81
|
"Please select collection first": "先にコレクションを選択してください",
|
|
82
|
+
"Properties mapping": "プロパティマッピング",
|
|
83
|
+
"Property path": "プロパティパス",
|
|
68
84
|
"Query record": "クエリ レコード",
|
|
69
85
|
"Repeat limit": "繰り返し回数",
|
|
70
86
|
"Repeat mode": "繰り返しパターン",
|
|
@@ -78,6 +94,7 @@
|
|
|
78
94
|
"String operation": "文字列操作",
|
|
79
95
|
"Succeeded": "成功",
|
|
80
96
|
"Test execution ended": "テスト実行が終了しました",
|
|
97
|
+
"Test execution failed": "テスト実行に失敗しました",
|
|
81
98
|
"This node contains branches, deleting will also be preformed to them, are you sure?": "ノードにはブランチが含まれており、そのすべてのブランチの下にあるすべての子ノードが同時に削除されます。続行してもよろしいですか?",
|
|
82
99
|
"Trigger": "トリガー",
|
|
83
100
|
"Trigger in executed workflow cannot be modified": "すでにワークフローを実行したトリガーは変更できません",
|
|
@@ -90,5 +107,6 @@
|
|
|
90
107
|
"Update record": "レコード更新",
|
|
91
108
|
"Version": "バージョン",
|
|
92
109
|
"Weeks": "週",
|
|
93
|
-
"Workflow": "ワークフロー"
|
|
110
|
+
"Workflow": "ワークフロー",
|
|
111
|
+
"keyName": "キー名"
|
|
94
112
|
}
|
package/dist/locale/ko_KR.json
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
"Add a new record to a collection. You can use variables from upstream nodes to assign values to fields.": "컬렉션에 새로운 레코드를 추가합니다. 상류 노드의 변수를 사용하여 필드에 값을 할당할 수 있습니다.",
|
|
6
6
|
"Add branch": "분기 추가",
|
|
7
7
|
"Add parameter": "매개변수 추가",
|
|
8
|
+
"Add property": "속성 추가",
|
|
8
9
|
"Add request header": "요청 헤더 추가",
|
|
9
10
|
"Add workflow": "워크플로우 추가",
|
|
10
11
|
"Advanced": "고급",
|
|
@@ -14,7 +15,9 @@
|
|
|
14
15
|
"After record updated": "레코드 업데이트 후",
|
|
15
16
|
"Aggregate": "집계 조회",
|
|
16
17
|
"Aggregator function": "집계 함수",
|
|
18
|
+
"Alias": "별칭",
|
|
17
19
|
"All pass": "모두 통과",
|
|
20
|
+
"All statuses": "전체",
|
|
18
21
|
"All succeeded": "모두 성공",
|
|
19
22
|
"Allow multiple records as a result": "다중 레코드 결과 허용",
|
|
20
23
|
"An expression for calculation in each rows": "각 행의 계산을 위한 식",
|
|
@@ -52,6 +55,7 @@
|
|
|
52
55
|
"Changed fields": "변경된 필드",
|
|
53
56
|
"Clear all executions": "모든 실행 기록 지우기",
|
|
54
57
|
"Clear executions will not reset executed count, and started executions will not be deleted, are you sure you want to delete them all?": "지우기 작업은 실행 횟수를 재설정하지 않으며 시작된 실행이 삭제되지 않습니다. 모두 삭제하시겠습니까?",
|
|
58
|
+
"Code editor failed to load": "코드 편집기 로드 실패",
|
|
55
59
|
"Collaboratively": "협력하여",
|
|
56
60
|
"Collection event": "데이터 테이블 이벤트",
|
|
57
61
|
"Collection operations": "데이터 테이블 조작",
|
|
@@ -74,6 +78,7 @@
|
|
|
74
78
|
"Data of collection": "데이터 테이블 데이터",
|
|
75
79
|
"Data operation nodes in the workflow will run in the same transaction until any interruption. Any failure will cause data rollback, and will also rollback the history of the execution.": "워크플로우의 데이터 작업 노드는 어떠한 방해가 발생할 때까지 동일한 트랜잭션에서 실행됩니다. 어떠한 실패도 데이터 롤백을 유발하며 실행 이력도 롤백됩니다.",
|
|
76
80
|
"Data record": "데이터 레코드",
|
|
81
|
+
"Data source map": "데이터 소스 맵",
|
|
77
82
|
"Date variables": "날짜 변수",
|
|
78
83
|
"Days": "일",
|
|
79
84
|
"Delay": "지연",
|
|
@@ -81,6 +86,7 @@
|
|
|
81
86
|
"Delete a main version will cause all other revisions to be deleted too.": "주 버전을 삭제하면 모든 다른 수정 사항도 삭제됩니다.",
|
|
82
87
|
"Delete record": "데이터 삭제",
|
|
83
88
|
"Delete records of a collection. Could use variables in the workflow context as a filter. All records matching the filter will be deleted.": "데이터 테이블의 레코드를 삭제합니다. 워크플로 컨텍스트의 변수를 필터로 사용할 수 있습니다. 필터와 일치하는 모든 레코드가 삭제됩니다.",
|
|
89
|
+
"Disabled status": "비활성화",
|
|
84
90
|
"Distinct": "중복 제거",
|
|
85
91
|
"Duplicate": "복제",
|
|
86
92
|
"Duplicate to new workflow": "새로운 워크플로우로 복제",
|
|
@@ -112,6 +118,7 @@
|
|
|
112
118
|
"Extended types": "확장된 유형",
|
|
113
119
|
"Fail and exit": "실패하고 종료",
|
|
114
120
|
"Failed": "실패",
|
|
121
|
+
"Failed to create execution": "실행 생성 실패",
|
|
115
122
|
"Failed to retry execution": "실행 재시도 실패",
|
|
116
123
|
"Failed to satisfy node configurations.": "노드 구성을 충족하지 못했습니다.",
|
|
117
124
|
"False": "거짓",
|
|
@@ -123,16 +130,21 @@
|
|
|
123
130
|
"Format": "형식",
|
|
124
131
|
"Full form data": "전체 폼 데이터",
|
|
125
132
|
"General failed but should do another try.": "일반적인 실패이지만 다시 시도해야 합니다.",
|
|
133
|
+
"Get specific data from JSON result of any node BY js code or json code;": "js 코드 또는 json 코드를 사용하여 모든 노드의 JSON 결과에서 특정 데이터를 가져옵니다;",
|
|
126
134
|
"HTTP method": "HTTP 메서드",
|
|
127
135
|
"HTTP request": "HTTP 요청",
|
|
128
136
|
"Headers": "헤더",
|
|
129
137
|
"Hours": "시간",
|
|
130
138
|
"If checked, when there are multiple records in the query result, an array will be returned as the result, which can be operated on one by one using a loop node. Otherwise, only one record will be returned.": "선택한 경우, 쿼리 결과에 여러 레코드가 있는 경우 결과로 배열이 반환되어 루프 노드를 사용하여 하나씩 조작할 수 있습니다. 그렇지 않으면 하나의 레코드만 반환됩니다.",
|
|
139
|
+
"If the type of query result is object or array of object, could map the properties which to be accessed in subsequent nodes.": "쿼리 결과의 유형이 객체 또는 객체 배열인 경우, 후속 노드에서 액세스할 속성을 매핑할 수 있습니다.",
|
|
131
140
|
"Ignore failed request and continue workflow": "실패한 요청을 무시하고 워크플로를 계속합니다",
|
|
132
141
|
"Input request data": "요청 데이터 입력",
|
|
133
142
|
"Insert": "삽입",
|
|
143
|
+
"Label": "레이블",
|
|
144
|
+
"Last sync time": "마지막 동기화 시간",
|
|
134
145
|
"Load failed": "로드 실패",
|
|
135
146
|
"Loading": "로딩 중",
|
|
147
|
+
"Loading editor...": "편집기 로드 중...",
|
|
136
148
|
"Loop": "루프",
|
|
137
149
|
"Loop index": "현재 인덱스",
|
|
138
150
|
"Loop length": "루프 길이",
|
|
@@ -141,6 +153,7 @@
|
|
|
141
153
|
"Manually canceled the whole execution when waiting.": "대기 중에 수동으로 전체 실행이 취소되었습니다.",
|
|
142
154
|
"Minutes": "분",
|
|
143
155
|
"Mode": "모드",
|
|
156
|
+
"Monaco Editor failed to load, downgraded to basic text editor. Some features may be limited.": "Monaco Editor 로드에 실패하여 기본 텍스트 편집기로 다운그레이드되었습니다. 일부 기능이 제한될 수 있습니다.",
|
|
144
157
|
"Months": "월",
|
|
145
158
|
"Negotiation": "협상",
|
|
146
159
|
"No end": "종료 없음",
|
|
@@ -148,7 +161,7 @@
|
|
|
148
161
|
"No repeat": "반복 없음",
|
|
149
162
|
"Node result": "노드 결과",
|
|
150
163
|
"Node type": "노드 유형",
|
|
151
|
-
"Off": "
|
|
164
|
+
"Off": "비활성화",
|
|
152
165
|
"On": "활성",
|
|
153
166
|
"On going": "진행 중",
|
|
154
167
|
"Only support standard JSON data": "표준 JSON 데이터만 지원합니다",
|
|
@@ -160,9 +173,12 @@
|
|
|
160
173
|
"Parameters": "매개변수",
|
|
161
174
|
"Pending": "보류 중",
|
|
162
175
|
"Please add at least one condition": "최소한 하나의 조건을 추가하세요.",
|
|
176
|
+
"Please enter code...": "코드를 입력하세요...",
|
|
163
177
|
"Please select the associated fields that need to be accessed in subsequent nodes. With more than two levels of to-many associations may cause performance issue, please use with caution.": "후속 노드에서 액세스해야 하는 연관 필드를 선택하십시오. 두 개 이상의 수많은 연관 레벨은 성능 문제를 발생시킬 수 있으므로 주의해서 사용하십시오.",
|
|
164
178
|
"Please select the collection first": "먼저 데이터 테이블을 선택하세요.",
|
|
165
179
|
"Preload associations": "연결 데이터를 미리 로드합니다",
|
|
180
|
+
"Properties mapping": "속성 매핑",
|
|
181
|
+
"Property path": "속성 경로",
|
|
166
182
|
"Query record": "데이터 조회",
|
|
167
183
|
"Query records from a collection. You can use variables from upstream nodes as query conditions.": "데이터 테이블에서 레코드를 조회합니다. 상류 노드의 변수를 쿼리 조건으로 사용할 수 있습니다.",
|
|
168
184
|
"Query result": "쿼리 결과",
|
|
@@ -205,6 +221,7 @@
|
|
|
205
221
|
"Task node": "작업 노드",
|
|
206
222
|
"Terminate the process": "프로세스 종료",
|
|
207
223
|
"Test execution ended": "테스트 실행 종료",
|
|
224
|
+
"Test execution failed": "테스트 실행 실패",
|
|
208
225
|
"The result of this node has been referenced by other nodes ({{nodes}}), please remove the usage before deleting.": "이 노드의 결과가 다른 노드에서 참조되었습니다({{nodes}}). 삭제 전에 참조를 제거하세요.",
|
|
209
226
|
"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.": "업데이트된 데이터는 다른 워크플로를 트리거하고 감사 로그도 기록할 수 있습니다. 그러나 일반적으로 몇 개 또는 몇 십 개의 데이터에만 적용되며, 그렇지 않으면 성능 문제가 발생할 수 있습니다.",
|
|
210
227
|
"This node contains branches, deleting will also be performed on them, are you sure?": "이 노드에는 분기가 포함되어 있습니다. 삭제하면 그들에게도 적용됩니다. 계속하시겠습니까?",
|
|
@@ -249,5 +266,6 @@
|
|
|
249
266
|
"Workflow will be triggered after submitting succeeded.": "제출 성공 후 워크플로우가 트리거됩니다.",
|
|
250
267
|
"Workflow will be triggered directly once the button is clicked, without data saving.": "버튼을 클릭하면 데이터 저장 없이 워크플로우가 직접 트리거됩니다.",
|
|
251
268
|
"concat": "연결",
|
|
269
|
+
"keyName": "키 이름",
|
|
252
270
|
"ms": "밀리초"
|
|
253
271
|
}
|
package/dist/locale/pt-BR.json
CHANGED
|
@@ -2,12 +2,15 @@
|
|
|
2
2
|
"\"Content-Type\" only support \"application/json\", and no need to specify": "\"Content-Type\" somente suporta \"application/json\" e não precisa ser especificado",
|
|
3
3
|
"Add branch": "Adicionar ramo",
|
|
4
4
|
"Add parameter": "Adicionar parâmetro",
|
|
5
|
+
"Add property": "Adicionar propriedade",
|
|
5
6
|
"Add request header": "Adicionar cabeçalho de requisição",
|
|
6
7
|
"Advanced": "Avançado",
|
|
7
8
|
"After record added": "Depois do registro ser adicionado",
|
|
8
9
|
"After record added or updated": "Depois do registro ser adicionado ou atualizado",
|
|
9
10
|
"After record deleted": "Depois do registro ser excluído",
|
|
10
11
|
"After record updated": "Depois do registro ser atualizado",
|
|
12
|
+
"Alias": "Alias",
|
|
13
|
+
"All statuses": "Todos",
|
|
11
14
|
"All succeeded": "Todos com sucesso",
|
|
12
15
|
"Any succeeded": "Qualquer um com sucesso",
|
|
13
16
|
"Any succeeded or failed": "Qualquer um com sucesso ou falha",
|
|
@@ -29,6 +32,7 @@
|
|
|
29
32
|
"Can not delete": "Não é possível excluir",
|
|
30
33
|
"Canceled": "Cancelado",
|
|
31
34
|
"Changed fields": "Campos alterados",
|
|
35
|
+
"Code editor failed to load": "Falha ao carregar o editor de código",
|
|
32
36
|
"Collection event": "Evento da coleção",
|
|
33
37
|
"Collection operations": "Operações de coleção",
|
|
34
38
|
"Condition": "Condição",
|
|
@@ -42,8 +46,10 @@
|
|
|
42
46
|
"Control": "Controle",
|
|
43
47
|
"Copy to new version": "Copiar para nova versão",
|
|
44
48
|
"Create record": "Criar registro",
|
|
49
|
+
"Data source map": "Mapa de fontes de dados",
|
|
45
50
|
"Days": "Dias",
|
|
46
51
|
"Delay": "Atraso",
|
|
52
|
+
"Disabled status": "Desabilitado",
|
|
47
53
|
"Duplicate": "Duplicar",
|
|
48
54
|
"Duration": "Duração",
|
|
49
55
|
"End": "Fim",
|
|
@@ -60,21 +66,28 @@
|
|
|
60
66
|
"Extended types": "Tipos estendidos",
|
|
61
67
|
"Fail and exit": "Falhar e sair",
|
|
62
68
|
"Failed": "Falhou",
|
|
69
|
+
"Failed to create execution": "Falha ao criar execução",
|
|
63
70
|
"Failed to retry execution": "Falha ao reexecutar",
|
|
64
71
|
"False": "Falso",
|
|
65
72
|
"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.",
|
|
66
73
|
"Format": "Formato",
|
|
74
|
+
"Get specific data from JSON result of any node BY js code or json code;": "Obter dados específicos do resultado JSON de qualquer nó usando código js ou código json;",
|
|
67
75
|
"HTTP method": "Método HTTP",
|
|
68
76
|
"HTTP request": "Requisição HTTP",
|
|
69
77
|
"Headers": "Cabeçalhos",
|
|
70
78
|
"Hours": "Horas",
|
|
79
|
+
"If the type of query result is object or array of object, could map the properties which to be accessed in subsequent nodes.": "Se o tipo de resultado da consulta for objeto ou matriz de objetos, as propriedades que serão acessadas nos nós subsequentes podem ser mapeadas.",
|
|
71
80
|
"Ignore fail request and continue workflow": "Ignorar falhas na requisição e continuar o fluxo de trabalho",
|
|
72
81
|
"Input request data": "Dados de entrada da requisição",
|
|
73
82
|
"Insert": "Inserir",
|
|
83
|
+
"Label": "Rótulo",
|
|
84
|
+
"Last sync time": "Última hora de sincronização",
|
|
74
85
|
"Load failed": "Falha ao carregar",
|
|
75
86
|
"Loading": "Carregando",
|
|
87
|
+
"Loading editor...": "Carregando editor...",
|
|
76
88
|
"Minutes": "Minutos",
|
|
77
89
|
"Mode": "Modo",
|
|
90
|
+
"Monaco Editor failed to load, downgraded to basic text editor. Some features may be limited.": "Falha ao carregar o Monaco Editor, foi feito downgrade para o editor de texto básico. Alguns recursos podem estar limitados.",
|
|
78
91
|
"Months": "Meses",
|
|
79
92
|
"Multiple records": "Múltiplos registros",
|
|
80
93
|
"No end": "Sem fim",
|
|
@@ -84,7 +97,7 @@
|
|
|
84
97
|
"Node result": "Resultado do nó",
|
|
85
98
|
"Node type": "Tipo de nó",
|
|
86
99
|
"Null": "Nulo",
|
|
87
|
-
"Off": "
|
|
100
|
+
"Off": "Desabilitado",
|
|
88
101
|
"On": "Ligado",
|
|
89
102
|
"On going": "Em andamento",
|
|
90
103
|
"Only support standard JSON data": "Suporta somente dados JSON padrão",
|
|
@@ -94,7 +107,10 @@
|
|
|
94
107
|
"Parallel branch": "Ramo paralelo",
|
|
95
108
|
"Parameters": "Parâmetros",
|
|
96
109
|
"Pending": "Pendente",
|
|
110
|
+
"Please enter code...": "Por favor, insira o código...",
|
|
97
111
|
"Please select collection first": "Por favor, selecione uma coleção primeiro",
|
|
112
|
+
"Properties mapping": "Mapeamento de propriedades",
|
|
113
|
+
"Property path": "Caminho da propriedade",
|
|
98
114
|
"Query record": "Consultar registro",
|
|
99
115
|
"Queueing": "Em fila",
|
|
100
116
|
"Repeat limit": "Limite de repetição",
|
|
@@ -111,6 +127,7 @@
|
|
|
111
127
|
"Succeed and continue": "Ter sucesso e continuar",
|
|
112
128
|
"Succeeded": "Sucesso",
|
|
113
129
|
"Test execution ended": "Teste de execução terminado",
|
|
130
|
+
"Test execution failed": "Falha na execução do teste",
|
|
114
131
|
"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.",
|
|
115
132
|
"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?",
|
|
116
133
|
"Timeout config": "Configuração de tempo limite",
|
|
@@ -132,5 +149,6 @@
|
|
|
132
149
|
"Weeks": "Semanas",
|
|
133
150
|
"Workflow": "Fluxo de trabalho",
|
|
134
151
|
"concat": "concatenar",
|
|
152
|
+
"keyName": "Nome da chave",
|
|
135
153
|
"ms": "ms"
|
|
136
154
|
}
|
package/dist/locale/ru-RU.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
+
"Add property": "Добавить свойство",
|
|
2
3
|
"Advanced": "Продвинутый",
|
|
3
4
|
"After record added": "После добавления записи",
|
|
4
5
|
"After record added or updated": "После добавления или обновления записи",
|
|
5
6
|
"After record deleted": "После удаления записи",
|
|
6
7
|
"After record updated": "После обновления записи",
|
|
8
|
+
"Alias": "Псевдоним",
|
|
9
|
+
"All statuses": "Все",
|
|
7
10
|
"All succeeded": "Всё успешно",
|
|
8
11
|
"Any succeeded": "Что-то успешно",
|
|
9
12
|
"Arithmetic calculation": "Арифметическое вычисление",
|
|
@@ -22,6 +25,7 @@
|
|
|
22
25
|
"Calculation result": "Результат вычисления",
|
|
23
26
|
"Canceled": "Прерванный",
|
|
24
27
|
"Changed fields": "Измененные поля",
|
|
28
|
+
"Code editor failed to load": "Не удалось загрузить редактор кода",
|
|
25
29
|
"Collection event": "Событие коллекции",
|
|
26
30
|
"Collection operations": "Операции с Коллекцией",
|
|
27
31
|
"Condition": "Условие",
|
|
@@ -34,7 +38,9 @@
|
|
|
34
38
|
"Control": "Управление",
|
|
35
39
|
"Copy to new version": "Скопировать в новую версию",
|
|
36
40
|
"Create record": "Создать запись",
|
|
41
|
+
"Data source map": "Карта источников данных",
|
|
37
42
|
"Days": "Дни",
|
|
43
|
+
"Disabled status": "Отключено",
|
|
38
44
|
"End": "Окончание",
|
|
39
45
|
"Ends on": "Оканчивается в",
|
|
40
46
|
"Every": "Каждые",
|
|
@@ -44,13 +50,20 @@
|
|
|
44
50
|
"Execute successfully": "Выполнено успешно",
|
|
45
51
|
"Execution history": "История запусков",
|
|
46
52
|
"Failed": "Неудачный",
|
|
53
|
+
"Failed to create execution": "Не удалось создать выполнение",
|
|
47
54
|
"Failed to retry execution": "Не удалось повторно выполнить",
|
|
48
55
|
"False": "Ложь",
|
|
49
56
|
"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.",
|
|
57
|
+
"Get specific data from JSON result of any node BY js code or json code;": "Получить конкретные данные из JSON-результата любого узла с помощью js-кода или json-кода;",
|
|
50
58
|
"Hours": "Часы",
|
|
59
|
+
"If the type of query result is object or array of object, could map the properties which to be accessed in subsequent nodes.": "Если тип результата запроса является объектом или массивом объектов, можно сопоставить свойства, к которым будет осуществляться доступ в последующих узлах.",
|
|
60
|
+
"Label": "Метка",
|
|
61
|
+
"Last sync time": "Время последней синхронизации",
|
|
51
62
|
"Load failed": "Загрузка не удалась",
|
|
63
|
+
"Loading editor...": "Загрузка редактора...",
|
|
52
64
|
"Minutes": "Минуты",
|
|
53
65
|
"Mode": "Режим",
|
|
66
|
+
"Monaco Editor failed to load, downgraded to basic text editor. Some features may be limited.": "Не удалось загрузить Monaco Editor, переключено на базовый текстовый редактор. Некоторые функции могут быть ограничены.",
|
|
54
67
|
"Months": "Месяцы",
|
|
55
68
|
"Multiple records": "Множество записей",
|
|
56
69
|
"No limit": "Нет ограничений",
|
|
@@ -58,13 +71,16 @@
|
|
|
58
71
|
"Node in executed workflow cannot be modified": "Узел в выполняемом рабочем процессе не может быть изменен",
|
|
59
72
|
"Node result": "Результат Узла",
|
|
60
73
|
"Node type": "Тип Узла",
|
|
61
|
-
"Off": "
|
|
74
|
+
"Off": "Отключено",
|
|
62
75
|
"On": "Вкл.",
|
|
63
76
|
"On going": "Непрерывный",
|
|
64
77
|
"Only triggers when match conditions": "Срабатывает только при совпадении условий",
|
|
65
78
|
"Only update records matching conditions": "Обновлять только записи, соответствующие условиям",
|
|
66
79
|
"Parallel branch": "Параллельная ветвь",
|
|
80
|
+
"Please enter code...": "Пожалуйста, введите код...",
|
|
67
81
|
"Please select collection first": "Выберите сначала Коллекцию, пожалуйста",
|
|
82
|
+
"Properties mapping": "Сопоставление свойств",
|
|
83
|
+
"Property path": "Путь к свойству",
|
|
68
84
|
"Query record": "Запрос записи",
|
|
69
85
|
"Repeat limit": "Ограничение на повторы",
|
|
70
86
|
"Repeat mode": "Режим повтора",
|
|
@@ -78,6 +94,7 @@
|
|
|
78
94
|
"String operation": "Операция со строкой",
|
|
79
95
|
"Succeeded": "Успешный",
|
|
80
96
|
"Test execution ended": "Тест выполнения завершен",
|
|
97
|
+
"Test execution failed": "Тестовое выполнение не удалось",
|
|
81
98
|
"This node contains branches, deleting will also be preformed to them, are you sure?": "Этот узел содержит ветки, к ним тоже будет произведено удаление, вы уверены?",
|
|
82
99
|
"Trigger": "Триггер",
|
|
83
100
|
"Trigger in executed workflow cannot be modified": "Триггер в выполняемом рабочем процессе не может быть изменен",
|
|
@@ -90,5 +107,6 @@
|
|
|
90
107
|
"Update record": "Обновить запись",
|
|
91
108
|
"Version": "Версия",
|
|
92
109
|
"Weeks": "Недели",
|
|
93
|
-
"Workflow": "Рабочий процесс"
|
|
110
|
+
"Workflow": "Рабочий процесс",
|
|
111
|
+
"keyName": "Имя ключа"
|
|
94
112
|
}
|
package/dist/locale/tr-TR.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
+
"Add property": "Özellik ekle",
|
|
2
3
|
"Advanced": "Gelişmiş",
|
|
3
4
|
"After record added": "Kayıt eklendikten sonra",
|
|
4
5
|
"After record added or updated": "Kayıt eklendikten veya güncellendikten sonra",
|
|
5
6
|
"After record deleted": "Kayıt silindikten sonra",
|
|
6
7
|
"After record updated": "Kayıt güncellendikten sonra",
|
|
8
|
+
"Alias": "Takma ad",
|
|
9
|
+
"All statuses": "Tümü",
|
|
7
10
|
"All succeeded": "Hepsi başarılı",
|
|
8
11
|
"Any succeeded": "Herhangi biri başarılı",
|
|
9
12
|
"Arithmetic calculation": "Aritmetik hesaplama",
|
|
@@ -22,6 +25,7 @@
|
|
|
22
25
|
"Calculation result": "Hesaplama sonucu",
|
|
23
26
|
"Canceled": "İptal edilen",
|
|
24
27
|
"Changed fields": "Değiştirilen alanlar",
|
|
28
|
+
"Code editor failed to load": "Kod düzenleyici yüklenemedi",
|
|
25
29
|
"Collection event": "Koleksiyon etkinliği",
|
|
26
30
|
"Collection operations": "Koleksiyon operasyonları",
|
|
27
31
|
"Condition": "Koşul",
|
|
@@ -34,7 +38,9 @@
|
|
|
34
38
|
"Control": "Kontrol",
|
|
35
39
|
"Copy to new version": "Yeni sürüme kopyala",
|
|
36
40
|
"Create record": "Kayıt oluştur",
|
|
41
|
+
"Data source map": "Veri kaynağı haritası",
|
|
37
42
|
"Days": "Gün",
|
|
43
|
+
"Disabled status": "Devre dışı",
|
|
38
44
|
"End": "Son",
|
|
39
45
|
"Ends on": "Bitiş",
|
|
40
46
|
"Every": "Her",
|
|
@@ -44,13 +50,20 @@
|
|
|
44
50
|
"Execute successfully": "Başarıyla yürütüldü",
|
|
45
51
|
"Execution history": "Yürütme Geçmişi",
|
|
46
52
|
"Failed": "Başarısız",
|
|
53
|
+
"Failed to create execution": "Yürütme oluşturulamadı",
|
|
47
54
|
"Failed to retry execution": "Yeniden yürütme başarısız",
|
|
48
55
|
"False": "Yanlış",
|
|
49
56
|
"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.",
|
|
57
|
+
"Get specific data from JSON result of any node BY js code or json code;": "Herhangi bir düğümün JSON sonucundan js kodu veya json kodu ile belirli verileri alın;",
|
|
50
58
|
"Hours": "Saat",
|
|
59
|
+
"If the type of query result is object or array of object, could map the properties which to be accessed in subsequent nodes.": "Sorgu sonucunun türü nesne veya nesne dizisi ise, sonraki düğümlerde erişilecek özellikler eşlenebilir.",
|
|
60
|
+
"Label": "Etiket",
|
|
61
|
+
"Last sync time": "Son senkronizasyon zamanı",
|
|
51
62
|
"Load failed": "Yükleme başarısız",
|
|
63
|
+
"Loading editor...": "Düzenleyici yükleniyor...",
|
|
52
64
|
"Minutes": "Dakika",
|
|
53
65
|
"Mode": "Tür",
|
|
66
|
+
"Monaco Editor failed to load, downgraded to basic text editor. Some features may be limited.": "Monaco Editor yüklenemedi, temel metin düzenleyiciye düşürüldü. Bazı özellikler sınırlı olabilir.",
|
|
54
67
|
"Months": "Ay",
|
|
55
68
|
"Multiple records": "Birden çok kayıt",
|
|
56
69
|
"No limit": "Limit yok",
|
|
@@ -58,13 +71,16 @@
|
|
|
58
71
|
"Node in executed workflow cannot be modified": "Yürütülen iş akışındaki düğüm değiştirilemez",
|
|
59
72
|
"Node result": "Düğüm sonucu",
|
|
60
73
|
"Node type": "Düğüm türü",
|
|
61
|
-
"Off": "
|
|
74
|
+
"Off": "Devre dışı",
|
|
62
75
|
"On": "Aç",
|
|
63
76
|
"On going": "Devam eden",
|
|
64
77
|
"Only triggers when match conditions": "Yalnızca eşleşme koşulları olduğunda tetiklenir",
|
|
65
78
|
"Only update records matching conditions": "Yalnızca koşullarla eşleşen kayıtları güncelleyin",
|
|
66
79
|
"Parallel branch": "Paralel dal",
|
|
80
|
+
"Please enter code...": "Lütfen kod girin...",
|
|
67
81
|
"Please select collection first": "Lütfen önce koleksiyonu seçin",
|
|
82
|
+
"Properties mapping": "Özellik eşleme",
|
|
83
|
+
"Property path": "Özellik yolu",
|
|
68
84
|
"Query record": "Sorgu kaydı",
|
|
69
85
|
"Repeat limit": "Tekrarlama limiti",
|
|
70
86
|
"Repeat mode": "Tekrarlama modu",
|
|
@@ -78,6 +94,7 @@
|
|
|
78
94
|
"String operation": "String operation",
|
|
79
95
|
"Succeeded": "Başarılı",
|
|
80
96
|
"Test execution ended": "Test yürütme tamamlandı",
|
|
97
|
+
"Test execution failed": "Test yürütmesi başarısız",
|
|
81
98
|
"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?",
|
|
82
99
|
"Trigger": "Tetikle",
|
|
83
100
|
"Trigger in executed workflow cannot be modified": "Yürütülen iş akışındaki tetikleyici değiştirilemez",
|
|
@@ -90,5 +107,6 @@
|
|
|
90
107
|
"Update record": "Kayıt güncelle",
|
|
91
108
|
"Version": "Sürüm",
|
|
92
109
|
"Weeks": "Hafta",
|
|
93
|
-
"Workflow": "İş Akışı"
|
|
110
|
+
"Workflow": "İş Akışı",
|
|
111
|
+
"keyName": "Anahtar adı"
|
|
94
112
|
}
|