@tachybase/module-workflow 1.6.0 → 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/components/ColletionTreeSelect.d.ts +16 -0
- package/dist/client/components/EnabledStatusFilter.d.ts +2 -0
- package/dist/client/components/index.d.ts +1 -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/index.js +85 -59
- package/dist/client/nodes/select.d.ts +235 -0
- package/dist/externalVersion.js +9 -9
- package/dist/locale/en-US.json +47 -1
- package/dist/locale/es-ES.json +17 -1
- package/dist/locale/fr-FR.json +16 -0
- package/dist/locale/ja-JP.json +17 -1
- package/dist/locale/ko_KR.json +17 -1
- package/dist/locale/pt-BR.json +17 -1
- package/dist/locale/ru-RU.json +18 -2
- package/dist/locale/tr-TR.json +18 -2
- package/dist/locale/zh-CN.json +50 -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 +33 -33
- 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 +9 -9
- package/dist/server/actions/workflows.helpers.d.ts +6 -6
- package/dist/server/actions/workflows.helpers.js +14 -14
- package/dist/server/actions/workflows.js +85 -85
- 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/package.json +12 -12
- package/dist/server/features/trigger-instruction/index.d.ts +0 -0
- package/dist/server/features/trigger-instruction/index.js +0 -0
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": "毎",
|
|
@@ -48,10 +54,16 @@
|
|
|
48
54
|
"Failed to retry execution": "実行再試行に失敗",
|
|
49
55
|
"False": "偽",
|
|
50
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 結果から特定のデータを取得します;",
|
|
51
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": "最後の同期時刻",
|
|
52
62
|
"Load failed": "読み込みに失敗しました",
|
|
63
|
+
"Loading editor...": "エディターを読み込み中...",
|
|
53
64
|
"Minutes": "分",
|
|
54
65
|
"Mode": "モデル",
|
|
66
|
+
"Monaco Editor failed to load, downgraded to basic text editor. Some features may be limited.": "Monaco Editor の読み込みに失敗しました。基本的なテキストエディターにダウングレードされました。一部の機能が制限される場合があります。",
|
|
55
67
|
"Months": "月",
|
|
56
68
|
"Multiple records": "複数レコード",
|
|
57
69
|
"No limit": "無制限",
|
|
@@ -65,7 +77,10 @@
|
|
|
65
77
|
"Only triggers when match conditions": "以下の条件を満たすと発動",
|
|
66
78
|
"Only update records matching conditions": "条件を満たすレコードのみ更新",
|
|
67
79
|
"Parallel branch": "分岐",
|
|
80
|
+
"Please enter code...": "コードを入力してください...",
|
|
68
81
|
"Please select collection first": "先にコレクションを選択してください",
|
|
82
|
+
"Properties mapping": "プロパティマッピング",
|
|
83
|
+
"Property path": "プロパティパス",
|
|
69
84
|
"Query record": "クエリ レコード",
|
|
70
85
|
"Repeat limit": "繰り返し回数",
|
|
71
86
|
"Repeat mode": "繰り返しパターン",
|
|
@@ -92,5 +107,6 @@
|
|
|
92
107
|
"Update record": "レコード更新",
|
|
93
108
|
"Version": "バージョン",
|
|
94
109
|
"Weeks": "週",
|
|
95
|
-
"Workflow": "ワークフロー"
|
|
110
|
+
"Workflow": "ワークフロー",
|
|
111
|
+
"keyName": "キー名"
|
|
96
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": "새로운 워크플로우로 복제",
|
|
@@ -124,16 +130,21 @@
|
|
|
124
130
|
"Format": "형식",
|
|
125
131
|
"Full form data": "전체 폼 데이터",
|
|
126
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 결과에서 특정 데이터를 가져옵니다;",
|
|
127
134
|
"HTTP method": "HTTP 메서드",
|
|
128
135
|
"HTTP request": "HTTP 요청",
|
|
129
136
|
"Headers": "헤더",
|
|
130
137
|
"Hours": "시간",
|
|
131
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.": "쿼리 결과의 유형이 객체 또는 객체 배열인 경우, 후속 노드에서 액세스할 속성을 매핑할 수 있습니다.",
|
|
132
140
|
"Ignore failed request and continue workflow": "실패한 요청을 무시하고 워크플로를 계속합니다",
|
|
133
141
|
"Input request data": "요청 데이터 입력",
|
|
134
142
|
"Insert": "삽입",
|
|
143
|
+
"Label": "레이블",
|
|
144
|
+
"Last sync time": "마지막 동기화 시간",
|
|
135
145
|
"Load failed": "로드 실패",
|
|
136
146
|
"Loading": "로딩 중",
|
|
147
|
+
"Loading editor...": "편집기 로드 중...",
|
|
137
148
|
"Loop": "루프",
|
|
138
149
|
"Loop index": "현재 인덱스",
|
|
139
150
|
"Loop length": "루프 길이",
|
|
@@ -142,6 +153,7 @@
|
|
|
142
153
|
"Manually canceled the whole execution when waiting.": "대기 중에 수동으로 전체 실행이 취소되었습니다.",
|
|
143
154
|
"Minutes": "분",
|
|
144
155
|
"Mode": "모드",
|
|
156
|
+
"Monaco Editor failed to load, downgraded to basic text editor. Some features may be limited.": "Monaco Editor 로드에 실패하여 기본 텍스트 편집기로 다운그레이드되었습니다. 일부 기능이 제한될 수 있습니다.",
|
|
145
157
|
"Months": "월",
|
|
146
158
|
"Negotiation": "협상",
|
|
147
159
|
"No end": "종료 없음",
|
|
@@ -149,7 +161,7 @@
|
|
|
149
161
|
"No repeat": "반복 없음",
|
|
150
162
|
"Node result": "노드 결과",
|
|
151
163
|
"Node type": "노드 유형",
|
|
152
|
-
"Off": "
|
|
164
|
+
"Off": "비활성화",
|
|
153
165
|
"On": "활성",
|
|
154
166
|
"On going": "진행 중",
|
|
155
167
|
"Only support standard JSON data": "표준 JSON 데이터만 지원합니다",
|
|
@@ -161,9 +173,12 @@
|
|
|
161
173
|
"Parameters": "매개변수",
|
|
162
174
|
"Pending": "보류 중",
|
|
163
175
|
"Please add at least one condition": "최소한 하나의 조건을 추가하세요.",
|
|
176
|
+
"Please enter code...": "코드를 입력하세요...",
|
|
164
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.": "후속 노드에서 액세스해야 하는 연관 필드를 선택하십시오. 두 개 이상의 수많은 연관 레벨은 성능 문제를 발생시킬 수 있으므로 주의해서 사용하십시오.",
|
|
165
178
|
"Please select the collection first": "먼저 데이터 테이블을 선택하세요.",
|
|
166
179
|
"Preload associations": "연결 데이터를 미리 로드합니다",
|
|
180
|
+
"Properties mapping": "속성 매핑",
|
|
181
|
+
"Property path": "속성 경로",
|
|
167
182
|
"Query record": "데이터 조회",
|
|
168
183
|
"Query records from a collection. You can use variables from upstream nodes as query conditions.": "데이터 테이블에서 레코드를 조회합니다. 상류 노드의 변수를 쿼리 조건으로 사용할 수 있습니다.",
|
|
169
184
|
"Query result": "쿼리 결과",
|
|
@@ -251,5 +266,6 @@
|
|
|
251
266
|
"Workflow will be triggered after submitting succeeded.": "제출 성공 후 워크플로우가 트리거됩니다.",
|
|
252
267
|
"Workflow will be triggered directly once the button is clicked, without data saving.": "버튼을 클릭하면 데이터 저장 없이 워크플로우가 직접 트리거됩니다.",
|
|
253
268
|
"concat": "연결",
|
|
269
|
+
"keyName": "키 이름",
|
|
254
270
|
"ms": "밀리초"
|
|
255
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",
|
|
@@ -65,17 +71,23 @@
|
|
|
65
71
|
"False": "Falso",
|
|
66
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.",
|
|
67
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;",
|
|
68
75
|
"HTTP method": "Método HTTP",
|
|
69
76
|
"HTTP request": "Requisição HTTP",
|
|
70
77
|
"Headers": "Cabeçalhos",
|
|
71
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.",
|
|
72
80
|
"Ignore fail request and continue workflow": "Ignorar falhas na requisição e continuar o fluxo de trabalho",
|
|
73
81
|
"Input request data": "Dados de entrada da requisição",
|
|
74
82
|
"Insert": "Inserir",
|
|
83
|
+
"Label": "Rótulo",
|
|
84
|
+
"Last sync time": "Última hora de sincronização",
|
|
75
85
|
"Load failed": "Falha ao carregar",
|
|
76
86
|
"Loading": "Carregando",
|
|
87
|
+
"Loading editor...": "Carregando editor...",
|
|
77
88
|
"Minutes": "Minutos",
|
|
78
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.",
|
|
79
91
|
"Months": "Meses",
|
|
80
92
|
"Multiple records": "Múltiplos registros",
|
|
81
93
|
"No end": "Sem fim",
|
|
@@ -85,7 +97,7 @@
|
|
|
85
97
|
"Node result": "Resultado do nó",
|
|
86
98
|
"Node type": "Tipo de nó",
|
|
87
99
|
"Null": "Nulo",
|
|
88
|
-
"Off": "
|
|
100
|
+
"Off": "Desabilitado",
|
|
89
101
|
"On": "Ligado",
|
|
90
102
|
"On going": "Em andamento",
|
|
91
103
|
"Only support standard JSON data": "Suporta somente dados JSON padrão",
|
|
@@ -95,7 +107,10 @@
|
|
|
95
107
|
"Parallel branch": "Ramo paralelo",
|
|
96
108
|
"Parameters": "Parâmetros",
|
|
97
109
|
"Pending": "Pendente",
|
|
110
|
+
"Please enter code...": "Por favor, insira o código...",
|
|
98
111
|
"Please select collection first": "Por favor, selecione uma coleção primeiro",
|
|
112
|
+
"Properties mapping": "Mapeamento de propriedades",
|
|
113
|
+
"Property path": "Caminho da propriedade",
|
|
99
114
|
"Query record": "Consultar registro",
|
|
100
115
|
"Queueing": "Em fila",
|
|
101
116
|
"Repeat limit": "Limite de repetição",
|
|
@@ -134,5 +149,6 @@
|
|
|
134
149
|
"Weeks": "Semanas",
|
|
135
150
|
"Workflow": "Fluxo de trabalho",
|
|
136
151
|
"concat": "concatenar",
|
|
152
|
+
"keyName": "Nome da chave",
|
|
137
153
|
"ms": "ms"
|
|
138
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": "Каждые",
|
|
@@ -48,10 +54,16 @@
|
|
|
48
54
|
"Failed to retry execution": "Не удалось повторно выполнить",
|
|
49
55
|
"False": "Ложь",
|
|
50
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-кода;",
|
|
51
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": "Время последней синхронизации",
|
|
52
62
|
"Load failed": "Загрузка не удалась",
|
|
63
|
+
"Loading editor...": "Загрузка редактора...",
|
|
53
64
|
"Minutes": "Минуты",
|
|
54
65
|
"Mode": "Режим",
|
|
66
|
+
"Monaco Editor failed to load, downgraded to basic text editor. Some features may be limited.": "Не удалось загрузить Monaco Editor, переключено на базовый текстовый редактор. Некоторые функции могут быть ограничены.",
|
|
55
67
|
"Months": "Месяцы",
|
|
56
68
|
"Multiple records": "Множество записей",
|
|
57
69
|
"No limit": "Нет ограничений",
|
|
@@ -59,13 +71,16 @@
|
|
|
59
71
|
"Node in executed workflow cannot be modified": "Узел в выполняемом рабочем процессе не может быть изменен",
|
|
60
72
|
"Node result": "Результат Узла",
|
|
61
73
|
"Node type": "Тип Узла",
|
|
62
|
-
"Off": "
|
|
74
|
+
"Off": "Отключено",
|
|
63
75
|
"On": "Вкл.",
|
|
64
76
|
"On going": "Непрерывный",
|
|
65
77
|
"Only triggers when match conditions": "Срабатывает только при совпадении условий",
|
|
66
78
|
"Only update records matching conditions": "Обновлять только записи, соответствующие условиям",
|
|
67
79
|
"Parallel branch": "Параллельная ветвь",
|
|
80
|
+
"Please enter code...": "Пожалуйста, введите код...",
|
|
68
81
|
"Please select collection first": "Выберите сначала Коллекцию, пожалуйста",
|
|
82
|
+
"Properties mapping": "Сопоставление свойств",
|
|
83
|
+
"Property path": "Путь к свойству",
|
|
69
84
|
"Query record": "Запрос записи",
|
|
70
85
|
"Repeat limit": "Ограничение на повторы",
|
|
71
86
|
"Repeat mode": "Режим повтора",
|
|
@@ -92,5 +107,6 @@
|
|
|
92
107
|
"Update record": "Обновить запись",
|
|
93
108
|
"Version": "Версия",
|
|
94
109
|
"Weeks": "Недели",
|
|
95
|
-
"Workflow": "Рабочий процесс"
|
|
110
|
+
"Workflow": "Рабочий процесс",
|
|
111
|
+
"keyName": "Имя ключа"
|
|
96
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",
|
|
@@ -48,10 +54,16 @@
|
|
|
48
54
|
"Failed to retry execution": "Yeniden yürütme başarısız",
|
|
49
55
|
"False": "Yanlış",
|
|
50
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;",
|
|
51
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ı",
|
|
52
62
|
"Load failed": "Yükleme başarısız",
|
|
63
|
+
"Loading editor...": "Düzenleyici yükleniyor...",
|
|
53
64
|
"Minutes": "Dakika",
|
|
54
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.",
|
|
55
67
|
"Months": "Ay",
|
|
56
68
|
"Multiple records": "Birden çok kayıt",
|
|
57
69
|
"No limit": "Limit yok",
|
|
@@ -59,13 +71,16 @@
|
|
|
59
71
|
"Node in executed workflow cannot be modified": "Yürütülen iş akışındaki düğüm değiştirilemez",
|
|
60
72
|
"Node result": "Düğüm sonucu",
|
|
61
73
|
"Node type": "Düğüm türü",
|
|
62
|
-
"Off": "
|
|
74
|
+
"Off": "Devre dışı",
|
|
63
75
|
"On": "Aç",
|
|
64
76
|
"On going": "Devam eden",
|
|
65
77
|
"Only triggers when match conditions": "Yalnızca eşleşme koşulları olduğunda tetiklenir",
|
|
66
78
|
"Only update records matching conditions": "Yalnızca koşullarla eşleşen kayıtları güncelleyin",
|
|
67
79
|
"Parallel branch": "Paralel dal",
|
|
80
|
+
"Please enter code...": "Lütfen kod girin...",
|
|
68
81
|
"Please select collection first": "Lütfen önce koleksiyonu seçin",
|
|
82
|
+
"Properties mapping": "Özellik eşleme",
|
|
83
|
+
"Property path": "Özellik yolu",
|
|
69
84
|
"Query record": "Sorgu kaydı",
|
|
70
85
|
"Repeat limit": "Tekrarlama limiti",
|
|
71
86
|
"Repeat mode": "Tekrarlama modu",
|
|
@@ -92,5 +107,6 @@
|
|
|
92
107
|
"Update record": "Kayıt güncelle",
|
|
93
108
|
"Version": "Sürüm",
|
|
94
109
|
"Weeks": "Hafta",
|
|
95
|
-
"Workflow": "İş Akışı"
|
|
110
|
+
"Workflow": "İş Akışı",
|
|
111
|
+
"keyName": "Anahtar adı"
|
|
96
112
|
}
|
package/dist/locale/zh-CN.json
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"Add branch": "增加分支",
|
|
10
10
|
"Add new record to a collection. You can use variables from upstream nodes to assign values to fields.": "向一个数据表中添加新的数据。可以使用上游节点里的变量为字段赋值。",
|
|
11
11
|
"Add parameter": "添加参数",
|
|
12
|
+
"Add property": "添加属性",
|
|
12
13
|
"Add request header": "添加请求头",
|
|
13
14
|
"Add workflow": "添加工作流",
|
|
14
15
|
"Advanced": "高级模式",
|
|
@@ -18,7 +19,9 @@
|
|
|
18
19
|
"After record updated": "更新数据后",
|
|
19
20
|
"Aggregate": "聚合查询",
|
|
20
21
|
"Aggregator function": "聚合函数",
|
|
22
|
+
"Alias": "别名",
|
|
21
23
|
"All pass": "全部通过",
|
|
24
|
+
"All statuses": "全部",
|
|
22
25
|
"All succeeded": "全部成功",
|
|
23
26
|
"Allow multiple records as result": "允许结果是多条数据",
|
|
24
27
|
"Allow query for tree data": "添加查询条件为树结构表字段: tree: true",
|
|
@@ -60,11 +63,18 @@
|
|
|
60
63
|
"Associated workflow not found.": "未找到关联的工作流",
|
|
61
64
|
"Associations to use": "待使用的关系数据",
|
|
62
65
|
"Asynchronously": "异步",
|
|
66
|
+
"Auth token": "认证 Token/密码",
|
|
67
|
+
"Auth token placeholder": "请输入认证 Token 或密码",
|
|
68
|
+
"Auth username": "认证用户名",
|
|
69
|
+
"Auth username placeholder": "请输入用户名(Basic Auth)",
|
|
70
|
+
"Authentication type": "认证类型",
|
|
63
71
|
"Auto delete history when execution is on end status": "执行结束后自动删除对应状态的历史记录",
|
|
64
72
|
"Based on boolean result of the calculation to determine whether to \"continue\" or \"exit\" the process, or continue on different branches of \"yes\" and \"no\".": "基于运算结果的真假来决定“继续”或“退出”流程,或者在“是”与“否”的分支上分别继续。",
|
|
65
73
|
"Based on certain date": "自定义时间",
|
|
66
74
|
"Based on date field of collection": "根据数据表时间字段",
|
|
67
75
|
"Basic": "基础",
|
|
76
|
+
"Basic Auth": "Basic Auth",
|
|
77
|
+
"Bearer Token": "Bearer Token",
|
|
68
78
|
"Bind collection?": "绑定数据集?",
|
|
69
79
|
"Bind workflows": "绑定工作流",
|
|
70
80
|
"Body": "请求体",
|
|
@@ -78,6 +88,7 @@
|
|
|
78
88
|
"By month": "按月",
|
|
79
89
|
"By using a loop node, you can perform the same operation on multiple sets of data. The source of these sets can be either multiple records from a query node or multiple associated records of a single record. Loop node can also be used for iterating a certain number of times or for looping through each character in a string. However, excessive looping may cause performance issues, so use with caution.": "使用循环节点可以对多条数据进行同样的操作,多条数据的来源可以是查询节点的多条结果,或者一条数据的多条关系数据。也可以用于一定次数的循环,或者对字符串中每一个字符的循环处理。循环次数过高可能引起性能问题,请谨慎使用。",
|
|
80
90
|
"By week": "按周",
|
|
91
|
+
"CDN": "CDN",
|
|
81
92
|
"Calculate an expression based on a calculation engine and obtain a value as the result. Variables in the upstream nodes can be used in the expression.": "基于计算引擎对一个表达式进行计算,并获得一个值作为结果。表达式中可以使用上游节点里的变量。",
|
|
82
93
|
"Calculate an expression based on a calculation engine and obtain a value as the result. Variables in the upstream nodes can be used in the expression. The expression is dynamic one from an expression collections.": "基于计算引擎计算表达式并获取值作为结果。可以在表达式中使用上游节点的变量。表达式是从表达式表中动态获取的。",
|
|
83
94
|
"Calculation": "运算",
|
|
@@ -94,6 +105,17 @@
|
|
|
94
105
|
"Clear all executions": "清除所有执行记录",
|
|
95
106
|
"Clear executions will not reset executed count, and started executions will not be deleted, are you sure you want to delete them all?": "清空执行记录不会重置执行次数,且执行中的也不会被删除,确定要删除所有执行记录吗?",
|
|
96
107
|
"Code": "代码",
|
|
108
|
+
"Code URL": "代码地址",
|
|
109
|
+
"Code URL is required for Git": "Git 类型时,代码地址为必填项",
|
|
110
|
+
"Code URL placeholder": "CDN URL 或 Git 仓库地址,例如: https://cdn.example.com/script.ts 或 https://github.com/owner/repo",
|
|
111
|
+
"Code branch": "代码分支",
|
|
112
|
+
"Code branch placeholder": "Git 分支名称,默认为 main",
|
|
113
|
+
"Code editor failed to load": "代码编辑器加载失败",
|
|
114
|
+
"Code path": "代码路径",
|
|
115
|
+
"Code path placeholder": "Git 仓库中的文件路径,例如: src/scripts/myScript.ts",
|
|
116
|
+
"Code source": "代码来源",
|
|
117
|
+
"Code synced successfully": "代码同步成功",
|
|
118
|
+
"Code type": "代码类型",
|
|
97
119
|
"Collaboratively": "协作处理",
|
|
98
120
|
"Collection": "数据表",
|
|
99
121
|
"Collection event": "数据表事件",
|
|
@@ -129,6 +151,7 @@
|
|
|
129
151
|
"Data of collection": "数据表数据",
|
|
130
152
|
"Data operation nodes in workflow will run in a same transaction until any interruption. Any failure will cause data rollback, and will also rollback the history of the execution.": "工作流中的节点将在同一个事务中运行。任何失败都会导致数据回滚,同时也会回滚相应的执行历史。",
|
|
131
153
|
"Data record": "数据记录",
|
|
154
|
+
"Data source map": "数据源映射",
|
|
132
155
|
"Data will be updated": "更新的数据",
|
|
133
156
|
"Date variables": "日期变量",
|
|
134
157
|
"Days": "天",
|
|
@@ -142,6 +165,7 @@
|
|
|
142
165
|
"Deprecated, please do not use it": "已弃用, 请勿使用",
|
|
143
166
|
"Details": "详情",
|
|
144
167
|
"Disabled": "已失效",
|
|
168
|
+
"Disabled status": "禁用",
|
|
145
169
|
"Dispatcher": "调度器",
|
|
146
170
|
"Distinct": "去重",
|
|
147
171
|
"Draft": "草稿",
|
|
@@ -188,6 +212,7 @@
|
|
|
188
212
|
"Failed to create execution": "创建执行记录失败",
|
|
189
213
|
"Failed to retry execution": "重试执行失败",
|
|
190
214
|
"Failed to satisfy node configurations.": "未满足节点配置造成的失败。",
|
|
215
|
+
"Failed to sync remote code": "同步远程代码失败",
|
|
191
216
|
"False": "假",
|
|
192
217
|
"Field name existed in form": "表单中已有对应标识的字段",
|
|
193
218
|
"Field to aggregate": "聚合字段",
|
|
@@ -200,6 +225,8 @@
|
|
|
200
225
|
"Full form data": "完整表单数据",
|
|
201
226
|
"General event": "通用事件",
|
|
202
227
|
"General failed but should do another try.": "执行失败,需重试。",
|
|
228
|
+
"Get specific data from JSON result of any node BY js code or json code;": "通过 js 代码或 json 代码从任意节点的 JSON 结果中获取特定数据;",
|
|
229
|
+
"Git": "Git",
|
|
203
230
|
"Go to configure": "进入配置",
|
|
204
231
|
"HTTP method": "HTTP 方法",
|
|
205
232
|
"HTTP request": "HTTP 请求",
|
|
@@ -210,6 +237,7 @@
|
|
|
210
237
|
"ID": "编号",
|
|
211
238
|
"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.": "选中后,当查询结果有多条记录时,会返回数组作为结果,可以使用循环节点对它逐条操作;否则,仅返回一条数据。",
|
|
212
239
|
"If it's approved by all, it's approved. If it's rejected by anyone, it's rejected.": "所有人通过才通过,任意一人否决则否决。",
|
|
240
|
+
"If the type of query result is object or array of object, could map the properties which to be accessed in subsequent nodes.": "如果查询结果是对象或对象数组,可以映射属性以便在后续节点中访问。",
|
|
213
241
|
"Ignore failed request and continue workflow": "忽略失败的请求并继续工作流",
|
|
214
242
|
"In addition to data blocks, a global approval block can also be used to initiates and processes approvals, which typically applies to administrative data.": "除了数据卡片,还可以在全局的审批中心发起和处理审批,这通常适用于行政数据。",
|
|
215
243
|
"In the workflow, notification messages can be viewed by the notified person in the notification center.": "在工作流程中通知消息, 被通知人可以在通知中心查看到消息.",
|
|
@@ -223,10 +251,14 @@
|
|
|
223
251
|
"Input request data": "输入请求数据",
|
|
224
252
|
"Insert": "插入",
|
|
225
253
|
"Interceptor": "拦截器",
|
|
254
|
+
"Label": "标签",
|
|
255
|
+
"Last sync time": "最后同步时间",
|
|
226
256
|
"Launch": "发起",
|
|
227
257
|
"Launched time": "发起时间",
|
|
228
258
|
"Load failed": "加载失败",
|
|
229
259
|
"Loading": "加载中",
|
|
260
|
+
"Loading editor...": "加载编辑器...",
|
|
261
|
+
"Local code": "本地代码",
|
|
230
262
|
"Loop": "循环",
|
|
231
263
|
"Loop index": "当前索引",
|
|
232
264
|
"Loop length": "循环长度",
|
|
@@ -236,6 +268,7 @@
|
|
|
236
268
|
"Manually canceled whole execution when waiting.": "等待时被手动取消整个执行。",
|
|
237
269
|
"Minutes": "分钟",
|
|
238
270
|
"Mode": "模式",
|
|
271
|
+
"Monaco Editor failed to load, downgraded to basic text editor. Some features may be limited.": "Monaco Editor 无法加载,已降级到基础文本编辑器。功能可能受限。",
|
|
239
272
|
"Months": "月",
|
|
240
273
|
"Move": "移动",
|
|
241
274
|
"Move current version to another workflow": "将当前版本移动到另一个工作流",
|
|
@@ -248,6 +281,8 @@
|
|
|
248
281
|
"MyLaunch": "我的发起",
|
|
249
282
|
"Negotiation": "协商机制",
|
|
250
283
|
"Negotiation mode": "协商模式",
|
|
284
|
+
"No authentication": "无需认证",
|
|
285
|
+
"No code returned from remote source": "远程源未返回代码",
|
|
251
286
|
"No data yet": "暂无数据",
|
|
252
287
|
"No end": "不结束",
|
|
253
288
|
"No execution records found for this workflow.": "未找到此工作流的执行记录",
|
|
@@ -257,10 +292,11 @@
|
|
|
257
292
|
"Node result": "节点数据",
|
|
258
293
|
"Node type": "节点类型",
|
|
259
294
|
"Not initiated": "未开始",
|
|
295
|
+
"Not synced": "未同步",
|
|
260
296
|
"Notice": "通知",
|
|
261
297
|
"Notice Center": "通知中心",
|
|
262
298
|
"Notice blocks": "通知卡片",
|
|
263
|
-
"Off": "
|
|
299
|
+
"Off": "禁用",
|
|
264
300
|
"On": "启用",
|
|
265
301
|
"On going": "进行中",
|
|
266
302
|
"Only support standard JSON data": "仅支持标准 JSON 数据",
|
|
@@ -278,10 +314,15 @@
|
|
|
278
314
|
"Passthrough mode": "直通模式",
|
|
279
315
|
"Pending": "待处理",
|
|
280
316
|
"Please add at least one condition": "请添加至少一个条件",
|
|
317
|
+
"Please enter code...": "请输入代码...",
|
|
318
|
+
"Please select code type first": "请先选择代码类型",
|
|
281
319
|
"Please select collection first": "请先选择数据表",
|
|
320
|
+
"Please select remote code source first": "请先选择远程代码来源",
|
|
282
321
|
"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.": "请选中需要在后续节点中被访问的关系字段。超过两层的对多关联可能会导致性能问题,请谨慎使用。",
|
|
283
322
|
"Preload associations": "预加载关联数据",
|
|
284
323
|
"Processing": "处理中",
|
|
324
|
+
"Properties mapping": "属性映射",
|
|
325
|
+
"Property path": "属性路径",
|
|
285
326
|
"Query Notified Person": "查询被通知人",
|
|
286
327
|
"Query assignees": "查询审批人",
|
|
287
328
|
"Query record": "查询数据",
|
|
@@ -294,6 +335,7 @@
|
|
|
294
335
|
"Rejected from a manual node.": "被人工节点拒绝继续。",
|
|
295
336
|
"Related approvals": "相关审批",
|
|
296
337
|
"Remarks": "备注",
|
|
338
|
+
"Remote code": "远程代码",
|
|
297
339
|
"Repeat limit": "重复次数",
|
|
298
340
|
"Repeat mode": "重复模式",
|
|
299
341
|
"Resolved": "完成",
|
|
@@ -319,6 +361,9 @@
|
|
|
319
361
|
"Select context": "选择上下文",
|
|
320
362
|
"Select dynamic expression": "选择动态表达式",
|
|
321
363
|
"Select fields to display in the approval summary": "选择审批摘要显示字段",
|
|
364
|
+
"Select fields to display in the collection": "选择数据表显示字段",
|
|
365
|
+
"Select record": "筛选数据",
|
|
366
|
+
"Select records from a collection. You can use variables from upstream nodes as query conditions.": "筛选一个数据表中的数据,可以使用上游节点里的变量作为查询条件。",
|
|
322
367
|
"Select status": "选择状态",
|
|
323
368
|
"Select target workflow": "选择目标工作流",
|
|
324
369
|
"Select the dynamic expression queried from the upstream node. You need to query it from an expression collection.": "从上游节点中选择查询出来的动态表达式。你需要从动态表达式类型的数据表中查询。",
|
|
@@ -342,6 +387,9 @@
|
|
|
342
387
|
"Successfully finished.": "成功完成。",
|
|
343
388
|
"Summary": "摘要",
|
|
344
389
|
"Sync enabled status of all workflows from database": "从数据库同步所有工作流的启用状态",
|
|
390
|
+
"Sync remote code": "同步远程代码",
|
|
391
|
+
"Sync status": "同步状态",
|
|
392
|
+
"Synced": "已同步",
|
|
345
393
|
"Synchronously": "同步",
|
|
346
394
|
"Syntax references: ": "语法参考:",
|
|
347
395
|
"System time": "系统时间",
|
|
@@ -432,6 +480,7 @@
|
|
|
432
480
|
"is false": "为假",
|
|
433
481
|
"is not empty": "不为空",
|
|
434
482
|
"is true": "为真",
|
|
483
|
+
"keyName": "键名",
|
|
435
484
|
"ms": "毫秒",
|
|
436
485
|
"needAuthorization": "是否携带权限校验",
|
|
437
486
|
"workflow Category": "工作流类别",
|