@pipelab/shared 1.0.0-beta.3 → 1.0.0-beta.30
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/.oxfmtrc.json +1 -1
- package/CHANGELOG.md +234 -0
- package/dist/index.cjs +44534 -0
- package/dist/index.d.cts +4664 -0
- package/dist/index.d.cts.map +1 -0
- package/dist/index.d.mts +1514 -499
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +1098 -436
- package/dist/index.mjs.map +1 -1
- package/package.json +8 -4
- package/src/apis.ts +126 -31
- package/src/build-history.ts +3 -23
- package/src/config/connections-definition.ts +3 -0
- package/src/config/migrators.ts +176 -25
- package/src/config/projects-definition.ts +8 -1
- package/src/config/projects-types.ts +1 -25
- package/src/config.schema.ts +29 -5
- package/src/evaluator.ts +0 -1
- package/src/graph.ts +2 -70
- package/src/i18n/de_DE.json +138 -51
- package/src/i18n/en_US.json +67 -52
- package/src/i18n/es_ES.json +139 -52
- package/src/i18n/fr_FR.json +128 -44
- package/src/i18n/pt_BR.json +136 -49
- package/src/i18n/zh_CN.json +142 -55
- package/src/index.ts +21 -1
- package/src/ipc.types.ts +2 -0
- package/src/model.test.ts +306 -1
- package/src/model.ts +54 -43
- package/src/plugins/definitions.ts +26 -55
- package/src/plugins-list.ts +17 -0
- package/src/plugins.ts +10 -1
- package/src/utils.ts +26 -0
- package/tsconfig.json +2 -4
- package/tsconfig.test.json +8 -0
- package/tsdown.config.ts +12 -0
package/dist/index.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { createMigration, createMigrator, finalVersion } from "@pipelab/migration";
|
|
2
|
-
import { any, array, boolean, custom, description,
|
|
2
|
+
import { any, array, boolean, custom, description, literal, looseObject, number, object, optional, pipe, record, string, union, unknown, variant } from "valibot";
|
|
3
3
|
import { Logger } from "tslog";
|
|
4
4
|
import { RELEASE_SYNC, newQuickJSWASMModuleFromVariant, newVariant } from "quickjs-emscripten";
|
|
5
5
|
import { Arena } from "quickjs-emscripten-sync";
|
|
@@ -39,6 +39,68 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
39
39
|
}) : target, mod));
|
|
40
40
|
//#endregion
|
|
41
41
|
//#region src/config/migrators.ts
|
|
42
|
+
const DEFAULT_PLUGINS = [
|
|
43
|
+
{
|
|
44
|
+
name: "@pipelab/plugin-construct",
|
|
45
|
+
enabled: true,
|
|
46
|
+
description: "Construct 3 export & packaging"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
name: "@pipelab/plugin-filesystem",
|
|
50
|
+
enabled: true,
|
|
51
|
+
description: "Filesystem utilities"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
name: "@pipelab/plugin-system",
|
|
55
|
+
enabled: true,
|
|
56
|
+
description: "System & shell commands"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
name: "@pipelab/plugin-steam",
|
|
60
|
+
enabled: true,
|
|
61
|
+
description: "Steam publishing"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
name: "@pipelab/plugin-itch",
|
|
65
|
+
enabled: true,
|
|
66
|
+
description: "Itch.io publishing"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
name: "@pipelab/plugin-electron",
|
|
70
|
+
enabled: true,
|
|
71
|
+
description: "Electron packaging"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
name: "@pipelab/plugin-discord",
|
|
75
|
+
enabled: true,
|
|
76
|
+
description: "Discord Rich Presence"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
name: "@pipelab/plugin-poki",
|
|
80
|
+
enabled: true,
|
|
81
|
+
description: "Poki publishing"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
name: "@pipelab/plugin-nvpatch",
|
|
85
|
+
enabled: true,
|
|
86
|
+
description: "NW.js patching"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
name: "@pipelab/plugin-tauri",
|
|
90
|
+
enabled: true,
|
|
91
|
+
description: "Tauri packaging"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
name: "@pipelab/plugin-minify",
|
|
95
|
+
enabled: true,
|
|
96
|
+
description: "Asset minification"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
name: "@pipelab/plugin-netlify",
|
|
100
|
+
enabled: true,
|
|
101
|
+
description: "Netlify deployment"
|
|
102
|
+
}
|
|
103
|
+
];
|
|
42
104
|
const createMigration$1 = (config) => createMigration(config);
|
|
43
105
|
const settingsMigratorInternal = createMigrator();
|
|
44
106
|
const defaultAppSettings$1 = settingsMigratorInternal.createDefault({
|
|
@@ -57,11 +119,7 @@ const defaultAppSettings$1 = settingsMigratorInternal.createDefault({
|
|
|
57
119
|
completed: false
|
|
58
120
|
}
|
|
59
121
|
},
|
|
60
|
-
|
|
61
|
-
enabled: false,
|
|
62
|
-
maxEntries: 50,
|
|
63
|
-
maxAge: 30
|
|
64
|
-
} }
|
|
122
|
+
plugins: DEFAULT_PLUGINS
|
|
65
123
|
});
|
|
66
124
|
const appSettingsMigrator$1 = settingsMigratorInternal.createMigrations({
|
|
67
125
|
defaultValue: defaultAppSettings$1,
|
|
@@ -112,14 +170,12 @@ const appSettingsMigrator$1 = settingsMigratorInternal.createMigrations({
|
|
|
112
170
|
createMigration$1({
|
|
113
171
|
version: "6.0.0",
|
|
114
172
|
up: (state) => {
|
|
173
|
+
const { cacheFolder, clearTemporaryFoldersOnPipelineEnd: __, ...rest } = state;
|
|
115
174
|
return {
|
|
116
|
-
...
|
|
175
|
+
...rest,
|
|
176
|
+
cacheFolder,
|
|
117
177
|
agents: [],
|
|
118
|
-
|
|
119
|
-
enabled: false,
|
|
120
|
-
maxEntries: 50,
|
|
121
|
-
maxAge: 30
|
|
122
|
-
} }
|
|
178
|
+
plugins: DEFAULT_PLUGINS
|
|
123
179
|
};
|
|
124
180
|
}
|
|
125
181
|
}),
|
|
@@ -129,9 +185,21 @@ const appSettingsMigrator$1 = settingsMigratorInternal.createMigrations({
|
|
|
129
185
|
})
|
|
130
186
|
]
|
|
131
187
|
});
|
|
188
|
+
const connectionsMigratorInternal = createMigrator();
|
|
189
|
+
const defaultConnections$1 = connectionsMigratorInternal.createDefault({
|
|
190
|
+
version: "1.0.0",
|
|
191
|
+
connections: []
|
|
192
|
+
});
|
|
193
|
+
const connectionsMigrator$1 = connectionsMigratorInternal.createMigrations({
|
|
194
|
+
defaultValue: defaultConnections$1,
|
|
195
|
+
migrations: [createMigration$1({
|
|
196
|
+
version: "1.0.0",
|
|
197
|
+
up: finalVersion
|
|
198
|
+
})]
|
|
199
|
+
});
|
|
132
200
|
const fileRepoMigratorInternal = createMigrator();
|
|
133
201
|
const defaultFileRepo$1 = fileRepoMigratorInternal.createDefault({
|
|
134
|
-
version: "
|
|
202
|
+
version: "3.0.0",
|
|
135
203
|
projects: [{
|
|
136
204
|
id: "main",
|
|
137
205
|
name: "Default project",
|
|
@@ -141,30 +209,39 @@ const defaultFileRepo$1 = fileRepoMigratorInternal.createDefault({
|
|
|
141
209
|
});
|
|
142
210
|
const fileRepoMigrations$1 = fileRepoMigratorInternal.createMigrations({
|
|
143
211
|
defaultValue: defaultFileRepo$1,
|
|
144
|
-
migrations: [
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
212
|
+
migrations: [
|
|
213
|
+
createMigration$1({
|
|
214
|
+
version: "1.0.0",
|
|
215
|
+
up: (state) => {
|
|
216
|
+
const pipelines = Object.entries(state.data || {}).map(([id, file]) => {
|
|
217
|
+
return {
|
|
218
|
+
...file,
|
|
219
|
+
id,
|
|
220
|
+
project: "main"
|
|
221
|
+
};
|
|
222
|
+
});
|
|
148
223
|
return {
|
|
149
|
-
...
|
|
150
|
-
|
|
151
|
-
|
|
224
|
+
...state,
|
|
225
|
+
projects: [{
|
|
226
|
+
id: "main",
|
|
227
|
+
name: "Default project",
|
|
228
|
+
description: "The initial default project"
|
|
229
|
+
}],
|
|
230
|
+
pipelines
|
|
152
231
|
};
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
up: finalVersion
|
|
167
|
-
})]
|
|
232
|
+
}
|
|
233
|
+
}),
|
|
234
|
+
createMigration$1({
|
|
235
|
+
version: "2.0.0",
|
|
236
|
+
up: (state) => {
|
|
237
|
+
return { ...state };
|
|
238
|
+
}
|
|
239
|
+
}),
|
|
240
|
+
createMigration$1({
|
|
241
|
+
version: "3.0.0",
|
|
242
|
+
up: finalVersion
|
|
243
|
+
})
|
|
244
|
+
]
|
|
168
245
|
});
|
|
169
246
|
const savedFileMigratorInternal = createMigrator();
|
|
170
247
|
const savedFileDefaultValue = savedFileMigratorInternal.createDefault({
|
|
@@ -175,8 +252,7 @@ const savedFileDefaultValue = savedFileMigratorInternal.createDefault({
|
|
|
175
252
|
description: "",
|
|
176
253
|
name: "",
|
|
177
254
|
variables: [],
|
|
178
|
-
|
|
179
|
-
version: "4.0.0"
|
|
255
|
+
version: "5.0.0"
|
|
180
256
|
});
|
|
181
257
|
const savedFileMigrator$1 = savedFileMigratorInternal.createMigrations({
|
|
182
258
|
defaultValue: savedFileDefaultValue,
|
|
@@ -239,16 +315,146 @@ const savedFileMigrator$1 = savedFileMigratorInternal.createMigrations({
|
|
|
239
315
|
}),
|
|
240
316
|
createMigration$1({
|
|
241
317
|
version: "4.0.0",
|
|
318
|
+
up: (_state) => {
|
|
319
|
+
const state = _state;
|
|
320
|
+
if (state.type === "simple") return {
|
|
321
|
+
name: state.name,
|
|
322
|
+
description: state.description,
|
|
323
|
+
canvas: {
|
|
324
|
+
blocks: [],
|
|
325
|
+
triggers: []
|
|
326
|
+
},
|
|
327
|
+
variables: []
|
|
328
|
+
};
|
|
329
|
+
const migrateBlock = (block, pluginsMap) => {
|
|
330
|
+
if (!block) return;
|
|
331
|
+
if (block.origin?.pluginId) {
|
|
332
|
+
block.origin.pluginId = getStrictPluginId(block.origin.pluginId);
|
|
333
|
+
block.origin.version = pluginsMap[block.origin.pluginId] ?? "latest";
|
|
334
|
+
}
|
|
335
|
+
};
|
|
336
|
+
const normalizedPlugins = {};
|
|
337
|
+
if (state.plugins) for (const [key, val] of Object.entries(state.plugins)) normalizedPlugins[getStrictPluginId(key)] = val;
|
|
338
|
+
if (state.canvas) {
|
|
339
|
+
for (const block of state.canvas.blocks ?? []) migrateBlock(block, normalizedPlugins);
|
|
340
|
+
for (const trigger of state.canvas.triggers ?? []) migrateBlock(trigger, normalizedPlugins);
|
|
341
|
+
}
|
|
342
|
+
const { plugins: _dropped, type: _type, ...rest } = state;
|
|
343
|
+
return rest;
|
|
344
|
+
}
|
|
345
|
+
}),
|
|
346
|
+
createMigration$1({
|
|
347
|
+
version: "5.0.0",
|
|
242
348
|
up: finalVersion
|
|
243
349
|
})
|
|
244
350
|
]
|
|
245
351
|
});
|
|
352
|
+
const LEGACY_ID_MAP = {
|
|
353
|
+
construct: "@pipelab/plugin-construct",
|
|
354
|
+
filesystem: "@pipelab/plugin-filesystem",
|
|
355
|
+
system: "@pipelab/plugin-system",
|
|
356
|
+
steam: "@pipelab/plugin-steam",
|
|
357
|
+
itch: "@pipelab/plugin-itch",
|
|
358
|
+
electron: "@pipelab/plugin-electron",
|
|
359
|
+
discord: "@pipelab/plugin-discord",
|
|
360
|
+
dicord: "@pipelab/plugin-discord",
|
|
361
|
+
"@pipelab/plugin-dicord": "@pipelab/plugin-discord",
|
|
362
|
+
poki: "@pipelab/plugin-poki",
|
|
363
|
+
nvpatch: "@pipelab/plugin-nvpatch",
|
|
364
|
+
tauri: "@pipelab/plugin-tauri",
|
|
365
|
+
minify: "@pipelab/plugin-minify",
|
|
366
|
+
netlify: "@pipelab/plugin-netlify"
|
|
367
|
+
};
|
|
368
|
+
const getStrictPluginId = (pluginId) => {
|
|
369
|
+
if (!pluginId) return pluginId;
|
|
370
|
+
return LEGACY_ID_MAP[pluginId] || pluginId;
|
|
371
|
+
};
|
|
372
|
+
const normalizeBlockPluginId = (block) => {
|
|
373
|
+
if (!block) return false;
|
|
374
|
+
let changed = false;
|
|
375
|
+
if (block.origin?.pluginId) {
|
|
376
|
+
const strictId = getStrictPluginId(block.origin.pluginId);
|
|
377
|
+
if (block.origin.pluginId !== strictId) {
|
|
378
|
+
block.origin.pluginId = strictId;
|
|
379
|
+
changed = true;
|
|
380
|
+
}
|
|
381
|
+
}
|
|
382
|
+
return changed;
|
|
383
|
+
};
|
|
384
|
+
const normalizePipelineConfig$1 = (state) => {
|
|
385
|
+
if (!state) return false;
|
|
386
|
+
let changed = false;
|
|
387
|
+
if (state.canvas) {
|
|
388
|
+
if (Array.isArray(state.canvas.blocks)) {
|
|
389
|
+
for (const block of state.canvas.blocks) if (normalizeBlockPluginId(block)) changed = true;
|
|
390
|
+
}
|
|
391
|
+
if (Array.isArray(state.canvas.triggers)) {
|
|
392
|
+
for (const trigger of state.canvas.triggers) if (normalizeBlockPluginId(trigger)) changed = true;
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
return changed;
|
|
396
|
+
};
|
|
246
397
|
const configRegistry$1 = {
|
|
247
398
|
settings: appSettingsMigrator$1,
|
|
248
399
|
projects: fileRepoMigrations$1,
|
|
249
|
-
pipeline: savedFileMigrator$1
|
|
400
|
+
pipeline: savedFileMigrator$1,
|
|
401
|
+
connections: connectionsMigrator$1
|
|
250
402
|
};
|
|
251
403
|
//#endregion
|
|
404
|
+
//#region src/save-location.ts
|
|
405
|
+
const SaveLocationInternalValidator = object({
|
|
406
|
+
id: string(),
|
|
407
|
+
project: string(),
|
|
408
|
+
lastModified: string(),
|
|
409
|
+
type: literal("internal"),
|
|
410
|
+
configName: string()
|
|
411
|
+
});
|
|
412
|
+
/** @deprecated External pipeline files are deprecated and will be removed in future versions. */
|
|
413
|
+
const SaveLocationExternalValidator = object({
|
|
414
|
+
id: string(),
|
|
415
|
+
project: string(),
|
|
416
|
+
path: string(),
|
|
417
|
+
lastModified: string(),
|
|
418
|
+
type: literal("external"),
|
|
419
|
+
summary: object({
|
|
420
|
+
plugins: array(string()),
|
|
421
|
+
name: string(),
|
|
422
|
+
description: string()
|
|
423
|
+
})
|
|
424
|
+
});
|
|
425
|
+
const SaveLocationPipelabCloudValidator = object({
|
|
426
|
+
id: string(),
|
|
427
|
+
project: string(),
|
|
428
|
+
type: literal("pipelab-cloud")
|
|
429
|
+
});
|
|
430
|
+
const SaveLocationValidator = union([
|
|
431
|
+
SaveLocationExternalValidator,
|
|
432
|
+
SaveLocationInternalValidator,
|
|
433
|
+
SaveLocationPipelabCloudValidator
|
|
434
|
+
]);
|
|
435
|
+
//#endregion
|
|
436
|
+
//#region src/config/projects-definition.ts
|
|
437
|
+
const FileRepoValidatorV1 = object({
|
|
438
|
+
version: literal("1.0.0"),
|
|
439
|
+
data: optional(record(string(), SaveLocationValidator), {})
|
|
440
|
+
});
|
|
441
|
+
const FileRepoProjectValidatorV2 = object({
|
|
442
|
+
id: string(),
|
|
443
|
+
name: string(),
|
|
444
|
+
description: string()
|
|
445
|
+
});
|
|
446
|
+
const FileRepoValidatorV2 = object({
|
|
447
|
+
version: literal("2.0.0"),
|
|
448
|
+
projects: array(FileRepoProjectValidatorV2),
|
|
449
|
+
pipelines: optional(array(SaveLocationValidator), [])
|
|
450
|
+
});
|
|
451
|
+
const FileRepoValidatorV3 = object({
|
|
452
|
+
version: literal("3.0.0"),
|
|
453
|
+
projects: array(FileRepoProjectValidatorV2),
|
|
454
|
+
pipelines: optional(array(SaveLocationValidator), [])
|
|
455
|
+
});
|
|
456
|
+
const FileRepoValidator = FileRepoValidatorV3;
|
|
457
|
+
//#endregion
|
|
252
458
|
//#region src/apis.ts
|
|
253
459
|
const ShellChannels = ["dialog:showOpenDialog", "dialog:showSaveDialog"];
|
|
254
460
|
//#endregion
|
|
@@ -360,12 +566,26 @@ const AppSettingsValidatorV7 = object({
|
|
|
360
566
|
name: string(),
|
|
361
567
|
url: string()
|
|
362
568
|
})),
|
|
363
|
-
|
|
569
|
+
plugins: array(object({
|
|
570
|
+
name: string(),
|
|
364
571
|
enabled: boolean(),
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
572
|
+
description: string()
|
|
573
|
+
})),
|
|
574
|
+
cacheFolder: optional(string()),
|
|
575
|
+
tempFolder: optional(string())
|
|
368
576
|
});
|
|
577
|
+
const ConnectionValidator = looseObject({
|
|
578
|
+
id: string(),
|
|
579
|
+
pluginName: string(),
|
|
580
|
+
name: string(),
|
|
581
|
+
createdAt: string(),
|
|
582
|
+
isDefault: boolean()
|
|
583
|
+
});
|
|
584
|
+
const ConnectionsValidatorV1 = object({
|
|
585
|
+
version: literal("1.0.0"),
|
|
586
|
+
connections: array(ConnectionValidator)
|
|
587
|
+
});
|
|
588
|
+
const ConnectionsValidator = ConnectionsValidatorV1;
|
|
369
589
|
const AppSettingsValidator = AppSettingsValidatorV7;
|
|
370
590
|
//#endregion
|
|
371
591
|
//#region src/logger.ts
|
|
@@ -547,9 +767,6 @@ const processGraph = async (options) => {
|
|
|
547
767
|
options.steps[rawNode.uid].outputs = result.result.outputs;
|
|
548
768
|
}
|
|
549
769
|
options.onNodeExit(rawNode);
|
|
550
|
-
} else if (rawNode.type === "loop") {
|
|
551
|
-
options.onNodeEnter(rawNode);
|
|
552
|
-
options.onNodeExit(rawNode);
|
|
553
770
|
} else if (rawNode.type === "comment") {} else if (rawNode.type === "event") {
|
|
554
771
|
options.onNodeEnter(rawNode);
|
|
555
772
|
options.onNodeExit(rawNode);
|
|
@@ -564,7 +781,7 @@ var en_US_default = {
|
|
|
564
781
|
settings: {
|
|
565
782
|
"darkTheme": "Dark theme",
|
|
566
783
|
"autosave": "Autosave",
|
|
567
|
-
"autosaveDescription": "
|
|
784
|
+
"autosaveDescription": "Automatically save changes to your pipelines in real-time.",
|
|
568
785
|
"language": "Language",
|
|
569
786
|
"languageOptions": {
|
|
570
787
|
"en-US": "English",
|
|
@@ -579,12 +796,16 @@ var en_US_default = {
|
|
|
579
796
|
"storage": "Storage",
|
|
580
797
|
"integrations": "Integrations",
|
|
581
798
|
"advanced": "Advanced",
|
|
582
|
-
"billing": "Billing"
|
|
799
|
+
"billing": "Billing",
|
|
800
|
+
"plugins": "Plugins",
|
|
801
|
+
"core-plugins": "Core Plugins",
|
|
802
|
+
"community-plugins": "Community Plugins",
|
|
803
|
+
"versions": "Versions"
|
|
583
804
|
},
|
|
584
805
|
"pipeline-cache-folder": "Pipeline Cache Folder:",
|
|
585
806
|
"enter-or-browse-for-a-folder": "Enter or browse for a folder",
|
|
586
807
|
"browse": "Browse",
|
|
587
|
-
"manage-where-the-app-stores-temporary-and-cache-files": "
|
|
808
|
+
"manage-where-the-app-stores-temporary-and-cache-files": "Configure local directories for temporary files and application cache.",
|
|
588
809
|
"clear-cache": "Clear cache",
|
|
589
810
|
"reset-to-default": "Reset to default",
|
|
590
811
|
"manage-subscription": "Manage Subscription",
|
|
@@ -594,16 +815,9 @@ var en_US_default = {
|
|
|
594
815
|
"failed-to-clear-cache-error-message": "Failed to clear cache: {0}",
|
|
595
816
|
"failed-to-reset-cache-folder-error-message": "Failed to reset cache folder: {0}",
|
|
596
817
|
"select-cache-folder": "Select Cache Folder",
|
|
597
|
-
"restart-dashboard-tour": "
|
|
598
|
-
"restart-editor-tour": "
|
|
599
|
-
"tour-reset-success": "
|
|
600
|
-
"retentionPolicy": "Retention Policy",
|
|
601
|
-
"retentionPolicyDescription": "Manage how long your build logs and history are kept.",
|
|
602
|
-
"retentionEnabled": "Enable Retention Policy",
|
|
603
|
-
"retentionMaxEntries": "Maximum Entries",
|
|
604
|
-
"retentionMaxEntriesDescription": "Keep up to this number of entries per pipeline.",
|
|
605
|
-
"retentionMaxAge": "Maximum Age (days)",
|
|
606
|
-
"retentionMaxAgeDescription": "Keep entries for up to this many days.",
|
|
818
|
+
"restart-dashboard-tour": "Reset Dashboard Guide",
|
|
819
|
+
"restart-editor-tour": "Reset Editor Guide",
|
|
820
|
+
"tour-reset-success": "Help guides have been reset. They will reappear on your next visit.",
|
|
607
821
|
"storage-pipelab": "Pipelab",
|
|
608
822
|
"storage-other": "Other Apps",
|
|
609
823
|
"storage-free": "Free Space",
|
|
@@ -613,12 +827,11 @@ var en_US_default = {
|
|
|
613
827
|
},
|
|
614
828
|
headers: {
|
|
615
829
|
"dashboard": "Dashboard",
|
|
616
|
-
"
|
|
830
|
+
"pipelines": "Pipelines",
|
|
617
831
|
"editor": "Editor",
|
|
618
|
-
"billing": "
|
|
832
|
+
"billing": "@:settings.tabs.billing",
|
|
619
833
|
"team": "Team"
|
|
620
834
|
},
|
|
621
|
-
navigation: { "build-history": "Build History" },
|
|
622
835
|
base: {
|
|
623
836
|
"close": "Close",
|
|
624
837
|
"save": "Save",
|
|
@@ -629,44 +842,55 @@ var en_US_default = {
|
|
|
629
842
|
"logs": "Logs",
|
|
630
843
|
"ok": "OK",
|
|
631
844
|
"add": "Add",
|
|
632
|
-
"search": "Search..."
|
|
845
|
+
"search": "Search...",
|
|
846
|
+
"success": "Success",
|
|
847
|
+
"error": "Error"
|
|
633
848
|
},
|
|
634
849
|
editor: {
|
|
635
850
|
"invalid-file-content": "Invalid file content",
|
|
636
851
|
"welcome-back": "Welcome back!",
|
|
637
|
-
"please-log-in-to-run-a-
|
|
638
|
-
"execution-done": "
|
|
639
|
-
"your-project-has-been-executed-successfully": "Your
|
|
640
|
-
"execution-failed": "
|
|
641
|
-
"project-has-encountered-an-error": "
|
|
642
|
-
"project-saved": "
|
|
643
|
-
"your-project-has-be-saved-successfully": "Your
|
|
852
|
+
"please-log-in-to-run-a-pipeline": "Please sign in to run this pipeline.",
|
|
853
|
+
"execution-done": "Run completed successfully",
|
|
854
|
+
"your-project-has-been-executed-successfully": "Your pipeline ran and completed successfully.",
|
|
855
|
+
"execution-failed": "Run failed",
|
|
856
|
+
"project-has-encountered-an-error": "The pipeline encountered an error:",
|
|
857
|
+
"project-saved": "Pipeline saved",
|
|
858
|
+
"your-project-has-be-saved-successfully": "Your pipeline has been saved successfully.",
|
|
644
859
|
"view-history": "History",
|
|
645
860
|
"add-plugin": "Add plugin",
|
|
646
|
-
"display-advanced-nodes": "Display advanced nodes"
|
|
861
|
+
"display-advanced-nodes": "Display advanced nodes",
|
|
862
|
+
"project-settings": "Pipeline Settings",
|
|
863
|
+
"jit-loading-title": "Preparing Plugins",
|
|
864
|
+
"jit-loading-subtitle": "Please wait while Pipelab downloads and configures the required plugins for this pipeline.",
|
|
865
|
+
"jit-loading-status": "Downloading and setting up plugin packages...",
|
|
866
|
+
"validation-failed": "Validation Failed",
|
|
867
|
+
"validation-plugin-disabled-or-missing": "The block \"{nodeName}\" requires the \"{pluginId}\" plugin, which is not currently installed or enabled.",
|
|
868
|
+
"validation-missing-param": "Please configure the required field \"{paramName}\" in the \"{nodeName}\" block."
|
|
647
869
|
},
|
|
648
870
|
home: {
|
|
649
871
|
"invalid-preset": "Invalid preset",
|
|
650
|
-
"store-project-on-the-cloud": "
|
|
872
|
+
"store-project-on-the-cloud": "Save project to Cloud",
|
|
651
873
|
"cloud": "Cloud",
|
|
652
|
-
"store-project-locally": "
|
|
874
|
+
"store-project-locally": "Save project locally",
|
|
653
875
|
"local": "Local",
|
|
654
876
|
"invalid-number-of-paths-selected": "Invalid number of paths selected",
|
|
655
877
|
"pipelab-project": "Pipelab Project",
|
|
656
878
|
"choose-a-new-path": "Choose a new path",
|
|
657
879
|
"invalid-file-type": "Invalid file type",
|
|
658
|
-
"create-project": "Create
|
|
659
|
-
"
|
|
880
|
+
"create-project": "Create Project",
|
|
881
|
+
"create-pipeline": "Create Pipeline",
|
|
882
|
+
"duplicate-project": "Duplicate Project",
|
|
883
|
+
"duplicate-pipeline": "Duplicate Pipeline",
|
|
660
884
|
"project-name": "Project Name",
|
|
661
885
|
"new-project": "New Project",
|
|
662
|
-
"new-pipeline": "New
|
|
886
|
+
"new-pipeline": "New Pipeline",
|
|
663
887
|
"open": "Open",
|
|
664
888
|
"import": "Import",
|
|
665
889
|
"pipeline-name": "Pipeline Name",
|
|
666
890
|
"your-projects": "Your projects",
|
|
667
891
|
"no-projects-yet": "No projects yet",
|
|
668
892
|
"no-pipelines-yet": "No pipelines yet",
|
|
669
|
-
"delete-project": "Delete
|
|
893
|
+
"delete-project": "Delete Project",
|
|
670
894
|
"confirm-delete-project": "Are you sure you want to delete this project? This action cannot be undone.",
|
|
671
895
|
"cannot-delete-project": "Cannot delete project",
|
|
672
896
|
"project-not-empty": "This project contains pipelines. Please delete them first.",
|
|
@@ -679,39 +903,49 @@ var en_US_default = {
|
|
|
679
903
|
"rename-project": "Rename Project",
|
|
680
904
|
"new-project-name": "New Project Name",
|
|
681
905
|
"premium-feature": "This is a premium feature",
|
|
682
|
-
"migrate-warning": "This file
|
|
683
|
-
"simple-pipeline": "
|
|
906
|
+
"migrate-warning": "This file format will soon be deprecated. Please migrate it to the new local workspace storage.",
|
|
907
|
+
"simple-pipeline": "Basic pipeline",
|
|
684
908
|
"advanced-pipeline": "Advanced pipeline",
|
|
685
909
|
"new-simple-project": "New simple project",
|
|
686
910
|
"new-advanced-project": "New advanced project",
|
|
687
|
-
"store-project-internally": "
|
|
911
|
+
"store-project-internally": "Save project locally",
|
|
688
912
|
"internal": "Internal",
|
|
689
|
-
"confirm-migration-message": "Are you sure you want to
|
|
913
|
+
"confirm-migration-message": "Are you sure you want to move this pipeline to local workspace storage? Pipelab will manage this pipeline internally.",
|
|
690
914
|
"migrate-pipeline": "Migrate Pipeline",
|
|
691
915
|
"migration-success": "Pipeline migrated successfully",
|
|
692
|
-
"migrate-to-internal": "
|
|
916
|
+
"migrate-to-internal": "Move to Workspace",
|
|
917
|
+
"only-internal-supported-notice": "Pipelab now manages all pipelines within the application workspace. External files are deprecated, but can be imported into your workspace.",
|
|
918
|
+
"import-pipeline": "Import Pipeline",
|
|
919
|
+
"import-from-stable": "Import from Stable...",
|
|
920
|
+
"import-from-beta": "Import from Beta...",
|
|
921
|
+
"import-pipeline-file": "Import pipeline file (.pipelab)...",
|
|
922
|
+
"import-success": "Pipeline imported successfully",
|
|
923
|
+
"failed-to-read-file": "Failed to read the selected file",
|
|
924
|
+
"export-pipeline": "Export Pipeline...",
|
|
925
|
+
"export-success": "Pipeline exported successfully",
|
|
926
|
+
"export-failed": "Failed to export pipeline"
|
|
693
927
|
},
|
|
694
|
-
|
|
928
|
+
pipelines: { "title": "@:headers.pipelines" },
|
|
695
929
|
tour: {
|
|
696
930
|
"start-tour": "Start Tour",
|
|
697
931
|
"projects-list-title": "Project Navigator",
|
|
698
|
-
"projects-list-description": "This sidebar
|
|
932
|
+
"projects-list-description": "This sidebar lists your projects. Selecting a project will show its pipelines in the main area.",
|
|
699
933
|
"add-project-title": "Create New Project",
|
|
700
|
-
"add-project-description": "Projects
|
|
701
|
-
"new-pipeline-title": "
|
|
702
|
-
"new-pipeline-description": "Ready to automate? Create a new pipeline to start adding
|
|
934
|
+
"add-project-description": "Projects organize your pipelines by topic or client. Click here to start a new project.",
|
|
935
|
+
"new-pipeline-title": "Create a Pipeline",
|
|
936
|
+
"new-pipeline-description": "Ready to automate? Create a new pipeline to start adding actions and logic.",
|
|
703
937
|
"project-actions-title": "Project Management",
|
|
704
938
|
"project-actions-description": "Use these buttons to rename or delete the currently selected project.",
|
|
705
939
|
"editor-canvas-title": "The Visual Canvas",
|
|
706
|
-
"editor-canvas-description": "This is your
|
|
940
|
+
"editor-canvas-description": "This is your canvas. Drag and drop action blocks here to build your automation flow.",
|
|
707
941
|
"editor-save-title": "Save Progress",
|
|
708
|
-
"editor-save-description": "Keep your changes safe. We recommend saving
|
|
709
|
-
"editor-run-title": "Test
|
|
710
|
-
"editor-run-description": "Click Run to
|
|
711
|
-
"editor-logs-title": "
|
|
712
|
-
"editor-logs-description": "The
|
|
713
|
-
"editor-close-title": "
|
|
714
|
-
"editor-close-description": "Done for now? Return to the dashboard to manage other projects
|
|
942
|
+
"editor-save-description": "Keep your changes safe. We recommend saving your pipeline frequently.",
|
|
943
|
+
"editor-run-title": "Test Pipeline",
|
|
944
|
+
"editor-run-description": "Click Run to test your pipeline. Pipelab will execute each block in real-time.",
|
|
945
|
+
"editor-logs-title": "Run Logs",
|
|
946
|
+
"editor-logs-description": "The log panel shows real-time execution steps, helping you monitor and debug.",
|
|
947
|
+
"editor-close-title": "Close Editor",
|
|
948
|
+
"editor-close-description": "Done for now? Return to the dashboard to manage other projects and pipelines."
|
|
715
949
|
}
|
|
716
950
|
};
|
|
717
951
|
//#endregion
|
|
@@ -719,43 +953,56 @@ var en_US_default = {
|
|
|
719
953
|
var fr_FR_default = {
|
|
720
954
|
settings: {
|
|
721
955
|
"darkTheme": "Thème sombre",
|
|
956
|
+
"autosave": "Enregistrement automatique",
|
|
957
|
+
"autosaveDescription": "Enregistrez automatiquement les modifications de vos pipelines en temps réel.",
|
|
722
958
|
"language": "Langue",
|
|
723
959
|
"languageOptions": {
|
|
724
960
|
"en-US": "English",
|
|
725
961
|
"fr-FR": "Français",
|
|
726
|
-
"pt-BR": "
|
|
727
|
-
"zh-CN": "
|
|
728
|
-
"es-ES": "
|
|
729
|
-
"de-DE": "
|
|
962
|
+
"pt-BR": "Português",
|
|
963
|
+
"zh-CN": "Chinois",
|
|
964
|
+
"es-ES": "Espagnol",
|
|
965
|
+
"de-DE": "Allemand"
|
|
730
966
|
},
|
|
731
967
|
"tabs": {
|
|
732
968
|
"general": "Général",
|
|
733
969
|
"storage": "Stockage",
|
|
734
970
|
"integrations": "Intégrations",
|
|
735
971
|
"advanced": "Avancé",
|
|
736
|
-
"billing": "Facturation"
|
|
972
|
+
"billing": "Facturation",
|
|
973
|
+
"plugins": "Extensions",
|
|
974
|
+
"core-plugins": "Extensions de base",
|
|
975
|
+
"community-plugins": "Extensions de la communauté",
|
|
976
|
+
"versions": "Versions"
|
|
737
977
|
},
|
|
738
|
-
"
|
|
739
|
-
"
|
|
740
|
-
"
|
|
741
|
-
"
|
|
742
|
-
"
|
|
743
|
-
"
|
|
744
|
-
"
|
|
745
|
-
"
|
|
746
|
-
"
|
|
747
|
-
"
|
|
748
|
-
"
|
|
749
|
-
"cache-
|
|
750
|
-
"
|
|
751
|
-
"
|
|
752
|
-
"
|
|
978
|
+
"pipeline-cache-folder": "Dossier cache des pipelines :",
|
|
979
|
+
"enter-or-browse-for-a-folder": "Saisir ou parcourir pour choisir un dossier",
|
|
980
|
+
"browse": "Parcourir",
|
|
981
|
+
"manage-where-the-app-stores-temporary-and-cache-files": "Configurez les dossiers locaux pour les fichiers temporaires et le cache de l'application.",
|
|
982
|
+
"clear-cache": "Vider le cache",
|
|
983
|
+
"reset-to-default": "Réinitialiser par défaut",
|
|
984
|
+
"manage-subscription": "Gérer l'abonnement",
|
|
985
|
+
"renewal-date": "Date de renouvellement",
|
|
986
|
+
"start-date": "Date de début :",
|
|
987
|
+
"cache-cleared-successfully": "Cache vidé avec succès",
|
|
988
|
+
"failed-to-clear-cache-error-message": "Échec du vidage du cache : {0}",
|
|
989
|
+
"failed-to-reset-cache-folder-error-message": "Échec de la réinitialisation du dossier cache : {0}",
|
|
990
|
+
"select-cache-folder": "Sélectionner le dossier cache",
|
|
991
|
+
"restart-dashboard-tour": "Réinitialiser le guide du tableau de bord",
|
|
992
|
+
"restart-editor-tour": "Réinitialiser le guide de l'éditeur",
|
|
993
|
+
"tour-reset-success": "Les guides d'aide ont été réinitialisés. Ils réapparaîtront lors de votre prochaine visite.",
|
|
994
|
+
"storage-pipelab": "Pipelab",
|
|
995
|
+
"storage-other": "Autres applications",
|
|
996
|
+
"storage-free": "Espace libre",
|
|
997
|
+
"disk-usage": "Utilisation du disque",
|
|
998
|
+
"free": "Libre",
|
|
999
|
+
"other": "Autre"
|
|
753
1000
|
},
|
|
754
1001
|
headers: {
|
|
755
1002
|
"dashboard": "Tableau de bord",
|
|
756
|
-
"
|
|
1003
|
+
"pipelines": "Pipelines",
|
|
757
1004
|
"editor": "Éditeur",
|
|
758
|
-
"billing": "
|
|
1005
|
+
"billing": "@:settings.tabs.billing",
|
|
759
1006
|
"team": "Équipe"
|
|
760
1007
|
},
|
|
761
1008
|
base: {
|
|
@@ -765,49 +1012,122 @@ var fr_FR_default = {
|
|
|
765
1012
|
"cancel": "Annuler",
|
|
766
1013
|
"end": "Fin",
|
|
767
1014
|
"delete": "Supprimer",
|
|
768
|
-
"logs": "
|
|
1015
|
+
"logs": "Journaux",
|
|
769
1016
|
"ok": "OK",
|
|
770
1017
|
"add": "Ajouter",
|
|
771
|
-
"search": "Rechercher..."
|
|
1018
|
+
"search": "Rechercher...",
|
|
1019
|
+
"success": "Succès",
|
|
1020
|
+
"error": "Erreur"
|
|
772
1021
|
},
|
|
773
1022
|
editor: {
|
|
774
1023
|
"invalid-file-content": "Contenu du fichier invalide",
|
|
775
|
-
"welcome-back": "Bon retour
|
|
776
|
-
"please-log-in-to-run-a-
|
|
777
|
-
"execution-done": "Exécution terminée",
|
|
778
|
-
"your-project-has-been-executed-successfully": "Votre
|
|
1024
|
+
"welcome-back": "Bon retour !",
|
|
1025
|
+
"please-log-in-to-run-a-pipeline": "Veuillez vous connecter pour exécuter ce pipeline.",
|
|
1026
|
+
"execution-done": "Exécution terminée avec succès",
|
|
1027
|
+
"your-project-has-been-executed-successfully": "Votre pipeline s'est exécuté et s'est terminé avec succès.",
|
|
779
1028
|
"execution-failed": "Échec de l'exécution",
|
|
780
|
-
"project-has-encountered-an-error": "Le
|
|
781
|
-
"project-saved": "
|
|
782
|
-
"your-project-has-be-saved-successfully": "Votre
|
|
783
|
-
"
|
|
784
|
-
"
|
|
1029
|
+
"project-has-encountered-an-error": "Le pipeline a rencontré une erreur :",
|
|
1030
|
+
"project-saved": "Pipeline enregistré",
|
|
1031
|
+
"your-project-has-be-saved-successfully": "Votre pipeline a été enregistré avec succès.",
|
|
1032
|
+
"view-history": "Historique",
|
|
1033
|
+
"add-plugin": "Ajouter une extension",
|
|
1034
|
+
"display-advanced-nodes": "Afficher les nœuds avancés",
|
|
1035
|
+
"project-settings": "Paramètres du pipeline",
|
|
1036
|
+
"jit-loading-title": "Préparation des extensions",
|
|
1037
|
+
"jit-loading-subtitle": "Veuillez patienter pendant que Pipelab télécharge et configure les extensions requises pour ce pipeline.",
|
|
1038
|
+
"jit-loading-status": "Téléchargement et configuration des paquets d'extension...",
|
|
1039
|
+
"validation-failed": "Échec de la validation",
|
|
1040
|
+
"validation-plugin-disabled-or-missing": "Le bloc \"{nodeName}\" requiert l'extension \"{pluginId}\", qui n'est pas installée ou activée actuellement.",
|
|
1041
|
+
"validation-missing-param": "Veuillez configurer le champ requis \"{paramName}\" dans le bloc \"{nodeName}\"."
|
|
785
1042
|
},
|
|
786
1043
|
home: {
|
|
787
|
-
"invalid-preset": "
|
|
788
|
-
"store-project-on-the-cloud": "Enregistrer le projet
|
|
789
|
-
"cloud": "
|
|
1044
|
+
"invalid-preset": "Modèle invalide",
|
|
1045
|
+
"store-project-on-the-cloud": "Enregistrer le projet dans le Cloud",
|
|
1046
|
+
"cloud": "Cloud",
|
|
790
1047
|
"store-project-locally": "Enregistrer le projet localement",
|
|
791
1048
|
"local": "Local",
|
|
792
|
-
"invalid-number-of-paths-selected": "Nombre
|
|
1049
|
+
"invalid-number-of-paths-selected": "Nombre de chemins sélectionné invalide",
|
|
793
1050
|
"pipelab-project": "Projet Pipelab",
|
|
794
|
-
"choose-a-new-path": "
|
|
1051
|
+
"choose-a-new-path": "Choisir un nouveau chemin",
|
|
795
1052
|
"invalid-file-type": "Type de fichier invalide",
|
|
796
|
-
"create-project": "Créer
|
|
797
|
-
"
|
|
1053
|
+
"create-project": "Créer le Projet",
|
|
1054
|
+
"create-pipeline": "Créer le Pipeline",
|
|
1055
|
+
"duplicate-project": "Dupliquer le Projet",
|
|
1056
|
+
"duplicate-pipeline": "Dupliquer le Pipeline",
|
|
798
1057
|
"project-name": "Nom du projet",
|
|
799
|
-
"new-project": "Nouveau
|
|
1058
|
+
"new-project": "Nouveau Projet",
|
|
1059
|
+
"new-pipeline": "Nouveau Pipeline",
|
|
800
1060
|
"open": "Ouvrir",
|
|
1061
|
+
"import": "Importer",
|
|
1062
|
+
"pipeline-name": "Nom du pipeline",
|
|
801
1063
|
"your-projects": "Vos projets",
|
|
802
|
-
"no-projects-yet": "Aucun projet
|
|
1064
|
+
"no-projects-yet": "Aucun projet pour le moment",
|
|
1065
|
+
"no-pipelines-yet": "Aucun pipeline pour le moment",
|
|
1066
|
+
"delete-project": "Supprimer le Projet",
|
|
1067
|
+
"confirm-delete-project": "Êtes-vous sûr de vouloir supprimer ce projet ? Cette action est irréversible.",
|
|
1068
|
+
"cannot-delete-project": "Impossible de supprimer le projet",
|
|
1069
|
+
"project-not-empty": "Ce projet contient des pipelines. Veuillez d'abord les supprimer.",
|
|
1070
|
+
"transfer": "Transférer",
|
|
1071
|
+
"transfer-successful": "Transfert réussi",
|
|
1072
|
+
"pipeline-transferred": "Pipeline transféré avec succès",
|
|
1073
|
+
"select-project": "Sélectionner le Projet",
|
|
1074
|
+
"build-history": "Historique des exécutions",
|
|
1075
|
+
"duplicate": "Dupliquer",
|
|
1076
|
+
"rename-project": "Renommer le Projet",
|
|
1077
|
+
"new-project-name": "Nouveau nom du projet",
|
|
1078
|
+
"premium-feature": "Ceci est une fonctionnalité premium",
|
|
1079
|
+
"migrate-warning": "Ce format de fichier sera bientôt obsolète. Veuillez le migrer vers le nouveau stockage local.",
|
|
1080
|
+
"simple-pipeline": "Pipeline basique",
|
|
1081
|
+
"advanced-pipeline": "Pipeline avancé",
|
|
1082
|
+
"new-simple-project": "Nouveau projet simple",
|
|
1083
|
+
"new-advanced-project": "Nouveau projet avancé",
|
|
1084
|
+
"store-project-internally": "Enregistrer le projet localement",
|
|
1085
|
+
"internal": "Interne",
|
|
1086
|
+
"confirm-migration-message": "Êtes-vous sûr de vouloir déplacer ce pipeline vers le stockage local de l'application ? Pipelab gérera ce pipeline en interne.",
|
|
1087
|
+
"migrate-pipeline": "Migrer le Pipeline",
|
|
1088
|
+
"migration-success": "Pipeline migré avec succès",
|
|
1089
|
+
"migrate-to-internal": "Déplacer vers l'espace de travail",
|
|
1090
|
+
"only-internal-supported-notice": "Pipelab gère désormais tous les pipelines au sein de l'espace de travail de l'application. Les fichiers externes sont obsolètes, mais peuvent toujours être importés.",
|
|
1091
|
+
"import-pipeline": "Importer le Pipeline",
|
|
1092
|
+
"import-from-stable": "Importer depuis Stable...",
|
|
1093
|
+
"import-from-beta": "Importer depuis Beta...",
|
|
1094
|
+
"import-pipeline-file": "Importer un fichier de pipeline (.pipelab)...",
|
|
1095
|
+
"import-success": "Pipeline importé avec succès",
|
|
1096
|
+
"failed-to-read-file": "Échec de la lecture du fichier sélectionné",
|
|
1097
|
+
"export-pipeline": "Exporter le pipeline...",
|
|
1098
|
+
"export-success": "Pipeline exporté avec succès",
|
|
1099
|
+
"export-failed": "Échec de l'exportation du pipeline"
|
|
803
1100
|
},
|
|
804
|
-
|
|
1101
|
+
pipelines: { "title": "@:headers.pipelines" },
|
|
1102
|
+
tour: {
|
|
1103
|
+
"start-tour": "Démarrer le guide",
|
|
1104
|
+
"projects-list-title": "Navigateur de projets",
|
|
1105
|
+
"projects-list-description": "Cette barre latérale liste vos projets. En sélectionnant un projet, ses pipelines s'afficheront dans la zone principale.",
|
|
1106
|
+
"add-project-title": "Créer un nouveau projet",
|
|
1107
|
+
"add-project-description": "Les projets organisent vos pipelines par sujet ou client. Cliquez ici pour commencer un nouveau projet.",
|
|
1108
|
+
"new-pipeline-title": "Créer un pipeline",
|
|
1109
|
+
"new-pipeline-description": "Prêt à automatiser ? Créez un nouveau pipeline pour commencer à ajouter des actions et de la logique.",
|
|
1110
|
+
"project-actions-title": "Gestion du projet",
|
|
1111
|
+
"project-actions-description": "Utilisez ces boutons pour renommer ou supprimer le projet actuellement sélectionné.",
|
|
1112
|
+
"editor-canvas-title": "Le canevas visuel",
|
|
1113
|
+
"editor-canvas-description": "Ceci est votre canevas. Glissez-déposez des blocs d'action ici pour construire votre flux d'automatisation.",
|
|
1114
|
+
"editor-save-title": "Enregistrer la progression",
|
|
1115
|
+
"editor-save-description": "Protégez vos modifications. Nous vous recommandons d'enregistrer fréquemment votre pipeline.",
|
|
1116
|
+
"editor-run-title": "Tester le pipeline",
|
|
1117
|
+
"editor-run-description": "Cliquez sur Exécuter pour tester votre pipeline. Pipelab exécutera chaque bloc en temps réel.",
|
|
1118
|
+
"editor-logs-title": "Journaux d'exécution",
|
|
1119
|
+
"editor-logs-description": "Le panneau des journaux affiche les étapes d'exécution en temps réel, vous aidant à surveiller et déboguer.",
|
|
1120
|
+
"editor-close-title": "Fermer l'éditeur",
|
|
1121
|
+
"editor-close-description": "Terminé pour le moment ? Retournez au tableau de bord pour gérer d'autres projets et pipelines."
|
|
1122
|
+
}
|
|
805
1123
|
};
|
|
806
1124
|
//#endregion
|
|
807
1125
|
//#region src/i18n/pt_BR.json
|
|
808
1126
|
var pt_BR_default = {
|
|
809
1127
|
settings: {
|
|
810
1128
|
"darkTheme": "Tema escuro",
|
|
1129
|
+
"autosave": "Salvar automaticamente",
|
|
1130
|
+
"autosaveDescription": "Salvar alterações em suas pipelines automaticamente em tempo real.",
|
|
811
1131
|
"language": "Idioma",
|
|
812
1132
|
"languageOptions": {
|
|
813
1133
|
"en-US": "English",
|
|
@@ -819,33 +1139,44 @@ var pt_BR_default = {
|
|
|
819
1139
|
},
|
|
820
1140
|
"tabs": {
|
|
821
1141
|
"general": "Geral",
|
|
822
|
-
"storage": "
|
|
1142
|
+
"storage": "Armazenamento",
|
|
823
1143
|
"integrations": "Integrações",
|
|
824
1144
|
"advanced": "Avançado",
|
|
825
|
-
"billing": "
|
|
1145
|
+
"billing": "Faturamento",
|
|
1146
|
+
"plugins": "Extensões",
|
|
1147
|
+
"core-plugins": "Extensões nativas",
|
|
1148
|
+
"community-plugins": "Extensões da comunidade",
|
|
1149
|
+
"versions": "Versões"
|
|
826
1150
|
},
|
|
827
|
-
"
|
|
828
|
-
"
|
|
829
|
-
"
|
|
830
|
-
"
|
|
831
|
-
"
|
|
832
|
-
"
|
|
833
|
-
"
|
|
834
|
-
"
|
|
835
|
-
"
|
|
836
|
-
"
|
|
837
|
-
"
|
|
838
|
-
"cache-
|
|
839
|
-
"
|
|
840
|
-
"
|
|
841
|
-
"
|
|
1151
|
+
"pipeline-cache-folder": "Pasta de cache de pipelines:",
|
|
1152
|
+
"enter-or-browse-for-a-folder": "Digite ou procure uma pasta",
|
|
1153
|
+
"browse": "Procurar",
|
|
1154
|
+
"manage-where-the-app-stores-temporary-and-cache-files": "Configurar pastas locais para arquivos temporários e cache do aplicativo.",
|
|
1155
|
+
"clear-cache": "Limpar cache",
|
|
1156
|
+
"reset-to-default": "Redefinir para o padrão",
|
|
1157
|
+
"manage-subscription": "Gerenciar assinatura",
|
|
1158
|
+
"renewal-date": "Data de renovação",
|
|
1159
|
+
"start-date": "Data de início:",
|
|
1160
|
+
"cache-cleared-successfully": "Cache limpo com sucesso",
|
|
1161
|
+
"failed-to-clear-cache-error-message": "Falha ao limpar cache: {0}",
|
|
1162
|
+
"failed-to-reset-cache-folder-error-message": "Falha ao redefinir pasta de cache: {0}",
|
|
1163
|
+
"select-cache-folder": "Selecionar pasta de cache",
|
|
1164
|
+
"restart-dashboard-tour": "Redefinir guia de início",
|
|
1165
|
+
"restart-editor-tour": "Redefinir guia do editor",
|
|
1166
|
+
"tour-reset-success": "Os guias de ajuda foram redefinidos. Eles reaparecerão em sua próxima visita.",
|
|
1167
|
+
"storage-pipelab": "Pipelab",
|
|
1168
|
+
"storage-other": "Outros aplicativos",
|
|
1169
|
+
"storage-free": "Espaço livre",
|
|
1170
|
+
"disk-usage": "Uso do disco",
|
|
1171
|
+
"free": "Livre",
|
|
1172
|
+
"other": "Outro"
|
|
842
1173
|
},
|
|
843
1174
|
headers: {
|
|
844
|
-
"dashboard": "
|
|
845
|
-
"
|
|
1175
|
+
"dashboard": "Início",
|
|
1176
|
+
"pipelines": "Pipelines",
|
|
846
1177
|
"editor": "Editor",
|
|
847
|
-
"billing": "
|
|
848
|
-
"team": "
|
|
1178
|
+
"billing": "@:settings.tabs.billing",
|
|
1179
|
+
"team": "Equipe"
|
|
849
1180
|
},
|
|
850
1181
|
base: {
|
|
851
1182
|
"close": "Fechar",
|
|
@@ -854,47 +1185,123 @@ var pt_BR_default = {
|
|
|
854
1185
|
"cancel": "Cancelar",
|
|
855
1186
|
"end": "Fim",
|
|
856
1187
|
"delete": "Excluir",
|
|
857
|
-
"logs": "
|
|
1188
|
+
"logs": "Registros",
|
|
858
1189
|
"ok": "OK",
|
|
859
|
-
"add": "Adicionar"
|
|
1190
|
+
"add": "Adicionar",
|
|
1191
|
+
"search": "Buscar...",
|
|
1192
|
+
"success": "Sucesso",
|
|
1193
|
+
"error": "Erro"
|
|
860
1194
|
},
|
|
861
1195
|
editor: {
|
|
862
|
-
"invalid-file-content": "
|
|
863
|
-
"welcome-back": "
|
|
864
|
-
"please-log-in-to-run-a-
|
|
865
|
-
"execution-done": "
|
|
866
|
-
"your-project-has-been-executed-successfully": "
|
|
867
|
-
"execution-failed": "
|
|
868
|
-
"project-has-encountered-an-error": "
|
|
869
|
-
"project-saved": "
|
|
870
|
-
"your-project-has-be-saved-successfully": "
|
|
1196
|
+
"invalid-file-content": "Conteúdo do arquivo inválido",
|
|
1197
|
+
"welcome-back": "Bem-vindo de volta!",
|
|
1198
|
+
"please-log-in-to-run-a-pipeline": "Por favor, faça login para executar esta pipeline.",
|
|
1199
|
+
"execution-done": "Execução concluída com sucesso",
|
|
1200
|
+
"your-project-has-been-executed-successfully": "Sua pipeline foi executada e concluída com sucesso.",
|
|
1201
|
+
"execution-failed": "Falha na execução",
|
|
1202
|
+
"project-has-encountered-an-error": "A pipeline encontrou um erro:",
|
|
1203
|
+
"project-saved": "Pipeline salva",
|
|
1204
|
+
"your-project-has-be-saved-successfully": "Sua pipeline foi salva com sucesso.",
|
|
1205
|
+
"view-history": "Histórico",
|
|
1206
|
+
"add-plugin": "Adicionar extensão",
|
|
1207
|
+
"display-advanced-nodes": "Exibir blocos avançados",
|
|
1208
|
+
"project-settings": "Ajustes da pipeline",
|
|
1209
|
+
"jit-loading-title": "Preparando extensões",
|
|
1210
|
+
"jit-loading-subtitle": "Aguarde enquanto o Pipelab baixa e configura as extensões necessárias para esta pipeline.",
|
|
1211
|
+
"jit-loading-status": "Baixando e configurando pacotes de extensões...",
|
|
1212
|
+
"validation-failed": "Falha na validação",
|
|
1213
|
+
"validation-plugin-disabled-or-missing": "O bloco \"{nodeName}\" requer a extensão \"{pluginId}\", que não está instalada ou ativada.",
|
|
1214
|
+
"validation-missing-param": "Por favor, configure o campo obrigatório \"{paramName}\" no bloco \"{nodeName}\"."
|
|
871
1215
|
},
|
|
872
1216
|
home: {
|
|
873
|
-
"invalid-preset": "
|
|
874
|
-
"store-project-on-the-cloud": "
|
|
875
|
-
"cloud": "
|
|
876
|
-
"store-project-locally": "
|
|
1217
|
+
"invalid-preset": "Modelo inválido",
|
|
1218
|
+
"store-project-on-the-cloud": "Salvar projeto na nuvem",
|
|
1219
|
+
"cloud": "Nuvem",
|
|
1220
|
+
"store-project-locally": "Salvar projeto localmente",
|
|
877
1221
|
"local": "Local",
|
|
878
|
-
"invalid-number-of-paths-selected": "
|
|
879
|
-
"pipelab-project": "Pipelab
|
|
880
|
-
"choose-a-new-path": "
|
|
881
|
-
"invalid-file-type": "
|
|
882
|
-
"create-project": "
|
|
883
|
-
"
|
|
884
|
-
"project
|
|
885
|
-
"
|
|
886
|
-
"
|
|
887
|
-
"
|
|
888
|
-
"
|
|
1222
|
+
"invalid-number-of-paths-selected": "Número de caminhos selecionado inválido",
|
|
1223
|
+
"pipelab-project": "Projeto Pipelab",
|
|
1224
|
+
"choose-a-new-path": "Escolha um novo caminho",
|
|
1225
|
+
"invalid-file-type": "Tipo de arquivo inválido",
|
|
1226
|
+
"create-project": "Criar Projeto",
|
|
1227
|
+
"create-pipeline": "Criar Pipeline",
|
|
1228
|
+
"duplicate-project": "Duplicar Projeto",
|
|
1229
|
+
"duplicate-pipeline": "Duplicar Pipeline",
|
|
1230
|
+
"project-name": "Nome do projeto",
|
|
1231
|
+
"new-project": "Novo Projeto",
|
|
1232
|
+
"new-pipeline": "Nova Pipeline",
|
|
1233
|
+
"open": "Abrir",
|
|
1234
|
+
"import": "Importar",
|
|
1235
|
+
"pipeline-name": "Nome da pipeline",
|
|
1236
|
+
"your-projects": "Seus projetos",
|
|
1237
|
+
"no-projects-yet": "Nenhum projeto ainda",
|
|
1238
|
+
"no-pipelines-yet": "Nenhuma pipeline ainda",
|
|
1239
|
+
"delete-project": "Excluir Projeto",
|
|
1240
|
+
"confirm-delete-project": "Tem certeza de que deseja excluir este projeto? Esta ação não pode ser desfeita.",
|
|
1241
|
+
"cannot-delete-project": "Não é possível excluir o projeto",
|
|
1242
|
+
"project-not-empty": "Este projeto contém pipelines. Por favor, exclua-os primeiro.",
|
|
1243
|
+
"transfer": "Transferir",
|
|
1244
|
+
"transfer-successful": "Transferência bem-sucedida",
|
|
1245
|
+
"pipeline-transferred": "Pipeline transferida com sucesso",
|
|
1246
|
+
"select-project": "Selecionar Projeto",
|
|
1247
|
+
"build-history": "Histórico de execuções",
|
|
1248
|
+
"duplicate": "Duplicar",
|
|
1249
|
+
"rename-project": "Renomear Projeto",
|
|
1250
|
+
"new-project-name": "Novo nome do projeto",
|
|
1251
|
+
"premium-feature": "Este é um recurso premium",
|
|
1252
|
+
"migrate-warning": "Este formato de arquivo em prazo curto será descontinuado. Por favor, migre-o para o novo armazenamento local do aplicativo.",
|
|
1253
|
+
"simple-pipeline": "Pipeline básica",
|
|
1254
|
+
"advanced-pipeline": "Pipeline avançada",
|
|
1255
|
+
"new-simple-project": "Novo projeto simples",
|
|
1256
|
+
"new-advanced-project": "Novo projeto avançado",
|
|
1257
|
+
"store-project-internally": "Salvar projeto localmente",
|
|
1258
|
+
"internal": "Interno",
|
|
1259
|
+
"confirm-migration-message": "Tem certeza de que deseja mover esta pipeline para o armazenamento local do aplicativo? O Pipelab gerenciará esta pipeline internamente.",
|
|
1260
|
+
"migrate-pipeline": "Migrar Pipeline",
|
|
1261
|
+
"migration-success": "Pipeline migrada com sucesso",
|
|
1262
|
+
"migrate-to-internal": "Mover para o espaço de trabalho",
|
|
1263
|
+
"only-internal-supported-notice": "O Pipelab agora gerencia todas as pipelines dentro do espaço de trabalho do aplicativo. Arquivos externos foram descontinuados, mas podem ser importados.",
|
|
1264
|
+
"import-pipeline": "Importar Pipeline",
|
|
1265
|
+
"import-from-stable": "Importar do Stable...",
|
|
1266
|
+
"import-from-beta": "Importar do Beta...",
|
|
1267
|
+
"import-pipeline-file": "Importar arquivo de pipeline (.pipelab)...",
|
|
1268
|
+
"import-success": "Pipeline importada com sucesso",
|
|
1269
|
+
"failed-to-read-file": "Falha ao ler o arquivo selecionado",
|
|
1270
|
+
"export-pipeline": "Exportar pipeline...",
|
|
1271
|
+
"export-success": "Pipeline exportado com sucesso",
|
|
1272
|
+
"export-failed": "Falha ao exportar pipeline"
|
|
889
1273
|
},
|
|
890
|
-
|
|
1274
|
+
pipelines: { "title": "@:headers.pipelines" },
|
|
1275
|
+
tour: {
|
|
1276
|
+
"start-tour": "Iniciar guia",
|
|
1277
|
+
"projects-list-title": "Navegador de projetos",
|
|
1278
|
+
"projects-list-description": "Esta barra lateral mostra seus projetos. Ao selecionar um, suas pipelines serão exibidas na área principal.",
|
|
1279
|
+
"add-project-title": "Criar novo projeto",
|
|
1280
|
+
"add-project-description": "Os projetos organizam suas pipelines por tópico ou cliente. Clique aqui para criar um novo projeto.",
|
|
1281
|
+
"new-pipeline-title": "Criar uma pipeline",
|
|
1282
|
+
"new-pipeline-description": "Pronto para automatizar? Crie uma nova pipeline para começar a adicionar ações e lógica.",
|
|
1283
|
+
"project-actions-title": "Gerenciamento de projetos",
|
|
1284
|
+
"project-actions-description": "Use estes botões para renomear ou excluir o projeto selecionado.",
|
|
1285
|
+
"editor-canvas-title": "O painel visual",
|
|
1286
|
+
"editor-canvas-description": "Este é o seu painel. Arraste e solte blocos de ação aqui para construir seu fluxo.",
|
|
1287
|
+
"editor-save-title": "Salvar progresso",
|
|
1288
|
+
"editor-save-description": "Mantenha suas alterações seguras. Recomendamos salvar sua pipeline frequentemente.",
|
|
1289
|
+
"editor-run-title": "Testar pipeline",
|
|
1290
|
+
"editor-run-description": "Clique em Executar para testar sua pipeline. O Pipelab executará cada bloco em tempo real.",
|
|
1291
|
+
"editor-logs-title": "Registros de execução",
|
|
1292
|
+
"editor-logs-description": "O painel de registros exibe as etapas de execução em tempo real, ajudando você a monitorar e depurar.",
|
|
1293
|
+
"editor-close-title": "Fechar editor",
|
|
1294
|
+
"editor-close-description": "Terminou por agora? Volte para o painel principal para gerenciar outros projetos e pipelines."
|
|
1295
|
+
}
|
|
891
1296
|
};
|
|
892
1297
|
//#endregion
|
|
893
1298
|
//#region src/i18n/zh_CN.json
|
|
894
1299
|
var zh_CN_default = {
|
|
895
1300
|
settings: {
|
|
896
|
-
"darkTheme": "
|
|
897
|
-
"
|
|
1301
|
+
"darkTheme": "深色主题",
|
|
1302
|
+
"autosave": "自动保存",
|
|
1303
|
+
"autosaveDescription": "自动保存流水线修改,省心省力。",
|
|
1304
|
+
"language": "语言",
|
|
898
1305
|
"languageOptions": {
|
|
899
1306
|
"en-US": "English",
|
|
900
1307
|
"fr-FR": "French",
|
|
@@ -904,34 +1311,45 @@ var zh_CN_default = {
|
|
|
904
1311
|
"de-DE": "German"
|
|
905
1312
|
},
|
|
906
1313
|
"tabs": {
|
|
907
|
-
"general": "
|
|
908
|
-
"storage": "
|
|
909
|
-
"integrations": "
|
|
910
|
-
"advanced": "
|
|
911
|
-
"billing": "
|
|
1314
|
+
"general": "常规",
|
|
1315
|
+
"storage": "存储",
|
|
1316
|
+
"integrations": "集成",
|
|
1317
|
+
"advanced": "高级",
|
|
1318
|
+
"billing": "计费",
|
|
1319
|
+
"plugins": "插件",
|
|
1320
|
+
"core-plugins": "核心插件",
|
|
1321
|
+
"community-plugins": "社区插件",
|
|
1322
|
+
"versions": "版本"
|
|
912
1323
|
},
|
|
913
|
-
"
|
|
914
|
-
"
|
|
915
|
-
"
|
|
916
|
-
"
|
|
917
|
-
"
|
|
918
|
-
"
|
|
919
|
-
"
|
|
920
|
-
"
|
|
921
|
-
"
|
|
922
|
-
"
|
|
923
|
-
"
|
|
924
|
-
"cache-
|
|
925
|
-
"
|
|
926
|
-
"
|
|
927
|
-
"
|
|
1324
|
+
"pipeline-cache-folder": "流水线缓存文件夹:",
|
|
1325
|
+
"enter-or-browse-for-a-folder": "输入或浏览选择文件夹",
|
|
1326
|
+
"browse": "浏览",
|
|
1327
|
+
"manage-where-the-app-stores-temporary-and-cache-files": "配置用于存储临时文件和应用程序缓存的本地目录。",
|
|
1328
|
+
"clear-cache": "清除缓存",
|
|
1329
|
+
"reset-to-default": "恢复默认",
|
|
1330
|
+
"manage-subscription": "管理订阅",
|
|
1331
|
+
"renewal-date": "续订日期",
|
|
1332
|
+
"start-date": "开始日期:",
|
|
1333
|
+
"cache-cleared-successfully": "缓存清除成功",
|
|
1334
|
+
"failed-to-clear-cache-error-message": "清除缓存失败: {0}",
|
|
1335
|
+
"failed-to-reset-cache-folder-error-message": "重置缓存文件夹失败: {0}",
|
|
1336
|
+
"select-cache-folder": "选择缓存文件夹",
|
|
1337
|
+
"restart-dashboard-tour": "重置仪表盘指南",
|
|
1338
|
+
"restart-editor-tour": "重置编辑器指南",
|
|
1339
|
+
"tour-reset-success": "帮助指南已重置。将在您下次访问时重新显示。",
|
|
1340
|
+
"storage-pipelab": "Pipelab",
|
|
1341
|
+
"storage-other": "其他应用",
|
|
1342
|
+
"storage-free": "空闲空间",
|
|
1343
|
+
"disk-usage": "磁盘使用情况",
|
|
1344
|
+
"free": "空闲",
|
|
1345
|
+
"other": "其他"
|
|
928
1346
|
},
|
|
929
1347
|
headers: {
|
|
930
|
-
"dashboard": "
|
|
931
|
-
"
|
|
932
|
-
"editor": "
|
|
933
|
-
"billing": "
|
|
934
|
-
"team": "
|
|
1348
|
+
"dashboard": "仪表盘",
|
|
1349
|
+
"pipelines": "流水线",
|
|
1350
|
+
"editor": "编辑器",
|
|
1351
|
+
"billing": "@:settings.tabs.billing",
|
|
1352
|
+
"team": "团队"
|
|
935
1353
|
},
|
|
936
1354
|
base: {
|
|
937
1355
|
"close": "关闭",
|
|
@@ -942,45 +1360,121 @@ var zh_CN_default = {
|
|
|
942
1360
|
"delete": "删除",
|
|
943
1361
|
"logs": "日志",
|
|
944
1362
|
"ok": "确定",
|
|
945
|
-
"add": "添加"
|
|
1363
|
+
"add": "添加",
|
|
1364
|
+
"search": "搜索...",
|
|
1365
|
+
"success": "成功",
|
|
1366
|
+
"error": "错误"
|
|
946
1367
|
},
|
|
947
1368
|
editor: {
|
|
948
|
-
"invalid-file-content": "
|
|
949
|
-
"welcome-back": "
|
|
950
|
-
"please-log-in-to-run-a-
|
|
951
|
-
"execution-done": "
|
|
952
|
-
"your-project-has-been-executed-successfully": "
|
|
953
|
-
"execution-failed": "
|
|
954
|
-
"project-has-encountered-an-error": "
|
|
955
|
-
"project-saved": "
|
|
956
|
-
"your-project-has-be-saved-successfully": "
|
|
1369
|
+
"invalid-file-content": "无效的文件内容",
|
|
1370
|
+
"welcome-back": "欢迎回来!",
|
|
1371
|
+
"please-log-in-to-run-a-pipeline": "请登录后运行此流水线。",
|
|
1372
|
+
"execution-done": "运行成功完成",
|
|
1373
|
+
"your-project-has-been-executed-successfully": "您的流水线已成功运行完成。",
|
|
1374
|
+
"execution-failed": "运行失败",
|
|
1375
|
+
"project-has-encountered-an-error": "流水线遇到错误:",
|
|
1376
|
+
"project-saved": "流水线已保存",
|
|
1377
|
+
"your-project-has-be-saved-successfully": "您的流水线已成功保存。",
|
|
1378
|
+
"view-history": "历史记录",
|
|
1379
|
+
"add-plugin": "添加插件",
|
|
1380
|
+
"display-advanced-nodes": "显示高级节点",
|
|
1381
|
+
"project-settings": "流水线设置",
|
|
1382
|
+
"jit-loading-title": "正在准备插件",
|
|
1383
|
+
"jit-loading-subtitle": "请稍候,Pipelab 正在下载并配置此流水线所需的插件。",
|
|
1384
|
+
"jit-loading-status": "正在下载并安装插件包...",
|
|
1385
|
+
"validation-failed": "验证失败",
|
|
1386
|
+
"validation-plugin-disabled-or-missing": "节点 \"{nodeName}\" 需要插件 \"{pluginId}\",该插件目前未安装或未启用。",
|
|
1387
|
+
"validation-missing-param": "请配置节点 \"{nodeName}\" 中的必填字段 \"{paramName}\"。"
|
|
957
1388
|
},
|
|
958
1389
|
home: {
|
|
959
|
-
"invalid-preset": "
|
|
960
|
-
"store-project-on-the-cloud": "
|
|
961
|
-
"cloud": "
|
|
962
|
-
"store-project-locally": "
|
|
963
|
-
"local": "
|
|
964
|
-
"invalid-number-of-paths-selected": "
|
|
965
|
-
"pipelab-project": "Pipelab
|
|
966
|
-
"choose-a-new-path": "
|
|
967
|
-
"invalid-file-type": "
|
|
968
|
-
"create-project": "
|
|
969
|
-
"
|
|
970
|
-
"project
|
|
971
|
-
"
|
|
972
|
-
"
|
|
973
|
-
"
|
|
974
|
-
"
|
|
1390
|
+
"invalid-preset": "无效的预设",
|
|
1391
|
+
"store-project-on-the-cloud": "保存项目到云端",
|
|
1392
|
+
"cloud": "云端",
|
|
1393
|
+
"store-project-locally": "本地保存项目",
|
|
1394
|
+
"local": "本地",
|
|
1395
|
+
"invalid-number-of-paths-selected": "选择的路径数量无效",
|
|
1396
|
+
"pipelab-project": "Pipelab 项目",
|
|
1397
|
+
"choose-a-new-path": "选择新路径",
|
|
1398
|
+
"invalid-file-type": "无效的文件类型",
|
|
1399
|
+
"create-project": "创建项目",
|
|
1400
|
+
"create-pipeline": "创建流水线",
|
|
1401
|
+
"duplicate-project": "复制项目",
|
|
1402
|
+
"duplicate-pipeline": "复制流水线",
|
|
1403
|
+
"project-name": "项目名称",
|
|
1404
|
+
"new-project": "新建项目",
|
|
1405
|
+
"new-pipeline": "新建流水线",
|
|
1406
|
+
"open": "打开",
|
|
1407
|
+
"import": "导入",
|
|
1408
|
+
"pipeline-name": "流水线名称",
|
|
1409
|
+
"your-projects": "您的项目",
|
|
1410
|
+
"no-projects-yet": "暂无项目",
|
|
1411
|
+
"no-pipelines-yet": "暂无流水线",
|
|
1412
|
+
"delete-project": "删除项目",
|
|
1413
|
+
"confirm-delete-project": "您确定要删除此项目吗?此操作无法撤销。",
|
|
1414
|
+
"cannot-delete-project": "无法删除项目",
|
|
1415
|
+
"project-not-empty": "此项目包含流水线。请先删除它们。",
|
|
1416
|
+
"transfer": "转移",
|
|
1417
|
+
"transfer-successful": "转移成功",
|
|
1418
|
+
"pipeline-transferred": "流水线已成功转移",
|
|
1419
|
+
"select-project": "选择项目",
|
|
1420
|
+
"build-history": "运行历史",
|
|
1421
|
+
"duplicate": "复制",
|
|
1422
|
+
"rename-project": "重命名项目",
|
|
1423
|
+
"new-project-name": "新项目名称",
|
|
1424
|
+
"premium-feature": "这是高级会员功能",
|
|
1425
|
+
"migrate-warning": "此文件格式即将被弃用。请将其迁移到新的本地工作区存储。",
|
|
1426
|
+
"simple-pipeline": "基础流水线",
|
|
1427
|
+
"advanced-pipeline": "高级流水线",
|
|
1428
|
+
"new-simple-project": "新建简单项目",
|
|
1429
|
+
"new-advanced-project": "新建高级项目",
|
|
1430
|
+
"store-project-internally": "本地保存项目",
|
|
1431
|
+
"internal": "内部",
|
|
1432
|
+
"confirm-migration-message": "您确定要将此流水线移动到本地工作区存储吗?Pipelab 将在内部管理此流水线。",
|
|
1433
|
+
"migrate-pipeline": "迁移流水线",
|
|
1434
|
+
"migration-success": "流水线已成功迁移",
|
|
1435
|
+
"migrate-to-internal": "移动到工作区",
|
|
1436
|
+
"only-internal-supported-notice": "Pipelab 现在管理应用工作区内的所有流水线。外部文件已被弃用,但仍可以导入。",
|
|
1437
|
+
"import-pipeline": "导入流水线",
|
|
1438
|
+
"import-from-stable": "从 Stable 导入...",
|
|
1439
|
+
"import-from-beta": "从 Beta 导入...",
|
|
1440
|
+
"import-pipeline-file": "导入管道文件 (.pipelab)...",
|
|
1441
|
+
"import-success": "流水线已成功导入",
|
|
1442
|
+
"failed-to-read-file": "读取所选文件失败",
|
|
1443
|
+
"export-pipeline": "导出流水线...",
|
|
1444
|
+
"export-success": "流水线导出成功",
|
|
1445
|
+
"export-failed": "导出流水线失败"
|
|
975
1446
|
},
|
|
976
|
-
|
|
1447
|
+
pipelines: { "title": "@:headers.pipelines" },
|
|
1448
|
+
tour: {
|
|
1449
|
+
"start-tour": "开始向导",
|
|
1450
|
+
"projects-list-title": "项目导航器",
|
|
1451
|
+
"projects-list-description": "此侧边栏列出您的项目。选择一个项目将在主区域显示其包含的流水线。",
|
|
1452
|
+
"add-project-title": "创建新项目",
|
|
1453
|
+
"add-project-description": "项目可以按主题或客户组织您的流水线。点击这里开始一个新项目。",
|
|
1454
|
+
"new-pipeline-title": "创建流水线",
|
|
1455
|
+
"new-pipeline-description": "准备好自动化了吗?创建一个新流水线开始添加操作和逻辑。",
|
|
1456
|
+
"project-actions-title": "项目管理",
|
|
1457
|
+
"project-actions-description": "使用这些按钮重命名或删除当前选择的项目。",
|
|
1458
|
+
"editor-canvas-title": "可视化画布",
|
|
1459
|
+
"editor-canvas-description": "这是您的画布。拖放操作块到这里以构建您的自动化流程。",
|
|
1460
|
+
"editor-save-title": "保存进度",
|
|
1461
|
+
"editor-save-description": "确保您的更改已安全保存。我们建议您经常保存流水线。",
|
|
1462
|
+
"editor-run-title": "测试流水线",
|
|
1463
|
+
"editor-run-description": "点击“运行”测试流水线。Pipelab 将实时执行每个步骤。",
|
|
1464
|
+
"editor-logs-title": "运行日志",
|
|
1465
|
+
"editor-logs-description": "日志面板实时显示执行步骤,帮助您监控和调试。",
|
|
1466
|
+
"editor-close-title": "关闭编辑器",
|
|
1467
|
+
"editor-close-description": "今天的工作完成了吗?返回仪表盘以管理其他项目和流水线。"
|
|
1468
|
+
}
|
|
977
1469
|
};
|
|
978
1470
|
//#endregion
|
|
979
1471
|
//#region src/i18n/es_ES.json
|
|
980
1472
|
var es_ES_default = {
|
|
981
1473
|
settings: {
|
|
982
|
-
"darkTheme": "
|
|
983
|
-
"
|
|
1474
|
+
"darkTheme": "Tema oscuro",
|
|
1475
|
+
"autosave": "Guardado automático",
|
|
1476
|
+
"autosaveDescription": "Guarda automáticamente los cambios en tus pipelines en tiempo real.",
|
|
1477
|
+
"language": "Idioma",
|
|
984
1478
|
"languageOptions": {
|
|
985
1479
|
"en-US": "English",
|
|
986
1480
|
"fr-FR": "French",
|
|
@@ -991,33 +1485,44 @@ var es_ES_default = {
|
|
|
991
1485
|
},
|
|
992
1486
|
"tabs": {
|
|
993
1487
|
"general": "General",
|
|
994
|
-
"storage": "
|
|
995
|
-
"integrations": "
|
|
996
|
-
"advanced": "
|
|
997
|
-
"billing": "
|
|
1488
|
+
"storage": "Almacenamiento",
|
|
1489
|
+
"integrations": "Integraciones",
|
|
1490
|
+
"advanced": "Avanzado",
|
|
1491
|
+
"billing": "Facturación",
|
|
1492
|
+
"plugins": "Complementos",
|
|
1493
|
+
"core-plugins": "Complementos principales",
|
|
1494
|
+
"community-plugins": "Complementos de la comunidad",
|
|
1495
|
+
"versions": "Versiones"
|
|
998
1496
|
},
|
|
999
|
-
"
|
|
1000
|
-
"
|
|
1001
|
-
"
|
|
1002
|
-
"
|
|
1003
|
-
"
|
|
1004
|
-
"
|
|
1005
|
-
"
|
|
1006
|
-
"
|
|
1007
|
-
"
|
|
1008
|
-
"
|
|
1009
|
-
"
|
|
1010
|
-
"cache-
|
|
1011
|
-
"
|
|
1012
|
-
"
|
|
1013
|
-
"
|
|
1497
|
+
"pipeline-cache-folder": "Carpeta de caché de pipelines:",
|
|
1498
|
+
"enter-or-browse-for-a-folder": "Escribe o busca una carpeta",
|
|
1499
|
+
"browse": "Buscar",
|
|
1500
|
+
"manage-where-the-app-stores-temporary-and-cache-files": "Configura carpetas locales para archivos temporales y caché de la aplicación.",
|
|
1501
|
+
"clear-cache": "Limpiar caché",
|
|
1502
|
+
"reset-to-default": "Restablecer por defecto",
|
|
1503
|
+
"manage-subscription": "Gestionar suscripción",
|
|
1504
|
+
"renewal-date": "Fecha de renovación",
|
|
1505
|
+
"start-date": "Fecha de inicio:",
|
|
1506
|
+
"cache-cleared-successfully": "Caché limpia con éxito",
|
|
1507
|
+
"failed-to-clear-cache-error-message": "Error al limpiar la caché: {0}",
|
|
1508
|
+
"failed-to-reset-cache-folder-error-message": "Error al restablecer la carpeta de caché: {0}",
|
|
1509
|
+
"select-cache-folder": "Seleccionar carpeta de caché",
|
|
1510
|
+
"restart-dashboard-tour": "Restablecer guía de inicio",
|
|
1511
|
+
"restart-editor-tour": "Restablecer guía del editor",
|
|
1512
|
+
"tour-reset-success": "Las guías de ayuda se han restablecido. Volverán a aparecer en tu próxima visita.",
|
|
1513
|
+
"storage-pipelab": "Pipelab",
|
|
1514
|
+
"storage-other": "Otras aplicaciones",
|
|
1515
|
+
"storage-free": "Espacio libre",
|
|
1516
|
+
"disk-usage": "Uso del disco",
|
|
1517
|
+
"free": "Libre",
|
|
1518
|
+
"other": "Otro"
|
|
1014
1519
|
},
|
|
1015
1520
|
headers: {
|
|
1016
|
-
"dashboard": "
|
|
1017
|
-
"
|
|
1521
|
+
"dashboard": "Inicio",
|
|
1522
|
+
"pipelines": "Pipelines",
|
|
1018
1523
|
"editor": "Editor",
|
|
1019
|
-
"billing": "
|
|
1020
|
-
"team": "
|
|
1524
|
+
"billing": "@:settings.tabs.billing",
|
|
1525
|
+
"team": "Equipo"
|
|
1021
1526
|
},
|
|
1022
1527
|
base: {
|
|
1023
1528
|
"close": "Cerrar",
|
|
@@ -1028,45 +1533,121 @@ var es_ES_default = {
|
|
|
1028
1533
|
"delete": "Eliminar",
|
|
1029
1534
|
"logs": "Registros",
|
|
1030
1535
|
"ok": "Aceptar",
|
|
1031
|
-
"add": "Añadir"
|
|
1536
|
+
"add": "Añadir",
|
|
1537
|
+
"search": "Buscar...",
|
|
1538
|
+
"success": "Éxito",
|
|
1539
|
+
"error": "Error"
|
|
1032
1540
|
},
|
|
1033
1541
|
editor: {
|
|
1034
|
-
"invalid-file-content": "
|
|
1035
|
-
"welcome-back": "
|
|
1036
|
-
"please-log-in-to-run-a-
|
|
1037
|
-
"execution-done": "
|
|
1038
|
-
"your-project-has-been-executed-successfully": "
|
|
1039
|
-
"execution-failed": "
|
|
1040
|
-
"project-has-encountered-an-error": "
|
|
1041
|
-
"project-saved": "
|
|
1042
|
-
"your-project-has-be-saved-successfully": "
|
|
1542
|
+
"invalid-file-content": "Contenido de archivo no válido",
|
|
1543
|
+
"welcome-back": "¡Bienvenido de nuevo!",
|
|
1544
|
+
"please-log-in-to-run-a-pipeline": "Inicia sesión para ejecutar este pipeline.",
|
|
1545
|
+
"execution-done": "Ejecución completada con éxito",
|
|
1546
|
+
"your-project-has-been-executed-successfully": "Tu pipeline se ha ejecutado correctamente.",
|
|
1547
|
+
"execution-failed": "Ejecución fallida",
|
|
1548
|
+
"project-has-encountered-an-error": "El pipeline ha encontrado un error:",
|
|
1549
|
+
"project-saved": "Pipeline guardado",
|
|
1550
|
+
"your-project-has-be-saved-successfully": "Tu pipeline se ha guardado correctamente.",
|
|
1551
|
+
"view-history": "Historial",
|
|
1552
|
+
"add-plugin": "Añadir complemento",
|
|
1553
|
+
"display-advanced-nodes": "Mostrar bloques avanzados",
|
|
1554
|
+
"project-settings": "Ajustes del pipeline",
|
|
1555
|
+
"jit-loading-title": "Preparando complementos",
|
|
1556
|
+
"jit-loading-subtitle": "Espera mientras Pipelab descarga y configura los complementos necesarios para este pipeline.",
|
|
1557
|
+
"jit-loading-status": "Descargando y configurando paquetes de complementos...",
|
|
1558
|
+
"validation-failed": "Validación fallida",
|
|
1559
|
+
"validation-plugin-disabled-or-missing": "El bloque \"{nodeName}\" requiere el complemento \"{pluginId}\", que no está instalado o activo.",
|
|
1560
|
+
"validation-missing-param": "Configura el campo obligatorio \"{paramName}\" en el bloque \"{nodeName}\"."
|
|
1043
1561
|
},
|
|
1044
1562
|
home: {
|
|
1045
|
-
"invalid-preset": "
|
|
1046
|
-
"store-project-on-the-cloud": "
|
|
1047
|
-
"cloud": "
|
|
1048
|
-
"store-project-locally": "
|
|
1563
|
+
"invalid-preset": "Plantilla no válida",
|
|
1564
|
+
"store-project-on-the-cloud": "Guardar proyecto en la nube",
|
|
1565
|
+
"cloud": "Nube",
|
|
1566
|
+
"store-project-locally": "Guardar proyecto localmente",
|
|
1049
1567
|
"local": "Local",
|
|
1050
|
-
"invalid-number-of-paths-selected": "
|
|
1051
|
-
"pipelab-project": "Pipelab
|
|
1052
|
-
"choose-a-new-path": "
|
|
1053
|
-
"invalid-file-type": "
|
|
1054
|
-
"create-project": "
|
|
1055
|
-
"
|
|
1056
|
-
"project
|
|
1057
|
-
"
|
|
1058
|
-
"
|
|
1059
|
-
"
|
|
1060
|
-
"
|
|
1568
|
+
"invalid-number-of-paths-selected": "Número de rutas seleccionado no válido",
|
|
1569
|
+
"pipelab-project": "Proyecto Pipelab",
|
|
1570
|
+
"choose-a-new-path": "Elige una nueva ruta",
|
|
1571
|
+
"invalid-file-type": "Tipo de archivo no válido",
|
|
1572
|
+
"create-project": "Crear Proyecto",
|
|
1573
|
+
"create-pipeline": "Crear Pipeline",
|
|
1574
|
+
"duplicate-project": "Duplicar Proyecto",
|
|
1575
|
+
"duplicate-pipeline": "Duplicar Pipeline",
|
|
1576
|
+
"project-name": "Nombre del proyecto",
|
|
1577
|
+
"new-project": "Nuevo Proyecto",
|
|
1578
|
+
"new-pipeline": "Nuevo Pipeline",
|
|
1579
|
+
"open": "Abrir",
|
|
1580
|
+
"import": "Importar",
|
|
1581
|
+
"pipeline-name": "Nombre del pipeline",
|
|
1582
|
+
"your-projects": "Tus proyectos",
|
|
1583
|
+
"no-projects-yet": "Aún no hay proyectos",
|
|
1584
|
+
"no-pipelines-yet": "Aún no hay pipelines",
|
|
1585
|
+
"delete-project": "Eliminar Proyecto",
|
|
1586
|
+
"confirm-delete-project": "¿Estás seguro de que quieres eliminar este proyecto? Esta acción no se puede deshacer.",
|
|
1587
|
+
"cannot-delete-project": "No se puede eliminar el proyecto",
|
|
1588
|
+
"project-not-empty": "Este proyecto contiene pipelines. Elíminalos primero.",
|
|
1589
|
+
"transfer": "Transferir",
|
|
1590
|
+
"transfer-successful": "Transferencia completada",
|
|
1591
|
+
"pipeline-transferred": "Pipeline transferido con éxito",
|
|
1592
|
+
"select-project": "Seleccionar Proyecto",
|
|
1593
|
+
"build-history": "Historial de ejecuciones",
|
|
1594
|
+
"duplicate": "Duplicar",
|
|
1595
|
+
"rename-project": "Renombrar Proyecto",
|
|
1596
|
+
"new-project-name": "Nuevo nombre del proyecto",
|
|
1597
|
+
"premium-feature": "Esta es una función premium",
|
|
1598
|
+
"migrate-warning": "Este formato de archivo pronto quedará obsoleto. Mígralo al nuevo almacenamiento local de la aplicación.",
|
|
1599
|
+
"simple-pipeline": "Pipeline básico",
|
|
1600
|
+
"advanced-pipeline": "Pipeline avanzado",
|
|
1601
|
+
"new-simple-project": "Nuevo proyecto simple",
|
|
1602
|
+
"new-advanced-project": "Nuevo proyecto avanzado",
|
|
1603
|
+
"store-project-internally": "Guardar proyecto localmente",
|
|
1604
|
+
"internal": "Interno",
|
|
1605
|
+
"confirm-migration-message": "¿Estás seguro de que quieres mover este pipeline al almacenamiento local de la aplicación? Pipelab gérera este pipeline internamente.",
|
|
1606
|
+
"migrate-pipeline": "Migrar Pipeline",
|
|
1607
|
+
"migration-success": "Pipeline migrado con éxito",
|
|
1608
|
+
"migrate-to-internal": "Mover al espacio de trabajo",
|
|
1609
|
+
"only-internal-supported-notice": "Pipelab ahora gestiona todos los pipelines dentro del espacio de trabajo. Los archivos externos están obsoletos, pero pueden importarse.",
|
|
1610
|
+
"import-pipeline": "Importar Pipeline",
|
|
1611
|
+
"import-from-stable": "Importar desde Stable...",
|
|
1612
|
+
"import-from-beta": "Importar desde Beta...",
|
|
1613
|
+
"import-pipeline-file": "Importar archivo de pipeline (.pipelab)...",
|
|
1614
|
+
"import-success": "Pipeline importado con éxito",
|
|
1615
|
+
"failed-to-read-file": "Error al leer el archivo seleccionado",
|
|
1616
|
+
"export-pipeline": "Exportar pipeline...",
|
|
1617
|
+
"export-success": "Pipeline exportado correctamente",
|
|
1618
|
+
"export-failed": "Error al exportar el pipeline"
|
|
1061
1619
|
},
|
|
1062
|
-
|
|
1620
|
+
pipelines: { "title": "@:headers.pipelines" },
|
|
1621
|
+
tour: {
|
|
1622
|
+
"start-tour": "Iniciar guía",
|
|
1623
|
+
"projects-list-title": "Navegador de proyectos",
|
|
1624
|
+
"projects-list-description": "Esta barra lateral muestra tus proyectos. Al seleccionar uno se mostrarán sus pipelines en el área principal.",
|
|
1625
|
+
"add-project-title": "Crear nuevo proyecto",
|
|
1626
|
+
"add-project-description": "Los proyectos organizan tus pipelines por tema o cliente. Haz clic aquí para crear uno.",
|
|
1627
|
+
"new-pipeline-title": "Crear un pipeline",
|
|
1628
|
+
"new-pipeline-description": "¿Listo para automatizar? Crea un nuevo pipeline para empezar a añadir acciones y lógica.",
|
|
1629
|
+
"project-actions-title": "Gestión de proyectos",
|
|
1630
|
+
"project-actions-description": "Usa estos botones para renombrar o eliminar el proyecto seleccionado.",
|
|
1631
|
+
"editor-canvas-title": "El lienzo visual",
|
|
1632
|
+
"editor-canvas-description": "Este es tu lienzo. Arrastra y suelta bloques de acción aquí para construir tu flujo.",
|
|
1633
|
+
"editor-save-title": "Guardar progreso",
|
|
1634
|
+
"editor-save-description": "Mantén tus cambios seguros. Te recomendamos guardar tu pipeline con frecuencia.",
|
|
1635
|
+
"editor-run-title": "Probar pipeline",
|
|
1636
|
+
"editor-run-description": "Haz clic en Ejecutar para probar tu pipeline. Pipelab ejecutará cada bloque en tiempo real.",
|
|
1637
|
+
"editor-logs-title": "Registros de ejecución",
|
|
1638
|
+
"editor-logs-description": "El panel de registros muestra los pasos en tiempo real, ayudándote a supervisar y depurar.",
|
|
1639
|
+
"editor-close-title": "Cerrar editor",
|
|
1640
|
+
"editor-close-description": "¿Has terminado? Vuelve al panel de inicio para gestionar otros proyectos y pipelines."
|
|
1641
|
+
}
|
|
1063
1642
|
};
|
|
1064
1643
|
//#endregion
|
|
1065
1644
|
//#region src/i18n/de_DE.json
|
|
1066
1645
|
var de_DE_default = {
|
|
1067
1646
|
settings: {
|
|
1068
|
-
"darkTheme": "
|
|
1069
|
-
"
|
|
1647
|
+
"darkTheme": "Dunkles Design",
|
|
1648
|
+
"autosave": "Automatisch speichern",
|
|
1649
|
+
"autosaveDescription": "Änderungen an Ihren Pipelines automatisch in Echtzeit speichern.",
|
|
1650
|
+
"language": "Sprache",
|
|
1070
1651
|
"languageOptions": {
|
|
1071
1652
|
"en-US": "English",
|
|
1072
1653
|
"fr-FR": "French",
|
|
@@ -1076,33 +1657,44 @@ var de_DE_default = {
|
|
|
1076
1657
|
"de-DE": "German"
|
|
1077
1658
|
},
|
|
1078
1659
|
"tabs": {
|
|
1079
|
-
"general": "
|
|
1080
|
-
"storage": "
|
|
1081
|
-
"integrations": "
|
|
1082
|
-
"advanced": "
|
|
1083
|
-
"billing": "
|
|
1660
|
+
"general": "Allgemein",
|
|
1661
|
+
"storage": "Speicher",
|
|
1662
|
+
"integrations": "Integrationen",
|
|
1663
|
+
"advanced": "Erweitert",
|
|
1664
|
+
"billing": "Abrechnung",
|
|
1665
|
+
"plugins": "Erweiterungen",
|
|
1666
|
+
"core-plugins": "Kern-Erweiterungen",
|
|
1667
|
+
"community-plugins": "Community-Erweiterungen",
|
|
1668
|
+
"versions": "Versionen"
|
|
1084
1669
|
},
|
|
1085
|
-
"
|
|
1086
|
-
"
|
|
1087
|
-
"
|
|
1088
|
-
"
|
|
1089
|
-
"
|
|
1090
|
-
"
|
|
1091
|
-
"
|
|
1092
|
-
"
|
|
1093
|
-
"
|
|
1094
|
-
"
|
|
1095
|
-
"
|
|
1096
|
-
"cache-
|
|
1097
|
-
"
|
|
1098
|
-
"
|
|
1099
|
-
"
|
|
1670
|
+
"pipeline-cache-folder": "Pipeline-Cache-Ordner:",
|
|
1671
|
+
"enter-or-browse-for-a-folder": "Ordner eingeben oder auswählen",
|
|
1672
|
+
"browse": "Durchsuchen",
|
|
1673
|
+
"manage-where-the-app-stores-temporary-and-cache-files": "Konfigurieren Sie lokale Ordner für temporäre Dateien und Anwendungs-Cache.",
|
|
1674
|
+
"clear-cache": "Cache leeren",
|
|
1675
|
+
"reset-to-default": "Auf Standard zurücksetzen",
|
|
1676
|
+
"manage-subscription": "Abonnement verwalten",
|
|
1677
|
+
"renewal-date": "Verlängerungsdatum",
|
|
1678
|
+
"start-date": "Startdatum:",
|
|
1679
|
+
"cache-cleared-successfully": "Cache erfolgreich geleert",
|
|
1680
|
+
"failed-to-clear-cache-error-message": "Cache konnte nicht geleert werden: {0}",
|
|
1681
|
+
"failed-to-reset-cache-folder-error-message": "Cache-Ordner konnte nicht zurückgesetzt werden: {0}",
|
|
1682
|
+
"select-cache-folder": "Cache-Ordner auswählen",
|
|
1683
|
+
"restart-dashboard-tour": "Dashboard-Anleitung zurücksetzen",
|
|
1684
|
+
"restart-editor-tour": "Editor-Anleitung zurücksetzen",
|
|
1685
|
+
"tour-reset-success": "Anleitungen wurden zurückgesetzt. Sie werden bei Ihrem nächsten Besuch wieder angezeigt.",
|
|
1686
|
+
"storage-pipelab": "Pipelab",
|
|
1687
|
+
"storage-other": "Andere Apps",
|
|
1688
|
+
"storage-free": "Freier Speicher",
|
|
1689
|
+
"disk-usage": "Festplattennutzung",
|
|
1690
|
+
"free": "Frei",
|
|
1691
|
+
"other": "Sonstige"
|
|
1100
1692
|
},
|
|
1101
1693
|
headers: {
|
|
1102
1694
|
"dashboard": "Dashboard",
|
|
1103
|
-
"
|
|
1695
|
+
"pipelines": "Pipelines",
|
|
1104
1696
|
"editor": "Editor",
|
|
1105
|
-
"billing": "
|
|
1697
|
+
"billing": "@:settings.tabs.billing",
|
|
1106
1698
|
"team": "Team"
|
|
1107
1699
|
},
|
|
1108
1700
|
base: {
|
|
@@ -1114,44 +1706,119 @@ var de_DE_default = {
|
|
|
1114
1706
|
"delete": "Löschen",
|
|
1115
1707
|
"logs": "Protokolle",
|
|
1116
1708
|
"ok": "OK",
|
|
1117
|
-
"add": "Hinzufügen"
|
|
1709
|
+
"add": "Hinzufügen",
|
|
1710
|
+
"search": "Suchen...",
|
|
1711
|
+
"success": "Erfolg",
|
|
1712
|
+
"error": "Fehler"
|
|
1118
1713
|
},
|
|
1119
1714
|
editor: {
|
|
1120
|
-
"invalid-file-content": "
|
|
1121
|
-
"welcome-back": "
|
|
1122
|
-
"please-log-in-to-run-a-
|
|
1123
|
-
"execution-done": "
|
|
1124
|
-
"your-project-has-been-executed-successfully": "
|
|
1125
|
-
"execution-failed": "
|
|
1126
|
-
"project-has-encountered-an-error": "
|
|
1127
|
-
"project-saved": "
|
|
1128
|
-
"your-project-has-be-saved-successfully": "
|
|
1715
|
+
"invalid-file-content": "Ungültiger Dateiinhalt",
|
|
1716
|
+
"welcome-back": "Willkommen zurück!",
|
|
1717
|
+
"please-log-in-to-run-a-pipeline": "Bitte melden Sie sich an, um diese Pipeline auszuführen.",
|
|
1718
|
+
"execution-done": "Ausführung erfolgreich abgeschlossen",
|
|
1719
|
+
"your-project-has-been-executed-successfully": "Ihre Pipeline wurde erfolgreich ausgeführt.",
|
|
1720
|
+
"execution-failed": "Ausführung fehlgeschlagen",
|
|
1721
|
+
"project-has-encountered-an-error": "Die Pipeline hat einen Fehler festgestellt:",
|
|
1722
|
+
"project-saved": "Pipeline gespeichert",
|
|
1723
|
+
"your-project-has-be-saved-successfully": "Ihre Pipeline wurde erfolgreich gespeichert.",
|
|
1724
|
+
"view-history": "Verlauf",
|
|
1725
|
+
"add-plugin": "Erweiterung hinzufügen",
|
|
1726
|
+
"display-advanced-nodes": "Erweiterte Blöcke anzeigen",
|
|
1727
|
+
"project-settings": "Pipeline-Einstellungen",
|
|
1728
|
+
"jit-loading-title": "Erweiterungen werden vorbereitet",
|
|
1729
|
+
"jit-loading-subtitle": "Bitte warten Sie, während Pipelab die für diese Pipeline erforderlichen Erweiterungen herunterlädt und konfigures.",
|
|
1730
|
+
"jit-loading-status": "Herunterladen und Einrichten von Erweiterungspaketen...",
|
|
1731
|
+
"validation-failed": "Validierung fehlgeschlagen",
|
|
1732
|
+
"validation-plugin-disabled-or-missing": "Der Block \"{nodeName}\" erfordert die Erweiterung \"{pluginId}\", die derzeit nicht installiert oder aktiviert ist.",
|
|
1733
|
+
"validation-missing-param": "Bitte konfigurieren Sie das erforderliche Feld \"{paramName}\" im Block \"{nodeName}\"."
|
|
1129
1734
|
},
|
|
1130
1735
|
home: {
|
|
1131
|
-
"invalid-preset": "
|
|
1132
|
-
"store-project-on-the-cloud": "
|
|
1736
|
+
"invalid-preset": "Ungültige Vorlage",
|
|
1737
|
+
"store-project-on-the-cloud": "Projekt in der Cloud speichern",
|
|
1133
1738
|
"cloud": "Cloud",
|
|
1134
|
-
"store-project-locally": "
|
|
1135
|
-
"local": "
|
|
1136
|
-
"invalid-number-of-paths-selected": "
|
|
1137
|
-
"pipelab-project": "Pipelab
|
|
1138
|
-
"choose-a-new-path": "
|
|
1139
|
-
"invalid-file-type": "
|
|
1140
|
-
"create-project": "
|
|
1141
|
-
"
|
|
1142
|
-
"project
|
|
1143
|
-
"
|
|
1144
|
-
"
|
|
1145
|
-
"
|
|
1146
|
-
"
|
|
1739
|
+
"store-project-locally": "Projekt lokal speichern",
|
|
1740
|
+
"local": "Lokal",
|
|
1741
|
+
"invalid-number-of-paths-selected": "Ungültige Anzahl ausgewählter Pfade",
|
|
1742
|
+
"pipelab-project": "Pipelab-Projekt",
|
|
1743
|
+
"choose-a-new-path": "Wählen Sie einen neuen Pfad",
|
|
1744
|
+
"invalid-file-type": "Ungültiger Dateityp",
|
|
1745
|
+
"create-project": "Projekt erstellen",
|
|
1746
|
+
"create-pipeline": "Pipeline erstellen",
|
|
1747
|
+
"duplicate-project": "Projekt duplizieren",
|
|
1748
|
+
"duplicate-pipeline": "Pipeline duplizieren",
|
|
1749
|
+
"project-name": "Projektname",
|
|
1750
|
+
"new-project": "Neues Projekt",
|
|
1751
|
+
"new-pipeline": "Neue Pipeline",
|
|
1752
|
+
"open": "Öffnen",
|
|
1753
|
+
"import": "Importieren",
|
|
1754
|
+
"pipeline-name": "Pipelinename",
|
|
1755
|
+
"your-projects": "Ihre Projekte",
|
|
1756
|
+
"no-projects-yet": "Noch keine Projekte",
|
|
1757
|
+
"no-pipelines-yet": "Noch keine Pipelines",
|
|
1758
|
+
"delete-project": "Projekt löschen",
|
|
1759
|
+
"confirm-delete-project": "Sind Sie sicher, dass Sie dieses Projekt löschen möchten? Dies kann nicht rückgängig gemacht werden.",
|
|
1760
|
+
"cannot-delete-project": "Projekt kann nicht gelöscht werden",
|
|
1761
|
+
"project-not-empty": "Dieses Projekt enthält Pipelines. Bitte löschen Sie diese zuerst.",
|
|
1762
|
+
"transfer": "Übertragen",
|
|
1763
|
+
"transfer-successful": "Übertragung erfolgreich",
|
|
1764
|
+
"pipeline-transferred": "Pipeline erfolgreich übertragen",
|
|
1765
|
+
"select-project": "Projekt auswählen",
|
|
1766
|
+
"build-history": "Ausführungsverlauf",
|
|
1767
|
+
"duplicate": "Duplizieren",
|
|
1768
|
+
"rename-project": "Projekt umbenennen",
|
|
1769
|
+
"new-project-name": "Neuer Projektname",
|
|
1770
|
+
"premium-feature": "Dies ist eine Premium-Funktion",
|
|
1771
|
+
"migrate-warning": "Dieses Dateiformat wird bald nicht mehr unterstützt. Bitte migrieren Sie es in den neuen lokalen Arbeitsbereich.",
|
|
1772
|
+
"simple-pipeline": "Einfache Pipeline",
|
|
1773
|
+
"advanced-pipeline": "Erweiterte Pipeline",
|
|
1774
|
+
"new-simple-project": "Neues einfaches Projekt",
|
|
1775
|
+
"new-advanced-project": "Neues erweitertes Projekt",
|
|
1776
|
+
"store-project-internally": "Projekt lokal speichern",
|
|
1777
|
+
"internal": "Intern",
|
|
1778
|
+
"confirm-migration-message": "Sind Sie sicher, dass Sie diese Pipeline in den lokalen Arbeitsbereich verschieben möchten? Pipelab wird diese Pipeline intern verwalten.",
|
|
1779
|
+
"migrate-pipeline": "Pipeline migrieren",
|
|
1780
|
+
"migration-success": "Pipeline erfolgreich migriert",
|
|
1781
|
+
"migrate-to-internal": "In Arbeitsbereich verschieben",
|
|
1782
|
+
"only-internal-supported-notice": "Pipelab verwaltet jetzt alle Pipelines im Arbeitsbereich der Anwendung. Externe Dateien sind veraltet, können aber weiterhin importiert werden.",
|
|
1783
|
+
"import-pipeline": "Pipeline importieren",
|
|
1784
|
+
"import-from-stable": "Aus Stable importieren...",
|
|
1785
|
+
"import-from-beta": "Aus Beta importieren...",
|
|
1786
|
+
"import-pipeline-file": "Pipeline-Datei importieren (.pipelab)...",
|
|
1787
|
+
"import-success": "Pipeline erfolgreich importiert",
|
|
1788
|
+
"failed-to-read-file": "Ausgewählte Datei konnte nicht gelesen werden",
|
|
1789
|
+
"export-pipeline": "Pipeline exportieren...",
|
|
1790
|
+
"export-success": "Pipeline erfolgreich exportiert",
|
|
1791
|
+
"export-failed": "Fehler beim Exportieren der Pipeline"
|
|
1147
1792
|
},
|
|
1148
|
-
|
|
1793
|
+
pipelines: { "title": "@:headers.pipelines" },
|
|
1794
|
+
tour: {
|
|
1795
|
+
"start-tour": "Anleitung starten",
|
|
1796
|
+
"projects-list-title": "Projekt-Navigator",
|
|
1797
|
+
"projects-list-description": "Diese Seitenleiste zeigt Ihre Projekte. Durch Auswahl eines Projekts werden dessen Pipelines im Hauptbereich angezeigt.",
|
|
1798
|
+
"add-project-title": "Neues Projekt erstellen",
|
|
1799
|
+
"add-project-description": "Projekte organisieren Ihre Pipelines nach Thema oder Kunde. Klicken Sie hier, um ein neues Projekt zu starten.",
|
|
1800
|
+
"new-pipeline-title": "Pipeline erstellen",
|
|
1801
|
+
"new-pipeline-description": "Bereit zur Automatisierung? Erstellen Sie eine neue Pipeline, um Aktionen und Logik hinzuzufügen.",
|
|
1802
|
+
"project-actions-title": "Projektverwaltung",
|
|
1803
|
+
"project-actions-description": "Verwenden Sie diese Schaltflächen, um das derzeit ausgewählte Projekt umzubenennen oder zu löschen.",
|
|
1804
|
+
"editor-canvas-title": "Der visuelle Editor",
|
|
1805
|
+
"editor-canvas-description": "Dies ist Ihr Arbeitsbereich. Ziehen Sie Aktionsblöcke hierher, um Ihren Automatisierungsfluss zu erstellen.",
|
|
1806
|
+
"editor-save-title": "Fortschritt speichern",
|
|
1807
|
+
"editor-save-description": "Schützen Sie Ihre Änderungen. Wir empfehlen, Ihre Pipeline häufig zu speichern.",
|
|
1808
|
+
"editor-run-title": "Pipeline testen",
|
|
1809
|
+
"editor-run-description": "Klicken Sie auf Ausführen, um Ihre Pipeline zu testen. Pipelab führt jeden Block in Echtzeit aus.",
|
|
1810
|
+
"editor-logs-title": "Ausführungsprotokolle",
|
|
1811
|
+
"editor-logs-description": "Das Protokollfenster zeigt die Ausführungsschritte in Echtzeit, um Sie bei der Überwachung und Fehlersuche zu unterstützen.",
|
|
1812
|
+
"editor-close-title": "Editor schließen",
|
|
1813
|
+
"editor-close-description": "Fertig für heute? Kehren Sie zum Dashboard zurück, um andere Projekte und Pipelines zu verwalten."
|
|
1814
|
+
}
|
|
1149
1815
|
};
|
|
1150
1816
|
//#endregion
|
|
1151
1817
|
//#region src/model.ts
|
|
1152
1818
|
const OriginValidator = object({
|
|
1153
1819
|
pluginId: string(),
|
|
1154
|
-
nodeId: string()
|
|
1820
|
+
nodeId: string(),
|
|
1821
|
+
version: optional(pipe(string(), description("Pinned version of the plugin for this block. Falls back to \"latest\" when absent.")))
|
|
1155
1822
|
});
|
|
1156
1823
|
const BlockActionValidatorV1 = object({
|
|
1157
1824
|
type: literal("action"),
|
|
@@ -1164,7 +1831,7 @@ const EditorParamValidatorV3 = union([literal("simple"), literal("editor")]);
|
|
|
1164
1831
|
const BlockActionValidatorV3 = object({
|
|
1165
1832
|
type: literal("action"),
|
|
1166
1833
|
uid: string(),
|
|
1167
|
-
name: pipe(
|
|
1834
|
+
name: optional(pipe(string(), description("A custom name provided by the user"))),
|
|
1168
1835
|
disabled: optional(boolean()),
|
|
1169
1836
|
params: record(string(), object({
|
|
1170
1837
|
editor: EditorParamValidatorV3,
|
|
@@ -1172,21 +1839,6 @@ const BlockActionValidatorV3 = object({
|
|
|
1172
1839
|
})),
|
|
1173
1840
|
origin: OriginValidator
|
|
1174
1841
|
});
|
|
1175
|
-
object({
|
|
1176
|
-
type: literal("condition"),
|
|
1177
|
-
uid: string(),
|
|
1178
|
-
origin: OriginValidator,
|
|
1179
|
-
params: record(string(), any()),
|
|
1180
|
-
branchTrue: lazy(() => array(BlockValidator)),
|
|
1181
|
-
branchFalse: lazy(() => array(BlockValidator))
|
|
1182
|
-
});
|
|
1183
|
-
object({
|
|
1184
|
-
type: literal("loop"),
|
|
1185
|
-
uid: string(),
|
|
1186
|
-
origin: OriginValidator,
|
|
1187
|
-
params: record(string(), any()),
|
|
1188
|
-
children: lazy(() => array(BlockValidator))
|
|
1189
|
-
});
|
|
1190
1842
|
const BlockEventValidator = object({
|
|
1191
1843
|
type: literal("event"),
|
|
1192
1844
|
uid: string(),
|
|
@@ -1202,7 +1854,6 @@ object({
|
|
|
1202
1854
|
const BlockValidatorV1 = variant("type", [BlockActionValidatorV1, BlockEventValidator]);
|
|
1203
1855
|
const BlockValidatorV2 = variant("type", [BlockActionValidatorV1]);
|
|
1204
1856
|
const BlockValidatorV3 = variant("type", [BlockActionValidatorV3]);
|
|
1205
|
-
const BlockValidator = BlockValidatorV3;
|
|
1206
1857
|
const CanvasValidatorV1 = object({ blocks: array(BlockValidatorV1) });
|
|
1207
1858
|
const CanvasValidatorV2 = object({
|
|
1208
1859
|
blocks: array(BlockValidatorV2),
|
|
@@ -1234,19 +1885,21 @@ const SavedFileValidatorV3 = object({
|
|
|
1234
1885
|
canvas: CanvasValidatorV3,
|
|
1235
1886
|
variables: array(VariableValidatorV1)
|
|
1236
1887
|
});
|
|
1237
|
-
const
|
|
1888
|
+
const SavedFileDefaultValidatorV4 = object({
|
|
1238
1889
|
version: literal("4.0.0"),
|
|
1239
1890
|
type: literal("default"),
|
|
1240
1891
|
name: string(),
|
|
1241
1892
|
description: string(),
|
|
1893
|
+
plugins: optional(record(string(), string())),
|
|
1242
1894
|
canvas: CanvasValidatorV3,
|
|
1243
1895
|
variables: array(VariableValidatorV1)
|
|
1244
1896
|
});
|
|
1245
|
-
const
|
|
1897
|
+
const SavedFileSimpleValidatorV4 = object({
|
|
1246
1898
|
version: literal("4.0.0"),
|
|
1247
1899
|
type: literal("simple"),
|
|
1248
1900
|
name: string(),
|
|
1249
1901
|
description: string(),
|
|
1902
|
+
plugins: optional(record(string(), string())),
|
|
1250
1903
|
source: object({
|
|
1251
1904
|
type: union([
|
|
1252
1905
|
literal("c3-html"),
|
|
@@ -1272,8 +1925,47 @@ const SavedFileSimpleValidator = object({
|
|
|
1272
1925
|
})
|
|
1273
1926
|
})
|
|
1274
1927
|
});
|
|
1275
|
-
const
|
|
1276
|
-
|
|
1928
|
+
const SavedFileDefaultValidatorV5 = object({
|
|
1929
|
+
version: literal("5.0.0"),
|
|
1930
|
+
name: string(),
|
|
1931
|
+
description: string(),
|
|
1932
|
+
canvas: CanvasValidatorV3,
|
|
1933
|
+
variables: array(VariableValidatorV1)
|
|
1934
|
+
});
|
|
1935
|
+
const SavedFileSimpleValidatorV5 = object({
|
|
1936
|
+
version: literal("5.0.0"),
|
|
1937
|
+
type: literal("simple"),
|
|
1938
|
+
name: string(),
|
|
1939
|
+
description: string(),
|
|
1940
|
+
plugins: record(string(), string()),
|
|
1941
|
+
source: object({
|
|
1942
|
+
type: union([
|
|
1943
|
+
literal("c3-html"),
|
|
1944
|
+
literal("c3-nwjs"),
|
|
1945
|
+
literal("godot"),
|
|
1946
|
+
literal("html")
|
|
1947
|
+
]),
|
|
1948
|
+
path: string()
|
|
1949
|
+
}),
|
|
1950
|
+
packaging: object({ enabled: boolean() }),
|
|
1951
|
+
publishing: object({
|
|
1952
|
+
steam: object({
|
|
1953
|
+
enabled: boolean(),
|
|
1954
|
+
appId: optional(string())
|
|
1955
|
+
}),
|
|
1956
|
+
itch: object({
|
|
1957
|
+
enabled: boolean(),
|
|
1958
|
+
project: optional(string())
|
|
1959
|
+
}),
|
|
1960
|
+
poki: object({
|
|
1961
|
+
enabled: boolean(),
|
|
1962
|
+
gameId: optional(string())
|
|
1963
|
+
})
|
|
1964
|
+
})
|
|
1965
|
+
});
|
|
1966
|
+
const SavedFileValidatorV4 = union([SavedFileDefaultValidatorV4, SavedFileSimpleValidatorV4]);
|
|
1967
|
+
const SavedFileValidatorV5 = SavedFileDefaultValidatorV5;
|
|
1968
|
+
const SavedFileValidator = SavedFileValidatorV5;
|
|
1277
1969
|
//#endregion
|
|
1278
1970
|
//#region ../../node_modules/vue/node_modules/@vue/shared/dist/shared.cjs.prod.js
|
|
1279
1971
|
/**
|
|
@@ -43418,7 +44110,13 @@ const plugins = (0, vue_exports.shallowRef)([]);
|
|
|
43418
44110
|
const usePlugins = () => {
|
|
43419
44111
|
const load = () => {};
|
|
43420
44112
|
const registerPlugins = (newPlugins) => {
|
|
43421
|
-
plugins.value
|
|
44113
|
+
const current = [...plugins.value];
|
|
44114
|
+
for (const np of newPlugins) {
|
|
44115
|
+
const idx = current.findIndex((p) => p.id === np.id);
|
|
44116
|
+
if (idx !== -1) current[idx] = np;
|
|
44117
|
+
else current.push(np);
|
|
44118
|
+
}
|
|
44119
|
+
plugins.value = current;
|
|
43422
44120
|
};
|
|
43423
44121
|
return {
|
|
43424
44122
|
load,
|
|
@@ -43427,6 +44125,21 @@ const usePlugins = () => {
|
|
|
43427
44125
|
};
|
|
43428
44126
|
};
|
|
43429
44127
|
//#endregion
|
|
44128
|
+
//#region src/plugins-list.ts
|
|
44129
|
+
const DEFAULT_PLUGIN_IDS = [
|
|
44130
|
+
"construct",
|
|
44131
|
+
"filesystem",
|
|
44132
|
+
"system",
|
|
44133
|
+
"steam",
|
|
44134
|
+
"itch",
|
|
44135
|
+
"electron",
|
|
44136
|
+
"discord",
|
|
44137
|
+
"poki",
|
|
44138
|
+
"nvpatch",
|
|
44139
|
+
"netlify"
|
|
44140
|
+
];
|
|
44141
|
+
const DEV_ONLY_PLUGIN_IDS = ["tauri", "minify"];
|
|
44142
|
+
//#endregion
|
|
43430
44143
|
//#region src/plugins/definitions.ts
|
|
43431
44144
|
const createNodeDefinition = (def) => {
|
|
43432
44145
|
return def;
|
|
@@ -43525,18 +44238,6 @@ const createExpression = (expression) => {
|
|
|
43525
44238
|
type: "expression"
|
|
43526
44239
|
};
|
|
43527
44240
|
};
|
|
43528
|
-
const createCondition = (condition) => {
|
|
43529
|
-
return {
|
|
43530
|
-
...condition,
|
|
43531
|
-
type: "condition"
|
|
43532
|
-
};
|
|
43533
|
-
};
|
|
43534
|
-
const createLoop = (loop) => {
|
|
43535
|
-
return {
|
|
43536
|
-
...loop,
|
|
43537
|
-
type: "loop"
|
|
43538
|
-
};
|
|
43539
|
-
};
|
|
43540
44241
|
const createEvent = (event) => {
|
|
43541
44242
|
return {
|
|
43542
44243
|
...event,
|
|
@@ -43544,38 +44245,6 @@ const createEvent = (event) => {
|
|
|
43544
44245
|
};
|
|
43545
44246
|
};
|
|
43546
44247
|
//#endregion
|
|
43547
|
-
//#region src/save-location.ts
|
|
43548
|
-
const SaveLocationInternalValidator = object({
|
|
43549
|
-
id: string(),
|
|
43550
|
-
project: string(),
|
|
43551
|
-
lastModified: string(),
|
|
43552
|
-
type: literal("internal"),
|
|
43553
|
-
configName: string()
|
|
43554
|
-
});
|
|
43555
|
-
/** @deprecated External pipeline files are deprecated and will be removed in future versions. */
|
|
43556
|
-
const SaveLocationExternalValidator = object({
|
|
43557
|
-
id: string(),
|
|
43558
|
-
project: string(),
|
|
43559
|
-
path: string(),
|
|
43560
|
-
lastModified: string(),
|
|
43561
|
-
type: literal("external"),
|
|
43562
|
-
summary: object({
|
|
43563
|
-
plugins: array(string()),
|
|
43564
|
-
name: string(),
|
|
43565
|
-
description: string()
|
|
43566
|
-
})
|
|
43567
|
-
});
|
|
43568
|
-
const SaveLocationPipelabCloudValidator = object({
|
|
43569
|
-
id: string(),
|
|
43570
|
-
project: string(),
|
|
43571
|
-
type: literal("pipelab-cloud")
|
|
43572
|
-
});
|
|
43573
|
-
const SaveLocationValidator = union([
|
|
43574
|
-
SaveLocationExternalValidator,
|
|
43575
|
-
SaveLocationInternalValidator,
|
|
43576
|
-
SaveLocationPipelabCloudValidator
|
|
43577
|
-
]);
|
|
43578
|
-
//#endregion
|
|
43579
44248
|
//#region src/subscription-errors.ts
|
|
43580
44249
|
var SubscriptionRequiredError = class extends Error {
|
|
43581
44250
|
code = "SUBSCRIPTION_REQUIRED";
|
|
@@ -43663,6 +44332,24 @@ const supabase = (options) => {
|
|
|
43663
44332
|
//#endregion
|
|
43664
44333
|
//#region src/utils.ts
|
|
43665
44334
|
const foo = "bar";
|
|
44335
|
+
const transformUrl = (url) => {
|
|
44336
|
+
if (url && typeof url === "string") {
|
|
44337
|
+
const getHost = () => {
|
|
44338
|
+
if (typeof window !== "undefined") if (process.env.NODE_ENV === "development") return `http://${window.location.hostname}:33753`;
|
|
44339
|
+
else return `${window.location.protocol}//${window.location.host}`;
|
|
44340
|
+
return "http://localhost:33753";
|
|
44341
|
+
};
|
|
44342
|
+
if (url.startsWith("file://")) {
|
|
44343
|
+
const filePath = decodeURIComponent(url.substring(7));
|
|
44344
|
+
return `${getHost()}/media-file/${encodeURIComponent(filePath)}`;
|
|
44345
|
+
}
|
|
44346
|
+
if (url.startsWith("media://")) {
|
|
44347
|
+
const filePath = decodeURIComponent(url.replace(/^media:\/\/+/, "/"));
|
|
44348
|
+
return `${getHost()}/media-file/${encodeURIComponent(filePath)}`;
|
|
44349
|
+
}
|
|
44350
|
+
}
|
|
44351
|
+
return url || "";
|
|
44352
|
+
};
|
|
43666
44353
|
//#endregion
|
|
43667
44354
|
//#region src/validation.ts
|
|
43668
44355
|
const isRequired = (param) => {
|
|
@@ -43706,34 +44393,6 @@ const isWebSocketResponseMessage = (message) => {
|
|
|
43706
44393
|
const isWebSocketErrorMessage = (message) => {
|
|
43707
44394
|
return message && message.type === "error" && message.requestId && message.error;
|
|
43708
44395
|
};
|
|
43709
|
-
object({
|
|
43710
|
-
version: literal("1.0.0"),
|
|
43711
|
-
data: optional(record(string(), SaveLocationValidator), {})
|
|
43712
|
-
});
|
|
43713
|
-
const FileRepoProjectValidatorV2$1 = object({
|
|
43714
|
-
id: string(),
|
|
43715
|
-
name: string(),
|
|
43716
|
-
description: string()
|
|
43717
|
-
});
|
|
43718
|
-
object({
|
|
43719
|
-
version: literal("2.0.0"),
|
|
43720
|
-
projects: array(FileRepoProjectValidatorV2$1),
|
|
43721
|
-
pipelines: optional(array(SaveLocationValidator), [])
|
|
43722
|
-
});
|
|
43723
|
-
object({
|
|
43724
|
-
version: literal("1.0.0"),
|
|
43725
|
-
data: optional(record(string(), SaveLocationValidator), {})
|
|
43726
|
-
});
|
|
43727
|
-
const FileRepoProjectValidatorV2 = object({
|
|
43728
|
-
id: string(),
|
|
43729
|
-
name: string(),
|
|
43730
|
-
description: string()
|
|
43731
|
-
});
|
|
43732
|
-
object({
|
|
43733
|
-
version: literal("2.0.0"),
|
|
43734
|
-
projects: array(FileRepoProjectValidatorV2),
|
|
43735
|
-
pipelines: optional(array(SaveLocationValidator), [])
|
|
43736
|
-
});
|
|
43737
44396
|
//#endregion
|
|
43738
44397
|
//#region src/index.ts
|
|
43739
44398
|
const appSettingsMigrator = appSettingsMigrator$1;
|
|
@@ -43742,7 +44401,10 @@ const fileRepoMigrations = fileRepoMigrations$1;
|
|
|
43742
44401
|
const defaultFileRepo = defaultFileRepo$1;
|
|
43743
44402
|
const savedFileMigrator = savedFileMigrator$1;
|
|
43744
44403
|
const configRegistry = configRegistry$1;
|
|
44404
|
+
const normalizePipelineConfig = normalizePipelineConfig$1;
|
|
44405
|
+
const connectionsMigrator = connectionsMigrator$1;
|
|
44406
|
+
const defaultConnections = defaultConnections$1;
|
|
43745
44407
|
//#endregion
|
|
43746
|
-
export { AppSettingsValidator, AppSettingsValidatorV1, AppSettingsValidatorV2, AppSettingsValidatorV3, AppSettingsValidatorV4, AppSettingsValidatorV5, AppSettingsValidatorV6, AppSettingsValidatorV7, BenefitNotFoundError, EditorParamValidatorV3, OriginValidator, RELEASE_SYNC, SaveLocationExternalValidator, SaveLocationInternalValidator, SaveLocationPipelabCloudValidator, SaveLocationValidator,
|
|
44408
|
+
export { AppSettingsValidator, AppSettingsValidatorV1, AppSettingsValidatorV2, AppSettingsValidatorV3, AppSettingsValidatorV4, AppSettingsValidatorV5, AppSettingsValidatorV6, AppSettingsValidatorV7, BenefitNotFoundError, ConnectionValidator, ConnectionsValidator, ConnectionsValidatorV1, DEFAULT_PLUGIN_IDS, DEV_ONLY_PLUGIN_IDS, EditorParamValidatorV3, FileRepoProjectValidatorV2, FileRepoValidator, FileRepoValidatorV1, FileRepoValidatorV2, FileRepoValidatorV3, OriginValidator, RELEASE_SYNC, SaveLocationExternalValidator, SaveLocationInternalValidator, SaveLocationPipelabCloudValidator, SaveLocationValidator, SavedFileDefaultValidatorV4, SavedFileDefaultValidatorV5, SavedFileSimpleValidatorV4, SavedFileSimpleValidatorV5, SavedFileValidator, SavedFileValidatorV1, SavedFileValidatorV2, SavedFileValidatorV3, SavedFileValidatorV4, SavedFileValidatorV5, ShellChannels, SubscriptionExpiredError, SubscriptionRequiredError, UnauthorizedError, VariableValidatorV1, WebSocketConnectionError, WebSocketError, WebSocketTimeoutError, appSettingsMigrator, configRegistry, connectionsMigrator, createAction, createArray, createBooleanParam, createColorPicker, createDefinition, createEvent, createExpression, createNetlifySiteParam, createNodeDefinition, createNumberParam, createPasswordParam, createPathParam, createQuickJs, createQuickJsFromVariant, createRawParam, createStringParam, createSubscriptionError, createVersionSchema, de_DE_default as de_DE, defaultAppSettings, defaultConnections, defaultFileRepo, en_US_default as en_US, es_ES_default as es_ES, fileRepoMigrations, fmt, foo, fr_FR_default as fr_FR, getSubscriptionErrorMessage, isRenderer, isRequired, isSubscriptionError, isSupabaseAvailable, isWebSocketErrorMessage, isWebSocketRequestMessage, isWebSocketResponseMessage, makeResolvedParams, newVariant, normalizePipelineConfig, processGraph, pt_BR_default as pt_BR, savedFileMigrator, supabase, transformUrl, useLogger, usePlugins, variableToFormattedVariable, zh_CN_default as zh_CN };
|
|
43747
44409
|
|
|
43748
44410
|
//# sourceMappingURL=index.mjs.map
|