@pipelab/plugin-core 1.0.0-beta.18 → 1.0.0-beta.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +730 -400
- package/dist/index.mjs +730 -400
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
package/dist/index.mjs
CHANGED
|
@@ -2117,7 +2117,7 @@ const settingsMigratorInternal = createMigrator();
|
|
|
2117
2117
|
const defaultAppSettings$1 = settingsMigratorInternal.createDefault({
|
|
2118
2118
|
locale: "en-US",
|
|
2119
2119
|
theme: "light",
|
|
2120
|
-
version: "
|
|
2120
|
+
version: "7.0.0",
|
|
2121
2121
|
autosave: true,
|
|
2122
2122
|
agents: [],
|
|
2123
2123
|
tours: {
|
|
@@ -2130,11 +2130,6 @@ const defaultAppSettings$1 = settingsMigratorInternal.createDefault({
|
|
|
2130
2130
|
completed: false
|
|
2131
2131
|
}
|
|
2132
2132
|
},
|
|
2133
|
-
buildHistory: { retentionPolicy: {
|
|
2134
|
-
enabled: false,
|
|
2135
|
-
maxEntries: 50,
|
|
2136
|
-
maxAge: 30
|
|
2137
|
-
} },
|
|
2138
2133
|
plugins: DEFAULT_PLUGINS,
|
|
2139
2134
|
isInternalMigrationBannerClosed: false
|
|
2140
2135
|
});
|
|
@@ -2191,18 +2186,13 @@ const appSettingsMigrator$1 = settingsMigratorInternal.createMigrations({
|
|
|
2191
2186
|
return {
|
|
2192
2187
|
...rest,
|
|
2193
2188
|
agents: [],
|
|
2194
|
-
buildHistory: { retentionPolicy: {
|
|
2195
|
-
enabled: false,
|
|
2196
|
-
maxEntries: 50,
|
|
2197
|
-
maxAge: 30
|
|
2198
|
-
} },
|
|
2199
2189
|
plugins: DEFAULT_PLUGINS,
|
|
2200
2190
|
isInternalMigrationBannerClosed: false
|
|
2201
2191
|
};
|
|
2202
2192
|
}
|
|
2203
2193
|
}),
|
|
2204
2194
|
createMigration({
|
|
2205
|
-
version: "
|
|
2195
|
+
version: "7.0.0",
|
|
2206
2196
|
up: finalVersion
|
|
2207
2197
|
})
|
|
2208
2198
|
]
|
|
@@ -2221,7 +2211,7 @@ const connectionsMigrator$1 = connectionsMigratorInternal.createMigrations({
|
|
|
2221
2211
|
});
|
|
2222
2212
|
const fileRepoMigratorInternal = createMigrator();
|
|
2223
2213
|
const defaultFileRepo$1 = fileRepoMigratorInternal.createDefault({
|
|
2224
|
-
version: "
|
|
2214
|
+
version: "3.0.0",
|
|
2225
2215
|
projects: [{
|
|
2226
2216
|
id: "main",
|
|
2227
2217
|
name: "Default project",
|
|
@@ -2231,30 +2221,39 @@ const defaultFileRepo$1 = fileRepoMigratorInternal.createDefault({
|
|
|
2231
2221
|
});
|
|
2232
2222
|
const fileRepoMigrations$1 = fileRepoMigratorInternal.createMigrations({
|
|
2233
2223
|
defaultValue: defaultFileRepo$1,
|
|
2234
|
-
migrations: [
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
|
|
2224
|
+
migrations: [
|
|
2225
|
+
createMigration({
|
|
2226
|
+
version: "1.0.0",
|
|
2227
|
+
up: (state) => {
|
|
2228
|
+
const pipelines = Object.entries(state.data || {}).map(([id, file]) => {
|
|
2229
|
+
return {
|
|
2230
|
+
...file,
|
|
2231
|
+
id,
|
|
2232
|
+
project: "main"
|
|
2233
|
+
};
|
|
2234
|
+
});
|
|
2238
2235
|
return {
|
|
2239
|
-
...
|
|
2240
|
-
|
|
2241
|
-
|
|
2236
|
+
...state,
|
|
2237
|
+
projects: [{
|
|
2238
|
+
id: "main",
|
|
2239
|
+
name: "Default project",
|
|
2240
|
+
description: "The initial default project"
|
|
2241
|
+
}],
|
|
2242
|
+
pipelines
|
|
2242
2243
|
};
|
|
2243
|
-
}
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
|
|
2256
|
-
up: finalVersion
|
|
2257
|
-
})]
|
|
2244
|
+
}
|
|
2245
|
+
}),
|
|
2246
|
+
createMigration({
|
|
2247
|
+
version: "2.0.0",
|
|
2248
|
+
up: (state) => {
|
|
2249
|
+
return { ...state };
|
|
2250
|
+
}
|
|
2251
|
+
}),
|
|
2252
|
+
createMigration({
|
|
2253
|
+
version: "3.0.0",
|
|
2254
|
+
up: finalVersion
|
|
2255
|
+
})
|
|
2256
|
+
]
|
|
2258
2257
|
});
|
|
2259
2258
|
const savedFileMigratorInternal = createMigrator();
|
|
2260
2259
|
const savedFileDefaultValue = savedFileMigratorInternal.createDefault({
|
|
@@ -2397,7 +2396,7 @@ const normalizeBlockPluginId = (block) => {
|
|
|
2397
2396
|
const normalizePipelineConfig$1 = (state) => {
|
|
2398
2397
|
if (!state) return false;
|
|
2399
2398
|
let changed = false;
|
|
2400
|
-
if (state.
|
|
2399
|
+
if (state.canvas) {
|
|
2401
2400
|
if (Array.isArray(state.canvas.blocks)) {
|
|
2402
2401
|
for (const block of state.canvas.blocks) if (normalizeBlockPluginId(block)) changed = true;
|
|
2403
2402
|
}
|
|
@@ -2461,7 +2460,12 @@ const FileRepoValidatorV2 = object({
|
|
|
2461
2460
|
projects: array(FileRepoProjectValidatorV2),
|
|
2462
2461
|
pipelines: optional(array(SaveLocationValidator), [])
|
|
2463
2462
|
});
|
|
2464
|
-
const
|
|
2463
|
+
const FileRepoValidatorV3 = object({
|
|
2464
|
+
version: literal("3.0.0"),
|
|
2465
|
+
projects: array(FileRepoProjectValidatorV2),
|
|
2466
|
+
pipelines: optional(array(SaveLocationValidator), [])
|
|
2467
|
+
});
|
|
2468
|
+
const FileRepoValidator = FileRepoValidatorV3;
|
|
2465
2469
|
//#endregion
|
|
2466
2470
|
//#region ../../packages/shared/src/apis.ts
|
|
2467
2471
|
const ShellChannels = ["dialog:showOpenDialog", "dialog:showSaveDialog"];
|
|
@@ -2574,44 +2578,6 @@ const AppSettingsValidatorV7 = object({
|
|
|
2574
2578
|
name: string(),
|
|
2575
2579
|
url: string()
|
|
2576
2580
|
})),
|
|
2577
|
-
buildHistory: object({ retentionPolicy: object({
|
|
2578
|
-
enabled: boolean(),
|
|
2579
|
-
maxEntries: number(),
|
|
2580
|
-
maxAge: number()
|
|
2581
|
-
}) })
|
|
2582
|
-
});
|
|
2583
|
-
const AppSettingsValidatorV8 = object({
|
|
2584
|
-
theme: union([literal("light"), literal("dark")]),
|
|
2585
|
-
version: literal("8.0.0"),
|
|
2586
|
-
locale: union([
|
|
2587
|
-
literal("en-US"),
|
|
2588
|
-
literal("fr-FR"),
|
|
2589
|
-
literal("pt-BR"),
|
|
2590
|
-
literal("zh-CN"),
|
|
2591
|
-
literal("es-ES"),
|
|
2592
|
-
literal("de-DE")
|
|
2593
|
-
]),
|
|
2594
|
-
tours: object({
|
|
2595
|
-
dashboard: object({
|
|
2596
|
-
step: number(),
|
|
2597
|
-
completed: boolean()
|
|
2598
|
-
}),
|
|
2599
|
-
editor: object({
|
|
2600
|
-
step: number(),
|
|
2601
|
-
completed: boolean()
|
|
2602
|
-
})
|
|
2603
|
-
}),
|
|
2604
|
-
autosave: boolean(),
|
|
2605
|
-
agents: array(object({
|
|
2606
|
-
id: string(),
|
|
2607
|
-
name: string(),
|
|
2608
|
-
url: string()
|
|
2609
|
-
})),
|
|
2610
|
-
buildHistory: object({ retentionPolicy: object({
|
|
2611
|
-
enabled: boolean(),
|
|
2612
|
-
maxEntries: number(),
|
|
2613
|
-
maxAge: number()
|
|
2614
|
-
}) }),
|
|
2615
2581
|
plugins: array(object({
|
|
2616
2582
|
name: string(),
|
|
2617
2583
|
enabled: boolean(),
|
|
@@ -2631,7 +2597,7 @@ const ConnectionsValidatorV1 = object({
|
|
|
2631
2597
|
connections: array(ConnectionValidator)
|
|
2632
2598
|
});
|
|
2633
2599
|
const ConnectionsValidator = ConnectionsValidatorV1;
|
|
2634
|
-
const AppSettingsValidator =
|
|
2600
|
+
const AppSettingsValidator = AppSettingsValidatorV7;
|
|
2635
2601
|
//#endregion
|
|
2636
2602
|
//#region ../../node_modules/tslog/dist/esm/prettyLogStyles.js
|
|
2637
2603
|
const prettyLogStyles = {
|
|
@@ -4317,7 +4283,7 @@ var en_US_default = {
|
|
|
4317
4283
|
settings: {
|
|
4318
4284
|
"darkTheme": "Dark theme",
|
|
4319
4285
|
"autosave": "Autosave",
|
|
4320
|
-
"autosaveDescription": "
|
|
4286
|
+
"autosaveDescription": "Automatically save changes to your pipelines in real-time.",
|
|
4321
4287
|
"language": "Language",
|
|
4322
4288
|
"languageOptions": {
|
|
4323
4289
|
"en-US": "English",
|
|
@@ -4341,7 +4307,7 @@ var en_US_default = {
|
|
|
4341
4307
|
"pipeline-cache-folder": "Pipeline Cache Folder:",
|
|
4342
4308
|
"enter-or-browse-for-a-folder": "Enter or browse for a folder",
|
|
4343
4309
|
"browse": "Browse",
|
|
4344
|
-
"manage-where-the-app-stores-temporary-and-cache-files": "
|
|
4310
|
+
"manage-where-the-app-stores-temporary-and-cache-files": "Configure local directories for temporary files and application cache.",
|
|
4345
4311
|
"clear-cache": "Clear cache",
|
|
4346
4312
|
"reset-to-default": "Reset to default",
|
|
4347
4313
|
"manage-subscription": "Manage Subscription",
|
|
@@ -4351,16 +4317,9 @@ var en_US_default = {
|
|
|
4351
4317
|
"failed-to-clear-cache-error-message": "Failed to clear cache: {0}",
|
|
4352
4318
|
"failed-to-reset-cache-folder-error-message": "Failed to reset cache folder: {0}",
|
|
4353
4319
|
"select-cache-folder": "Select Cache Folder",
|
|
4354
|
-
"restart-dashboard-tour": "
|
|
4355
|
-
"restart-editor-tour": "
|
|
4356
|
-
"tour-reset-success": "
|
|
4357
|
-
"retentionPolicy": "Retention Policy",
|
|
4358
|
-
"retentionPolicyDescription": "Manage how long your build logs and history are kept.",
|
|
4359
|
-
"retentionEnabled": "Enable Retention Policy",
|
|
4360
|
-
"retentionMaxEntries": "Maximum Entries",
|
|
4361
|
-
"retentionMaxEntriesDescription": "Keep up to this number of entries per pipeline.",
|
|
4362
|
-
"retentionMaxAge": "Maximum Age (days)",
|
|
4363
|
-
"retentionMaxAgeDescription": "Keep entries for up to this many days.",
|
|
4320
|
+
"restart-dashboard-tour": "Reset Dashboard Guide",
|
|
4321
|
+
"restart-editor-tour": "Reset Editor Guide",
|
|
4322
|
+
"tour-reset-success": "Help guides have been reset. They will reappear on your next visit.",
|
|
4364
4323
|
"storage-pipelab": "Pipelab",
|
|
4365
4324
|
"storage-other": "Other Apps",
|
|
4366
4325
|
"storage-free": "Free Space",
|
|
@@ -4370,12 +4329,11 @@ var en_US_default = {
|
|
|
4370
4329
|
},
|
|
4371
4330
|
headers: {
|
|
4372
4331
|
"dashboard": "Dashboard",
|
|
4373
|
-
"
|
|
4332
|
+
"pipelines": "Pipelines",
|
|
4374
4333
|
"editor": "Editor",
|
|
4375
|
-
"billing": "
|
|
4334
|
+
"billing": "@:settings.tabs.billing",
|
|
4376
4335
|
"team": "Team"
|
|
4377
4336
|
},
|
|
4378
|
-
navigation: { "build-history": "Build History" },
|
|
4379
4337
|
base: {
|
|
4380
4338
|
"close": "Close",
|
|
4381
4339
|
"save": "Save",
|
|
@@ -4386,51 +4344,55 @@ var en_US_default = {
|
|
|
4386
4344
|
"logs": "Logs",
|
|
4387
4345
|
"ok": "OK",
|
|
4388
4346
|
"add": "Add",
|
|
4389
|
-
"search": "Search..."
|
|
4347
|
+
"search": "Search...",
|
|
4348
|
+
"success": "Success",
|
|
4349
|
+
"error": "Error"
|
|
4390
4350
|
},
|
|
4391
4351
|
editor: {
|
|
4392
4352
|
"invalid-file-content": "Invalid file content",
|
|
4393
4353
|
"welcome-back": "Welcome back!",
|
|
4394
|
-
"please-log-in-to-run-a-
|
|
4395
|
-
"execution-done": "
|
|
4396
|
-
"your-project-has-been-executed-successfully": "Your
|
|
4397
|
-
"execution-failed": "
|
|
4398
|
-
"project-has-encountered-an-error": "
|
|
4399
|
-
"project-saved": "
|
|
4400
|
-
"your-project-has-be-saved-successfully": "Your
|
|
4354
|
+
"please-log-in-to-run-a-pipeline": "Please sign in to run this pipeline.",
|
|
4355
|
+
"execution-done": "Run completed successfully",
|
|
4356
|
+
"your-project-has-been-executed-successfully": "Your pipeline ran and completed successfully.",
|
|
4357
|
+
"execution-failed": "Run failed",
|
|
4358
|
+
"project-has-encountered-an-error": "The pipeline encountered an error:",
|
|
4359
|
+
"project-saved": "Pipeline saved",
|
|
4360
|
+
"your-project-has-be-saved-successfully": "Your pipeline has been saved successfully.",
|
|
4401
4361
|
"view-history": "History",
|
|
4402
4362
|
"add-plugin": "Add plugin",
|
|
4403
4363
|
"display-advanced-nodes": "Display advanced nodes",
|
|
4404
4364
|
"project-settings": "Pipeline Settings",
|
|
4405
|
-
"jit-loading-title": "
|
|
4406
|
-
"jit-loading-subtitle": "Please wait while Pipelab
|
|
4407
|
-
"jit-loading-status": "Downloading and
|
|
4365
|
+
"jit-loading-title": "Preparing Plugins",
|
|
4366
|
+
"jit-loading-subtitle": "Please wait while Pipelab downloads and configures the required plugins for this pipeline.",
|
|
4367
|
+
"jit-loading-status": "Downloading and setting up plugin packages...",
|
|
4408
4368
|
"validation-failed": "Validation Failed",
|
|
4409
|
-
"validation-plugin-disabled-or-missing": "
|
|
4410
|
-
"validation-missing-param": "
|
|
4369
|
+
"validation-plugin-disabled-or-missing": "The block \"{nodeName}\" requires the \"{pluginId}\" plugin, which is not currently installed or enabled.",
|
|
4370
|
+
"validation-missing-param": "Please configure the required field \"{paramName}\" in the \"{nodeName}\" block."
|
|
4411
4371
|
},
|
|
4412
4372
|
home: {
|
|
4413
4373
|
"invalid-preset": "Invalid preset",
|
|
4414
|
-
"store-project-on-the-cloud": "
|
|
4374
|
+
"store-project-on-the-cloud": "Save project to Cloud",
|
|
4415
4375
|
"cloud": "Cloud",
|
|
4416
|
-
"store-project-locally": "
|
|
4376
|
+
"store-project-locally": "Save project locally",
|
|
4417
4377
|
"local": "Local",
|
|
4418
4378
|
"invalid-number-of-paths-selected": "Invalid number of paths selected",
|
|
4419
4379
|
"pipelab-project": "Pipelab Project",
|
|
4420
4380
|
"choose-a-new-path": "Choose a new path",
|
|
4421
4381
|
"invalid-file-type": "Invalid file type",
|
|
4422
|
-
"create-project": "Create
|
|
4423
|
-
"
|
|
4382
|
+
"create-project": "Create Project",
|
|
4383
|
+
"create-pipeline": "Create Pipeline",
|
|
4384
|
+
"duplicate-project": "Duplicate Project",
|
|
4385
|
+
"duplicate-pipeline": "Duplicate Pipeline",
|
|
4424
4386
|
"project-name": "Project Name",
|
|
4425
4387
|
"new-project": "New Project",
|
|
4426
|
-
"new-pipeline": "New
|
|
4388
|
+
"new-pipeline": "New Pipeline",
|
|
4427
4389
|
"open": "Open",
|
|
4428
4390
|
"import": "Import",
|
|
4429
4391
|
"pipeline-name": "Pipeline Name",
|
|
4430
4392
|
"your-projects": "Your projects",
|
|
4431
4393
|
"no-projects-yet": "No projects yet",
|
|
4432
4394
|
"no-pipelines-yet": "No pipelines yet",
|
|
4433
|
-
"delete-project": "Delete
|
|
4395
|
+
"delete-project": "Delete Project",
|
|
4434
4396
|
"confirm-delete-project": "Are you sure you want to delete this project? This action cannot be undone.",
|
|
4435
4397
|
"cannot-delete-project": "Cannot delete project",
|
|
4436
4398
|
"project-not-empty": "This project contains pipelines. Please delete them first.",
|
|
@@ -4443,43 +4405,43 @@ var en_US_default = {
|
|
|
4443
4405
|
"rename-project": "Rename Project",
|
|
4444
4406
|
"new-project-name": "New Project Name",
|
|
4445
4407
|
"premium-feature": "This is a premium feature",
|
|
4446
|
-
"migrate-warning": "This file
|
|
4447
|
-
"simple-pipeline": "
|
|
4408
|
+
"migrate-warning": "This file format will soon be deprecated. Please migrate it to the new local workspace storage.",
|
|
4409
|
+
"simple-pipeline": "Basic pipeline",
|
|
4448
4410
|
"advanced-pipeline": "Advanced pipeline",
|
|
4449
4411
|
"new-simple-project": "New simple project",
|
|
4450
4412
|
"new-advanced-project": "New advanced project",
|
|
4451
|
-
"store-project-internally": "
|
|
4413
|
+
"store-project-internally": "Save project locally",
|
|
4452
4414
|
"internal": "Internal",
|
|
4453
|
-
"confirm-migration-message": "Are you sure you want to
|
|
4415
|
+
"confirm-migration-message": "Are you sure you want to move this pipeline to local workspace storage? Pipelab will manage this pipeline internally.",
|
|
4454
4416
|
"migrate-pipeline": "Migrate Pipeline",
|
|
4455
4417
|
"migration-success": "Pipeline migrated successfully",
|
|
4456
|
-
"migrate-to-internal": "
|
|
4457
|
-
"only-internal-supported-notice": "Pipelab now
|
|
4418
|
+
"migrate-to-internal": "Move to Workspace",
|
|
4419
|
+
"only-internal-supported-notice": "Pipelab now manages all pipelines within the application workspace. External files are deprecated, but can be imported into your workspace.",
|
|
4458
4420
|
"import-pipeline": "Import Pipeline",
|
|
4459
4421
|
"import-success": "Pipeline imported successfully",
|
|
4460
4422
|
"failed-to-read-file": "Failed to read the selected file"
|
|
4461
4423
|
},
|
|
4462
|
-
|
|
4424
|
+
pipelines: { "title": "@:headers.pipelines" },
|
|
4463
4425
|
tour: {
|
|
4464
4426
|
"start-tour": "Start Tour",
|
|
4465
4427
|
"projects-list-title": "Project Navigator",
|
|
4466
|
-
"projects-list-description": "This sidebar
|
|
4428
|
+
"projects-list-description": "This sidebar lists your projects. Selecting a project will show its pipelines in the main area.",
|
|
4467
4429
|
"add-project-title": "Create New Project",
|
|
4468
|
-
"add-project-description": "Projects
|
|
4469
|
-
"new-pipeline-title": "
|
|
4470
|
-
"new-pipeline-description": "Ready to automate? Create a new pipeline to start adding
|
|
4430
|
+
"add-project-description": "Projects organize your pipelines by topic or client. Click here to start a new project.",
|
|
4431
|
+
"new-pipeline-title": "Create a Pipeline",
|
|
4432
|
+
"new-pipeline-description": "Ready to automate? Create a new pipeline to start adding actions and logic.",
|
|
4471
4433
|
"project-actions-title": "Project Management",
|
|
4472
4434
|
"project-actions-description": "Use these buttons to rename or delete the currently selected project.",
|
|
4473
4435
|
"editor-canvas-title": "The Visual Canvas",
|
|
4474
|
-
"editor-canvas-description": "This is your
|
|
4436
|
+
"editor-canvas-description": "This is your canvas. Drag and drop action blocks here to build your automation flow.",
|
|
4475
4437
|
"editor-save-title": "Save Progress",
|
|
4476
|
-
"editor-save-description": "Keep your changes safe. We recommend saving
|
|
4477
|
-
"editor-run-title": "Test
|
|
4478
|
-
"editor-run-description": "Click Run to
|
|
4479
|
-
"editor-logs-title": "
|
|
4480
|
-
"editor-logs-description": "The
|
|
4481
|
-
"editor-close-title": "
|
|
4482
|
-
"editor-close-description": "Done for now? Return to the dashboard to manage other projects
|
|
4438
|
+
"editor-save-description": "Keep your changes safe. We recommend saving your pipeline frequently.",
|
|
4439
|
+
"editor-run-title": "Test Pipeline",
|
|
4440
|
+
"editor-run-description": "Click Run to test your pipeline. Pipelab will execute each block in real-time.",
|
|
4441
|
+
"editor-logs-title": "Run Logs",
|
|
4442
|
+
"editor-logs-description": "The log panel shows real-time execution steps, helping you monitor and debug.",
|
|
4443
|
+
"editor-close-title": "Close Editor",
|
|
4444
|
+
"editor-close-description": "Done for now? Return to the dashboard to manage other projects and pipelines."
|
|
4483
4445
|
}
|
|
4484
4446
|
};
|
|
4485
4447
|
//#endregion
|
|
@@ -4487,14 +4449,16 @@ var en_US_default = {
|
|
|
4487
4449
|
var fr_FR_default = {
|
|
4488
4450
|
settings: {
|
|
4489
4451
|
"darkTheme": "Thème sombre",
|
|
4452
|
+
"autosave": "Enregistrement automatique",
|
|
4453
|
+
"autosaveDescription": "Enregistrez automatiquement les modifications de vos pipelines en temps réel.",
|
|
4490
4454
|
"language": "Langue",
|
|
4491
4455
|
"languageOptions": {
|
|
4492
4456
|
"en-US": "English",
|
|
4493
4457
|
"fr-FR": "Français",
|
|
4494
|
-
"pt-BR": "
|
|
4495
|
-
"zh-CN": "
|
|
4496
|
-
"es-ES": "
|
|
4497
|
-
"de-DE": "
|
|
4458
|
+
"pt-BR": "Português",
|
|
4459
|
+
"zh-CN": "Chinois",
|
|
4460
|
+
"es-ES": "Espagnol",
|
|
4461
|
+
"de-DE": "Allemand"
|
|
4498
4462
|
},
|
|
4499
4463
|
"tabs": {
|
|
4500
4464
|
"general": "Général",
|
|
@@ -4502,32 +4466,39 @@ var fr_FR_default = {
|
|
|
4502
4466
|
"integrations": "Intégrations",
|
|
4503
4467
|
"advanced": "Avancé",
|
|
4504
4468
|
"billing": "Facturation",
|
|
4505
|
-
"plugins": "
|
|
4506
|
-
"core-plugins": "
|
|
4507
|
-
"community-plugins": "
|
|
4469
|
+
"plugins": "Extensions",
|
|
4470
|
+
"core-plugins": "Extensions de base",
|
|
4471
|
+
"community-plugins": "Extensions de la communauté",
|
|
4508
4472
|
"versions": "Versions"
|
|
4509
4473
|
},
|
|
4510
|
-
"
|
|
4511
|
-
"
|
|
4512
|
-
"
|
|
4513
|
-
"
|
|
4514
|
-
"
|
|
4515
|
-
"
|
|
4516
|
-
"
|
|
4517
|
-
"
|
|
4518
|
-
"
|
|
4519
|
-
"
|
|
4520
|
-
"
|
|
4521
|
-
"cache-
|
|
4522
|
-
"
|
|
4523
|
-
"
|
|
4524
|
-
"
|
|
4474
|
+
"pipeline-cache-folder": "Dossier cache des pipelines :",
|
|
4475
|
+
"enter-or-browse-for-a-folder": "Saisir ou parcourir pour choisir un dossier",
|
|
4476
|
+
"browse": "Parcourir",
|
|
4477
|
+
"manage-where-the-app-stores-temporary-and-cache-files": "Configurez les dossiers locaux pour les fichiers temporaires et le cache de l'application.",
|
|
4478
|
+
"clear-cache": "Vider le cache",
|
|
4479
|
+
"reset-to-default": "Réinitialiser par défaut",
|
|
4480
|
+
"manage-subscription": "Gérer l'abonnement",
|
|
4481
|
+
"renewal-date": "Date de renouvellement",
|
|
4482
|
+
"start-date": "Date de début :",
|
|
4483
|
+
"cache-cleared-successfully": "Cache vidé avec succès",
|
|
4484
|
+
"failed-to-clear-cache-error-message": "Échec du vidage du cache : {0}",
|
|
4485
|
+
"failed-to-reset-cache-folder-error-message": "Échec de la réinitialisation du dossier cache : {0}",
|
|
4486
|
+
"select-cache-folder": "Sélectionner le dossier cache",
|
|
4487
|
+
"restart-dashboard-tour": "Réinitialiser le guide du tableau de bord",
|
|
4488
|
+
"restart-editor-tour": "Réinitialiser le guide de l'éditeur",
|
|
4489
|
+
"tour-reset-success": "Les guides d'aide ont été réinitialisés. Ils réapparaîtront lors de votre prochaine visite.",
|
|
4490
|
+
"storage-pipelab": "Pipelab",
|
|
4491
|
+
"storage-other": "Autres applications",
|
|
4492
|
+
"storage-free": "Espace libre",
|
|
4493
|
+
"disk-usage": "Utilisation du disque",
|
|
4494
|
+
"free": "Libre",
|
|
4495
|
+
"other": "Autre"
|
|
4525
4496
|
},
|
|
4526
4497
|
headers: {
|
|
4527
4498
|
"dashboard": "Tableau de bord",
|
|
4528
|
-
"
|
|
4499
|
+
"pipelines": "Pipelines",
|
|
4529
4500
|
"editor": "Éditeur",
|
|
4530
|
-
"billing": "
|
|
4501
|
+
"billing": "@:settings.tabs.billing",
|
|
4531
4502
|
"team": "Équipe"
|
|
4532
4503
|
},
|
|
4533
4504
|
base: {
|
|
@@ -4537,49 +4508,116 @@ var fr_FR_default = {
|
|
|
4537
4508
|
"cancel": "Annuler",
|
|
4538
4509
|
"end": "Fin",
|
|
4539
4510
|
"delete": "Supprimer",
|
|
4540
|
-
"logs": "
|
|
4511
|
+
"logs": "Journaux",
|
|
4541
4512
|
"ok": "OK",
|
|
4542
4513
|
"add": "Ajouter",
|
|
4543
|
-
"search": "Rechercher..."
|
|
4514
|
+
"search": "Rechercher...",
|
|
4515
|
+
"success": "Succès",
|
|
4516
|
+
"error": "Erreur"
|
|
4544
4517
|
},
|
|
4545
4518
|
editor: {
|
|
4546
4519
|
"invalid-file-content": "Contenu du fichier invalide",
|
|
4547
|
-
"welcome-back": "Bon retour
|
|
4548
|
-
"please-log-in-to-run-a-
|
|
4549
|
-
"execution-done": "Exécution terminée",
|
|
4550
|
-
"your-project-has-been-executed-successfully": "Votre
|
|
4520
|
+
"welcome-back": "Bon retour !",
|
|
4521
|
+
"please-log-in-to-run-a-pipeline": "Veuillez vous connecter pour exécuter ce pipeline.",
|
|
4522
|
+
"execution-done": "Exécution terminée avec succès",
|
|
4523
|
+
"your-project-has-been-executed-successfully": "Votre pipeline s'est exécuté et s'est terminé avec succès.",
|
|
4551
4524
|
"execution-failed": "Échec de l'exécution",
|
|
4552
|
-
"project-has-encountered-an-error": "Le
|
|
4553
|
-
"project-saved": "
|
|
4554
|
-
"your-project-has-be-saved-successfully": "Votre
|
|
4555
|
-
"
|
|
4556
|
-
"
|
|
4525
|
+
"project-has-encountered-an-error": "Le pipeline a rencontré une erreur :",
|
|
4526
|
+
"project-saved": "Pipeline enregistré",
|
|
4527
|
+
"your-project-has-be-saved-successfully": "Votre pipeline a été enregistré avec succès.",
|
|
4528
|
+
"view-history": "Historique",
|
|
4529
|
+
"add-plugin": "Ajouter une extension",
|
|
4530
|
+
"display-advanced-nodes": "Afficher les nœuds avancés",
|
|
4531
|
+
"project-settings": "Paramètres du pipeline",
|
|
4532
|
+
"jit-loading-title": "Préparation des extensions",
|
|
4533
|
+
"jit-loading-subtitle": "Veuillez patienter pendant que Pipelab télécharge et configure les extensions requises pour ce pipeline.",
|
|
4534
|
+
"jit-loading-status": "Téléchargement et configuration des paquets d'extension...",
|
|
4535
|
+
"validation-failed": "Échec de la validation",
|
|
4536
|
+
"validation-plugin-disabled-or-missing": "Le bloc \"{nodeName}\" requiert l'extension \"{pluginId}\", qui n'est pas installée ou activée actuellement.",
|
|
4537
|
+
"validation-missing-param": "Veuillez configurer le champ requis \"{paramName}\" dans le bloc \"{nodeName}\"."
|
|
4557
4538
|
},
|
|
4558
4539
|
home: {
|
|
4559
|
-
"invalid-preset": "
|
|
4560
|
-
"store-project-on-the-cloud": "Enregistrer le projet
|
|
4561
|
-
"cloud": "
|
|
4540
|
+
"invalid-preset": "Modèle invalide",
|
|
4541
|
+
"store-project-on-the-cloud": "Enregistrer le projet dans le Cloud",
|
|
4542
|
+
"cloud": "Cloud",
|
|
4562
4543
|
"store-project-locally": "Enregistrer le projet localement",
|
|
4563
4544
|
"local": "Local",
|
|
4564
|
-
"invalid-number-of-paths-selected": "Nombre
|
|
4545
|
+
"invalid-number-of-paths-selected": "Nombre de chemins sélectionné invalide",
|
|
4565
4546
|
"pipelab-project": "Projet Pipelab",
|
|
4566
|
-
"choose-a-new-path": "
|
|
4547
|
+
"choose-a-new-path": "Choisir un nouveau chemin",
|
|
4567
4548
|
"invalid-file-type": "Type de fichier invalide",
|
|
4568
|
-
"create-project": "Créer
|
|
4569
|
-
"
|
|
4549
|
+
"create-project": "Créer le Projet",
|
|
4550
|
+
"create-pipeline": "Créer le Pipeline",
|
|
4551
|
+
"duplicate-project": "Dupliquer le Projet",
|
|
4552
|
+
"duplicate-pipeline": "Dupliquer le Pipeline",
|
|
4570
4553
|
"project-name": "Nom du projet",
|
|
4571
|
-
"new-project": "Nouveau
|
|
4554
|
+
"new-project": "Nouveau Projet",
|
|
4555
|
+
"new-pipeline": "Nouveau Pipeline",
|
|
4572
4556
|
"open": "Ouvrir",
|
|
4557
|
+
"import": "Importer",
|
|
4558
|
+
"pipeline-name": "Nom du pipeline",
|
|
4573
4559
|
"your-projects": "Vos projets",
|
|
4574
|
-
"no-projects-yet": "Aucun projet
|
|
4560
|
+
"no-projects-yet": "Aucun projet pour le moment",
|
|
4561
|
+
"no-pipelines-yet": "Aucun pipeline pour le moment",
|
|
4562
|
+
"delete-project": "Supprimer le Projet",
|
|
4563
|
+
"confirm-delete-project": "Êtes-vous sûr de vouloir supprimer ce projet ? Cette action est irréversible.",
|
|
4564
|
+
"cannot-delete-project": "Impossible de supprimer le projet",
|
|
4565
|
+
"project-not-empty": "Ce projet contient des pipelines. Veuillez d'abord les supprimer.",
|
|
4566
|
+
"transfer": "Transférer",
|
|
4567
|
+
"transfer-successful": "Transfert réussi",
|
|
4568
|
+
"pipeline-transferred": "Pipeline transféré avec succès",
|
|
4569
|
+
"select-project": "Sélectionner le Projet",
|
|
4570
|
+
"build-history": "Historique des exécutions",
|
|
4571
|
+
"duplicate": "Dupliquer",
|
|
4572
|
+
"rename-project": "Renommer le Projet",
|
|
4573
|
+
"new-project-name": "Nouveau nom du projet",
|
|
4574
|
+
"premium-feature": "Ceci est une fonctionnalité premium",
|
|
4575
|
+
"migrate-warning": "Ce format de fichier sera bientôt obsolète. Veuillez le migrer vers le nouveau stockage local.",
|
|
4576
|
+
"simple-pipeline": "Pipeline basique",
|
|
4577
|
+
"advanced-pipeline": "Pipeline avancé",
|
|
4578
|
+
"new-simple-project": "Nouveau projet simple",
|
|
4579
|
+
"new-advanced-project": "Nouveau projet avancé",
|
|
4580
|
+
"store-project-internally": "Enregistrer le projet localement",
|
|
4581
|
+
"internal": "Interne",
|
|
4582
|
+
"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.",
|
|
4583
|
+
"migrate-pipeline": "Migrer le Pipeline",
|
|
4584
|
+
"migration-success": "Pipeline migré avec succès",
|
|
4585
|
+
"migrate-to-internal": "Déplacer vers l'espace de travail",
|
|
4586
|
+
"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.",
|
|
4587
|
+
"import-pipeline": "Importer le Pipeline",
|
|
4588
|
+
"import-success": "Pipeline importé avec succès",
|
|
4589
|
+
"failed-to-read-file": "Échec de la lecture du fichier sélectionné"
|
|
4575
4590
|
},
|
|
4576
|
-
|
|
4591
|
+
pipelines: { "title": "@:headers.pipelines" },
|
|
4592
|
+
tour: {
|
|
4593
|
+
"start-tour": "Démarrer le guide",
|
|
4594
|
+
"projects-list-title": "Navigateur de projets",
|
|
4595
|
+
"projects-list-description": "Cette barre latérale liste vos projets. En sélectionnant un projet, ses pipelines s'afficheront dans la zone principale.",
|
|
4596
|
+
"add-project-title": "Créer un nouveau projet",
|
|
4597
|
+
"add-project-description": "Les projets organisent vos pipelines par sujet ou client. Cliquez ici pour commencer un nouveau projet.",
|
|
4598
|
+
"new-pipeline-title": "Créer un pipeline",
|
|
4599
|
+
"new-pipeline-description": "Prêt à automatiser ? Créez un nouveau pipeline pour commencer à ajouter des actions et de la logique.",
|
|
4600
|
+
"project-actions-title": "Gestion du projet",
|
|
4601
|
+
"project-actions-description": "Utilisez ces boutons pour renommer ou supprimer le projet actuellement sélectionné.",
|
|
4602
|
+
"editor-canvas-title": "Le canevas visuel",
|
|
4603
|
+
"editor-canvas-description": "Ceci est votre canevas. Glissez-déposez des blocs d'action ici pour construire votre flux d'automatisation.",
|
|
4604
|
+
"editor-save-title": "Enregistrer la progression",
|
|
4605
|
+
"editor-save-description": "Protégez vos modifications. Nous vous recommandons d'enregistrer fréquemment votre pipeline.",
|
|
4606
|
+
"editor-run-title": "Tester le pipeline",
|
|
4607
|
+
"editor-run-description": "Cliquez sur Exécuter pour tester votre pipeline. Pipelab exécutera chaque bloc en temps réel.",
|
|
4608
|
+
"editor-logs-title": "Journaux d'exécution",
|
|
4609
|
+
"editor-logs-description": "Le panneau des journaux affiche les étapes d'exécution en temps réel, vous aidant à surveiller et déboguer.",
|
|
4610
|
+
"editor-close-title": "Fermer l'éditeur",
|
|
4611
|
+
"editor-close-description": "Terminé pour le moment ? Retournez au tableau de bord pour gérer d'autres projets et pipelines."
|
|
4612
|
+
}
|
|
4577
4613
|
};
|
|
4578
4614
|
//#endregion
|
|
4579
4615
|
//#region ../../packages/shared/src/i18n/pt_BR.json
|
|
4580
4616
|
var pt_BR_default = {
|
|
4581
4617
|
settings: {
|
|
4582
4618
|
"darkTheme": "Tema escuro",
|
|
4619
|
+
"autosave": "Salvar automaticamente",
|
|
4620
|
+
"autosaveDescription": "Salvar alterações em suas pipelines automaticamente em tempo real.",
|
|
4583
4621
|
"language": "Idioma",
|
|
4584
4622
|
"languageOptions": {
|
|
4585
4623
|
"en-US": "English",
|
|
@@ -4591,37 +4629,44 @@ var pt_BR_default = {
|
|
|
4591
4629
|
},
|
|
4592
4630
|
"tabs": {
|
|
4593
4631
|
"general": "Geral",
|
|
4594
|
-
"storage": "
|
|
4632
|
+
"storage": "Armazenamento",
|
|
4595
4633
|
"integrations": "Integrações",
|
|
4596
4634
|
"advanced": "Avançado",
|
|
4597
|
-
"billing": "
|
|
4598
|
-
"plugins": "
|
|
4599
|
-
"core-plugins": "
|
|
4600
|
-
"community-plugins": "
|
|
4635
|
+
"billing": "Faturamento",
|
|
4636
|
+
"plugins": "Extensões",
|
|
4637
|
+
"core-plugins": "Extensões nativas",
|
|
4638
|
+
"community-plugins": "Extensões da comunidade",
|
|
4601
4639
|
"versions": "Versões"
|
|
4602
4640
|
},
|
|
4603
|
-
"
|
|
4604
|
-
"
|
|
4605
|
-
"
|
|
4606
|
-
"
|
|
4607
|
-
"
|
|
4608
|
-
"
|
|
4609
|
-
"
|
|
4610
|
-
"
|
|
4611
|
-
"
|
|
4612
|
-
"
|
|
4613
|
-
"
|
|
4614
|
-
"cache-
|
|
4615
|
-
"
|
|
4616
|
-
"
|
|
4617
|
-
"
|
|
4641
|
+
"pipeline-cache-folder": "Pasta de cache de pipelines:",
|
|
4642
|
+
"enter-or-browse-for-a-folder": "Digite ou procure uma pasta",
|
|
4643
|
+
"browse": "Procurar",
|
|
4644
|
+
"manage-where-the-app-stores-temporary-and-cache-files": "Configurar pastas locais para arquivos temporários e cache do aplicativo.",
|
|
4645
|
+
"clear-cache": "Limpar cache",
|
|
4646
|
+
"reset-to-default": "Redefinir para o padrão",
|
|
4647
|
+
"manage-subscription": "Gerenciar assinatura",
|
|
4648
|
+
"renewal-date": "Data de renovação",
|
|
4649
|
+
"start-date": "Data de início:",
|
|
4650
|
+
"cache-cleared-successfully": "Cache limpo com sucesso",
|
|
4651
|
+
"failed-to-clear-cache-error-message": "Falha ao limpar cache: {0}",
|
|
4652
|
+
"failed-to-reset-cache-folder-error-message": "Falha ao redefinir pasta de cache: {0}",
|
|
4653
|
+
"select-cache-folder": "Selecionar pasta de cache",
|
|
4654
|
+
"restart-dashboard-tour": "Redefinir guia de início",
|
|
4655
|
+
"restart-editor-tour": "Redefinir guia do editor",
|
|
4656
|
+
"tour-reset-success": "Os guias de ajuda foram redefinidos. Eles reaparecerão em sua próxima visita.",
|
|
4657
|
+
"storage-pipelab": "Pipelab",
|
|
4658
|
+
"storage-other": "Outros aplicativos",
|
|
4659
|
+
"storage-free": "Espaço livre",
|
|
4660
|
+
"disk-usage": "Uso do disco",
|
|
4661
|
+
"free": "Livre",
|
|
4662
|
+
"other": "Outro"
|
|
4618
4663
|
},
|
|
4619
4664
|
headers: {
|
|
4620
|
-
"dashboard": "
|
|
4621
|
-
"
|
|
4665
|
+
"dashboard": "Início",
|
|
4666
|
+
"pipelines": "Pipelines",
|
|
4622
4667
|
"editor": "Editor",
|
|
4623
|
-
"billing": "
|
|
4624
|
-
"team": "
|
|
4668
|
+
"billing": "@:settings.tabs.billing",
|
|
4669
|
+
"team": "Equipe"
|
|
4625
4670
|
},
|
|
4626
4671
|
base: {
|
|
4627
4672
|
"close": "Fechar",
|
|
@@ -4630,47 +4675,117 @@ var pt_BR_default = {
|
|
|
4630
4675
|
"cancel": "Cancelar",
|
|
4631
4676
|
"end": "Fim",
|
|
4632
4677
|
"delete": "Excluir",
|
|
4633
|
-
"logs": "
|
|
4678
|
+
"logs": "Registros",
|
|
4634
4679
|
"ok": "OK",
|
|
4635
|
-
"add": "Adicionar"
|
|
4680
|
+
"add": "Adicionar",
|
|
4681
|
+
"search": "Buscar...",
|
|
4682
|
+
"success": "Sucesso",
|
|
4683
|
+
"error": "Erro"
|
|
4636
4684
|
},
|
|
4637
4685
|
editor: {
|
|
4638
|
-
"invalid-file-content": "
|
|
4639
|
-
"welcome-back": "
|
|
4640
|
-
"please-log-in-to-run-a-
|
|
4641
|
-
"execution-done": "
|
|
4642
|
-
"your-project-has-been-executed-successfully": "
|
|
4643
|
-
"execution-failed": "
|
|
4644
|
-
"project-has-encountered-an-error": "
|
|
4645
|
-
"project-saved": "
|
|
4646
|
-
"your-project-has-be-saved-successfully": "
|
|
4686
|
+
"invalid-file-content": "Conteúdo do arquivo inválido",
|
|
4687
|
+
"welcome-back": "Bem-vindo de volta!",
|
|
4688
|
+
"please-log-in-to-run-a-pipeline": "Por favor, faça login para executar esta pipeline.",
|
|
4689
|
+
"execution-done": "Execução concluída com sucesso",
|
|
4690
|
+
"your-project-has-been-executed-successfully": "Sua pipeline foi executada e concluída com sucesso.",
|
|
4691
|
+
"execution-failed": "Falha na execução",
|
|
4692
|
+
"project-has-encountered-an-error": "A pipeline encontrou um erro:",
|
|
4693
|
+
"project-saved": "Pipeline salva",
|
|
4694
|
+
"your-project-has-be-saved-successfully": "Sua pipeline foi salva com sucesso.",
|
|
4695
|
+
"view-history": "Histórico",
|
|
4696
|
+
"add-plugin": "Adicionar extensão",
|
|
4697
|
+
"display-advanced-nodes": "Exibir blocos avançados",
|
|
4698
|
+
"project-settings": "Ajustes da pipeline",
|
|
4699
|
+
"jit-loading-title": "Preparando extensões",
|
|
4700
|
+
"jit-loading-subtitle": "Aguarde enquanto o Pipelab baixa e configura as extensões necessárias para esta pipeline.",
|
|
4701
|
+
"jit-loading-status": "Baixando e configurando pacotes de extensões...",
|
|
4702
|
+
"validation-failed": "Falha na validação",
|
|
4703
|
+
"validation-plugin-disabled-or-missing": "O bloco \"{nodeName}\" requer a extensão \"{pluginId}\", que não está instalada ou ativada.",
|
|
4704
|
+
"validation-missing-param": "Por favor, configure o campo obrigatório \"{paramName}\" no bloco \"{nodeName}\"."
|
|
4647
4705
|
},
|
|
4648
4706
|
home: {
|
|
4649
|
-
"invalid-preset": "
|
|
4650
|
-
"store-project-on-the-cloud": "
|
|
4651
|
-
"cloud": "
|
|
4652
|
-
"store-project-locally": "
|
|
4707
|
+
"invalid-preset": "Modelo inválido",
|
|
4708
|
+
"store-project-on-the-cloud": "Salvar projeto na nuvem",
|
|
4709
|
+
"cloud": "Nuvem",
|
|
4710
|
+
"store-project-locally": "Salvar projeto localmente",
|
|
4653
4711
|
"local": "Local",
|
|
4654
|
-
"invalid-number-of-paths-selected": "
|
|
4655
|
-
"pipelab-project": "Pipelab
|
|
4656
|
-
"choose-a-new-path": "
|
|
4657
|
-
"invalid-file-type": "
|
|
4658
|
-
"create-project": "
|
|
4659
|
-
"
|
|
4660
|
-
"project
|
|
4661
|
-
"
|
|
4662
|
-
"
|
|
4663
|
-
"
|
|
4664
|
-
"
|
|
4712
|
+
"invalid-number-of-paths-selected": "Número de caminhos selecionado inválido",
|
|
4713
|
+
"pipelab-project": "Projeto Pipelab",
|
|
4714
|
+
"choose-a-new-path": "Escolha um novo caminho",
|
|
4715
|
+
"invalid-file-type": "Tipo de arquivo inválido",
|
|
4716
|
+
"create-project": "Criar Projeto",
|
|
4717
|
+
"create-pipeline": "Criar Pipeline",
|
|
4718
|
+
"duplicate-project": "Duplicar Projeto",
|
|
4719
|
+
"duplicate-pipeline": "Duplicar Pipeline",
|
|
4720
|
+
"project-name": "Nome do projeto",
|
|
4721
|
+
"new-project": "Novo Projeto",
|
|
4722
|
+
"new-pipeline": "Nova Pipeline",
|
|
4723
|
+
"open": "Abrir",
|
|
4724
|
+
"import": "Importar",
|
|
4725
|
+
"pipeline-name": "Nome da pipeline",
|
|
4726
|
+
"your-projects": "Seus projetos",
|
|
4727
|
+
"no-projects-yet": "Nenhum projeto ainda",
|
|
4728
|
+
"no-pipelines-yet": "Nenhuma pipeline ainda",
|
|
4729
|
+
"delete-project": "Excluir Projeto",
|
|
4730
|
+
"confirm-delete-project": "Tem certeza de que deseja excluir este projeto? Esta ação não pode ser desfeita.",
|
|
4731
|
+
"cannot-delete-project": "Não é possível excluir o projeto",
|
|
4732
|
+
"project-not-empty": "Este projeto contém pipelines. Por favor, exclua-os primeiro.",
|
|
4733
|
+
"transfer": "Transferir",
|
|
4734
|
+
"transfer-successful": "Transferência bem-sucedida",
|
|
4735
|
+
"pipeline-transferred": "Pipeline transferida com sucesso",
|
|
4736
|
+
"select-project": "Selecionar Projeto",
|
|
4737
|
+
"build-history": "Histórico de execuções",
|
|
4738
|
+
"duplicate": "Duplicar",
|
|
4739
|
+
"rename-project": "Renomear Projeto",
|
|
4740
|
+
"new-project-name": "Novo nome do projeto",
|
|
4741
|
+
"premium-feature": "Este é um recurso premium",
|
|
4742
|
+
"migrate-warning": "Este formato de arquivo em prazo curto será descontinuado. Por favor, migre-o para o novo armazenamento local do aplicativo.",
|
|
4743
|
+
"simple-pipeline": "Pipeline básica",
|
|
4744
|
+
"advanced-pipeline": "Pipeline avançada",
|
|
4745
|
+
"new-simple-project": "Novo projeto simples",
|
|
4746
|
+
"new-advanced-project": "Novo projeto avançado",
|
|
4747
|
+
"store-project-internally": "Salvar projeto localmente",
|
|
4748
|
+
"internal": "Interno",
|
|
4749
|
+
"confirm-migration-message": "Tem certeza de que deseja mover esta pipeline para o armazenamento local do aplicativo? O Pipelab gerenciará esta pipeline internamente.",
|
|
4750
|
+
"migrate-pipeline": "Migrar Pipeline",
|
|
4751
|
+
"migration-success": "Pipeline migrada com sucesso",
|
|
4752
|
+
"migrate-to-internal": "Mover para o espaço de trabalho",
|
|
4753
|
+
"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.",
|
|
4754
|
+
"import-pipeline": "Importar Pipeline",
|
|
4755
|
+
"import-success": "Pipeline importada com sucesso",
|
|
4756
|
+
"failed-to-read-file": "Falha ao ler o arquivo selecionado"
|
|
4665
4757
|
},
|
|
4666
|
-
|
|
4758
|
+
pipelines: { "title": "@:headers.pipelines" },
|
|
4759
|
+
tour: {
|
|
4760
|
+
"start-tour": "Iniciar guia",
|
|
4761
|
+
"projects-list-title": "Navegador de projetos",
|
|
4762
|
+
"projects-list-description": "Esta barra lateral mostra seus projetos. Ao selecionar um, suas pipelines serão exibidas na área principal.",
|
|
4763
|
+
"add-project-title": "Criar novo projeto",
|
|
4764
|
+
"add-project-description": "Os projetos organizam suas pipelines por tópico ou cliente. Clique aqui para criar um novo projeto.",
|
|
4765
|
+
"new-pipeline-title": "Criar uma pipeline",
|
|
4766
|
+
"new-pipeline-description": "Pronto para automatizar? Crie uma nova pipeline para começar a adicionar ações e lógica.",
|
|
4767
|
+
"project-actions-title": "Gerenciamento de projetos",
|
|
4768
|
+
"project-actions-description": "Use estes botões para renomear ou excluir o projeto selecionado.",
|
|
4769
|
+
"editor-canvas-title": "O painel visual",
|
|
4770
|
+
"editor-canvas-description": "Este é o seu painel. Arraste e solte blocos de ação aqui para construir seu fluxo.",
|
|
4771
|
+
"editor-save-title": "Salvar progresso",
|
|
4772
|
+
"editor-save-description": "Mantenha suas alterações seguras. Recomendamos salvar sua pipeline frequentemente.",
|
|
4773
|
+
"editor-run-title": "Testar pipeline",
|
|
4774
|
+
"editor-run-description": "Clique em Executar para testar sua pipeline. O Pipelab executará cada bloco em tempo real.",
|
|
4775
|
+
"editor-logs-title": "Registros de execução",
|
|
4776
|
+
"editor-logs-description": "O painel de registros exibe as etapas de execução em tempo real, ajudando você a monitorar e depurar.",
|
|
4777
|
+
"editor-close-title": "Fechar editor",
|
|
4778
|
+
"editor-close-description": "Terminou por agora? Volte para o painel principal para gerenciar outros projetos e pipelines."
|
|
4779
|
+
}
|
|
4667
4780
|
};
|
|
4668
4781
|
//#endregion
|
|
4669
4782
|
//#region ../../packages/shared/src/i18n/zh_CN.json
|
|
4670
4783
|
var zh_CN_default = {
|
|
4671
4784
|
settings: {
|
|
4672
|
-
"darkTheme": "
|
|
4673
|
-
"
|
|
4785
|
+
"darkTheme": "深色主题",
|
|
4786
|
+
"autosave": "自动保存",
|
|
4787
|
+
"autosaveDescription": "自动保存流水线修改,省心省力。",
|
|
4788
|
+
"language": "语言",
|
|
4674
4789
|
"languageOptions": {
|
|
4675
4790
|
"en-US": "English",
|
|
4676
4791
|
"fr-FR": "French",
|
|
@@ -4680,38 +4795,45 @@ var zh_CN_default = {
|
|
|
4680
4795
|
"de-DE": "German"
|
|
4681
4796
|
},
|
|
4682
4797
|
"tabs": {
|
|
4683
|
-
"general": "
|
|
4684
|
-
"storage": "
|
|
4685
|
-
"integrations": "
|
|
4686
|
-
"advanced": "
|
|
4687
|
-
"billing": "
|
|
4688
|
-
"plugins": "
|
|
4798
|
+
"general": "常规",
|
|
4799
|
+
"storage": "存储",
|
|
4800
|
+
"integrations": "集成",
|
|
4801
|
+
"advanced": "高级",
|
|
4802
|
+
"billing": "计费",
|
|
4803
|
+
"plugins": "插件",
|
|
4689
4804
|
"core-plugins": "核心插件",
|
|
4690
4805
|
"community-plugins": "社区插件",
|
|
4691
4806
|
"versions": "版本"
|
|
4692
4807
|
},
|
|
4693
|
-
"
|
|
4694
|
-
"
|
|
4695
|
-
"
|
|
4696
|
-
"
|
|
4697
|
-
"
|
|
4698
|
-
"
|
|
4699
|
-
"
|
|
4700
|
-
"
|
|
4701
|
-
"
|
|
4702
|
-
"
|
|
4703
|
-
"
|
|
4704
|
-
"cache-
|
|
4705
|
-
"
|
|
4706
|
-
"
|
|
4707
|
-
"
|
|
4808
|
+
"pipeline-cache-folder": "流水线缓存文件夹:",
|
|
4809
|
+
"enter-or-browse-for-a-folder": "输入或浏览选择文件夹",
|
|
4810
|
+
"browse": "浏览",
|
|
4811
|
+
"manage-where-the-app-stores-temporary-and-cache-files": "配置用于存储临时文件和应用程序缓存的本地目录。",
|
|
4812
|
+
"clear-cache": "清除缓存",
|
|
4813
|
+
"reset-to-default": "恢复默认",
|
|
4814
|
+
"manage-subscription": "管理订阅",
|
|
4815
|
+
"renewal-date": "续订日期",
|
|
4816
|
+
"start-date": "开始日期:",
|
|
4817
|
+
"cache-cleared-successfully": "缓存清除成功",
|
|
4818
|
+
"failed-to-clear-cache-error-message": "清除缓存失败: {0}",
|
|
4819
|
+
"failed-to-reset-cache-folder-error-message": "重置缓存文件夹失败: {0}",
|
|
4820
|
+
"select-cache-folder": "选择缓存文件夹",
|
|
4821
|
+
"restart-dashboard-tour": "重置仪表盘指南",
|
|
4822
|
+
"restart-editor-tour": "重置编辑器指南",
|
|
4823
|
+
"tour-reset-success": "帮助指南已重置。将在您下次访问时重新显示。",
|
|
4824
|
+
"storage-pipelab": "Pipelab",
|
|
4825
|
+
"storage-other": "其他应用",
|
|
4826
|
+
"storage-free": "空闲空间",
|
|
4827
|
+
"disk-usage": "磁盘使用情况",
|
|
4828
|
+
"free": "空闲",
|
|
4829
|
+
"other": "其他"
|
|
4708
4830
|
},
|
|
4709
4831
|
headers: {
|
|
4710
|
-
"dashboard": "
|
|
4711
|
-
"
|
|
4712
|
-
"editor": "
|
|
4713
|
-
"billing": "
|
|
4714
|
-
"team": "
|
|
4832
|
+
"dashboard": "仪表盘",
|
|
4833
|
+
"pipelines": "流水线",
|
|
4834
|
+
"editor": "编辑器",
|
|
4835
|
+
"billing": "@:settings.tabs.billing",
|
|
4836
|
+
"team": "团队"
|
|
4715
4837
|
},
|
|
4716
4838
|
base: {
|
|
4717
4839
|
"close": "关闭",
|
|
@@ -4722,45 +4844,115 @@ var zh_CN_default = {
|
|
|
4722
4844
|
"delete": "删除",
|
|
4723
4845
|
"logs": "日志",
|
|
4724
4846
|
"ok": "确定",
|
|
4725
|
-
"add": "添加"
|
|
4847
|
+
"add": "添加",
|
|
4848
|
+
"search": "搜索...",
|
|
4849
|
+
"success": "成功",
|
|
4850
|
+
"error": "错误"
|
|
4726
4851
|
},
|
|
4727
4852
|
editor: {
|
|
4728
|
-
"invalid-file-content": "
|
|
4729
|
-
"welcome-back": "
|
|
4730
|
-
"please-log-in-to-run-a-
|
|
4731
|
-
"execution-done": "
|
|
4732
|
-
"your-project-has-been-executed-successfully": "
|
|
4733
|
-
"execution-failed": "
|
|
4734
|
-
"project-has-encountered-an-error": "
|
|
4735
|
-
"project-saved": "
|
|
4736
|
-
"your-project-has-be-saved-successfully": "
|
|
4853
|
+
"invalid-file-content": "无效的文件内容",
|
|
4854
|
+
"welcome-back": "欢迎回来!",
|
|
4855
|
+
"please-log-in-to-run-a-pipeline": "请登录后运行此流水线。",
|
|
4856
|
+
"execution-done": "运行成功完成",
|
|
4857
|
+
"your-project-has-been-executed-successfully": "您的流水线已成功运行完成。",
|
|
4858
|
+
"execution-failed": "运行失败",
|
|
4859
|
+
"project-has-encountered-an-error": "流水线遇到错误:",
|
|
4860
|
+
"project-saved": "流水线已保存",
|
|
4861
|
+
"your-project-has-be-saved-successfully": "您的流水线已成功保存。",
|
|
4862
|
+
"view-history": "历史记录",
|
|
4863
|
+
"add-plugin": "添加插件",
|
|
4864
|
+
"display-advanced-nodes": "显示高级节点",
|
|
4865
|
+
"project-settings": "流水线设置",
|
|
4866
|
+
"jit-loading-title": "正在准备插件",
|
|
4867
|
+
"jit-loading-subtitle": "请稍候,Pipelab 正在下载并配置此流水线所需的插件。",
|
|
4868
|
+
"jit-loading-status": "正在下载并安装插件包...",
|
|
4869
|
+
"validation-failed": "验证失败",
|
|
4870
|
+
"validation-plugin-disabled-or-missing": "节点 \"{nodeName}\" 需要插件 \"{pluginId}\",该插件目前未安装或未启用。",
|
|
4871
|
+
"validation-missing-param": "请配置节点 \"{nodeName}\" 中的必填字段 \"{paramName}\"。"
|
|
4737
4872
|
},
|
|
4738
4873
|
home: {
|
|
4739
|
-
"invalid-preset": "
|
|
4740
|
-
"store-project-on-the-cloud": "
|
|
4741
|
-
"cloud": "
|
|
4742
|
-
"store-project-locally": "
|
|
4743
|
-
"local": "
|
|
4744
|
-
"invalid-number-of-paths-selected": "
|
|
4745
|
-
"pipelab-project": "Pipelab
|
|
4746
|
-
"choose-a-new-path": "
|
|
4747
|
-
"invalid-file-type": "
|
|
4748
|
-
"create-project": "
|
|
4749
|
-
"
|
|
4750
|
-
"project
|
|
4751
|
-
"
|
|
4752
|
-
"
|
|
4753
|
-
"
|
|
4754
|
-
"
|
|
4874
|
+
"invalid-preset": "无效的预设",
|
|
4875
|
+
"store-project-on-the-cloud": "保存项目到云端",
|
|
4876
|
+
"cloud": "云端",
|
|
4877
|
+
"store-project-locally": "本地保存项目",
|
|
4878
|
+
"local": "本地",
|
|
4879
|
+
"invalid-number-of-paths-selected": "选择的路径数量无效",
|
|
4880
|
+
"pipelab-project": "Pipelab 项目",
|
|
4881
|
+
"choose-a-new-path": "选择新路径",
|
|
4882
|
+
"invalid-file-type": "无效的文件类型",
|
|
4883
|
+
"create-project": "创建项目",
|
|
4884
|
+
"create-pipeline": "创建流水线",
|
|
4885
|
+
"duplicate-project": "复制项目",
|
|
4886
|
+
"duplicate-pipeline": "复制流水线",
|
|
4887
|
+
"project-name": "项目名称",
|
|
4888
|
+
"new-project": "新建项目",
|
|
4889
|
+
"new-pipeline": "新建流水线",
|
|
4890
|
+
"open": "打开",
|
|
4891
|
+
"import": "导入",
|
|
4892
|
+
"pipeline-name": "流水线名称",
|
|
4893
|
+
"your-projects": "您的项目",
|
|
4894
|
+
"no-projects-yet": "暂无项目",
|
|
4895
|
+
"no-pipelines-yet": "暂无流水线",
|
|
4896
|
+
"delete-project": "删除项目",
|
|
4897
|
+
"confirm-delete-project": "您确定要删除此项目吗?此操作无法撤销。",
|
|
4898
|
+
"cannot-delete-project": "无法删除项目",
|
|
4899
|
+
"project-not-empty": "此项目包含流水线。请先删除它们。",
|
|
4900
|
+
"transfer": "转移",
|
|
4901
|
+
"transfer-successful": "转移成功",
|
|
4902
|
+
"pipeline-transferred": "流水线已成功转移",
|
|
4903
|
+
"select-project": "选择项目",
|
|
4904
|
+
"build-history": "运行历史",
|
|
4905
|
+
"duplicate": "复制",
|
|
4906
|
+
"rename-project": "重命名项目",
|
|
4907
|
+
"new-project-name": "新项目名称",
|
|
4908
|
+
"premium-feature": "这是高级会员功能",
|
|
4909
|
+
"migrate-warning": "此文件格式即将被弃用。请将其迁移到新的本地工作区存储。",
|
|
4910
|
+
"simple-pipeline": "基础流水线",
|
|
4911
|
+
"advanced-pipeline": "高级流水线",
|
|
4912
|
+
"new-simple-project": "新建简单项目",
|
|
4913
|
+
"new-advanced-project": "新建高级项目",
|
|
4914
|
+
"store-project-internally": "本地保存项目",
|
|
4915
|
+
"internal": "内部",
|
|
4916
|
+
"confirm-migration-message": "您确定要将此流水线移动到本地工作区存储吗?Pipelab 将在内部管理此流水线。",
|
|
4917
|
+
"migrate-pipeline": "迁移流水线",
|
|
4918
|
+
"migration-success": "流水线已成功迁移",
|
|
4919
|
+
"migrate-to-internal": "移动到工作区",
|
|
4920
|
+
"only-internal-supported-notice": "Pipelab 现在管理应用工作区内的所有流水线。外部文件已被弃用,但仍可以导入。",
|
|
4921
|
+
"import-pipeline": "导入流水线",
|
|
4922
|
+
"import-success": "流水线已成功导入",
|
|
4923
|
+
"failed-to-read-file": "读取所选文件失败"
|
|
4755
4924
|
},
|
|
4756
|
-
|
|
4925
|
+
pipelines: { "title": "@:headers.pipelines" },
|
|
4926
|
+
tour: {
|
|
4927
|
+
"start-tour": "开始向导",
|
|
4928
|
+
"projects-list-title": "项目导航器",
|
|
4929
|
+
"projects-list-description": "此侧边栏列出您的项目。选择一个项目将在主区域显示其包含的流水线。",
|
|
4930
|
+
"add-project-title": "创建新项目",
|
|
4931
|
+
"add-project-description": "项目可以按主题或客户组织您的流水线。点击这里开始一个新项目。",
|
|
4932
|
+
"new-pipeline-title": "创建流水线",
|
|
4933
|
+
"new-pipeline-description": "准备好自动化了吗?创建一个新流水线开始添加操作和逻辑。",
|
|
4934
|
+
"project-actions-title": "项目管理",
|
|
4935
|
+
"project-actions-description": "使用这些按钮重命名或删除当前选择的项目。",
|
|
4936
|
+
"editor-canvas-title": "可视化画布",
|
|
4937
|
+
"editor-canvas-description": "这是您的画布。拖放操作块到这里以构建您的自动化流程。",
|
|
4938
|
+
"editor-save-title": "保存进度",
|
|
4939
|
+
"editor-save-description": "确保您的更改已安全保存。我们建议您经常保存流水线。",
|
|
4940
|
+
"editor-run-title": "测试流水线",
|
|
4941
|
+
"editor-run-description": "点击“运行”测试流水线。Pipelab 将实时执行每个步骤。",
|
|
4942
|
+
"editor-logs-title": "运行日志",
|
|
4943
|
+
"editor-logs-description": "日志面板实时显示执行步骤,帮助您监控和调试。",
|
|
4944
|
+
"editor-close-title": "关闭编辑器",
|
|
4945
|
+
"editor-close-description": "今天的工作完成了吗?返回仪表盘以管理其他项目和流水线。"
|
|
4946
|
+
}
|
|
4757
4947
|
};
|
|
4758
4948
|
//#endregion
|
|
4759
4949
|
//#region ../../packages/shared/src/i18n/es_ES.json
|
|
4760
4950
|
var es_ES_default = {
|
|
4761
4951
|
settings: {
|
|
4762
|
-
"darkTheme": "
|
|
4763
|
-
"
|
|
4952
|
+
"darkTheme": "Tema oscuro",
|
|
4953
|
+
"autosave": "Guardado automático",
|
|
4954
|
+
"autosaveDescription": "Guarda automáticamente los cambios en tus pipelines en tiempo real.",
|
|
4955
|
+
"language": "Idioma",
|
|
4764
4956
|
"languageOptions": {
|
|
4765
4957
|
"en-US": "English",
|
|
4766
4958
|
"fr-FR": "French",
|
|
@@ -4771,37 +4963,44 @@ var es_ES_default = {
|
|
|
4771
4963
|
},
|
|
4772
4964
|
"tabs": {
|
|
4773
4965
|
"general": "General",
|
|
4774
|
-
"storage": "
|
|
4775
|
-
"integrations": "
|
|
4776
|
-
"advanced": "
|
|
4777
|
-
"billing": "
|
|
4778
|
-
"plugins": "
|
|
4966
|
+
"storage": "Almacenamiento",
|
|
4967
|
+
"integrations": "Integraciones",
|
|
4968
|
+
"advanced": "Avanzado",
|
|
4969
|
+
"billing": "Facturación",
|
|
4970
|
+
"plugins": "Complementos",
|
|
4779
4971
|
"core-plugins": "Complementos principales",
|
|
4780
4972
|
"community-plugins": "Complementos de la comunidad",
|
|
4781
4973
|
"versions": "Versiones"
|
|
4782
4974
|
},
|
|
4783
|
-
"
|
|
4784
|
-
"
|
|
4785
|
-
"
|
|
4786
|
-
"
|
|
4787
|
-
"
|
|
4788
|
-
"
|
|
4789
|
-
"
|
|
4790
|
-
"
|
|
4791
|
-
"
|
|
4792
|
-
"
|
|
4793
|
-
"
|
|
4794
|
-
"cache-
|
|
4795
|
-
"
|
|
4796
|
-
"
|
|
4797
|
-
"
|
|
4975
|
+
"pipeline-cache-folder": "Carpeta de caché de pipelines:",
|
|
4976
|
+
"enter-or-browse-for-a-folder": "Escribe o busca una carpeta",
|
|
4977
|
+
"browse": "Buscar",
|
|
4978
|
+
"manage-where-the-app-stores-temporary-and-cache-files": "Configura carpetas locales para archivos temporales y caché de la aplicación.",
|
|
4979
|
+
"clear-cache": "Limpiar caché",
|
|
4980
|
+
"reset-to-default": "Restablecer por defecto",
|
|
4981
|
+
"manage-subscription": "Gestionar suscripción",
|
|
4982
|
+
"renewal-date": "Fecha de renovación",
|
|
4983
|
+
"start-date": "Fecha de inicio:",
|
|
4984
|
+
"cache-cleared-successfully": "Caché limpia con éxito",
|
|
4985
|
+
"failed-to-clear-cache-error-message": "Error al limpiar la caché: {0}",
|
|
4986
|
+
"failed-to-reset-cache-folder-error-message": "Error al restablecer la carpeta de caché: {0}",
|
|
4987
|
+
"select-cache-folder": "Seleccionar carpeta de caché",
|
|
4988
|
+
"restart-dashboard-tour": "Restablecer guía de inicio",
|
|
4989
|
+
"restart-editor-tour": "Restablecer guía del editor",
|
|
4990
|
+
"tour-reset-success": "Las guías de ayuda se han restablecido. Volverán a aparecer en tu próxima visita.",
|
|
4991
|
+
"storage-pipelab": "Pipelab",
|
|
4992
|
+
"storage-other": "Otras aplicaciones",
|
|
4993
|
+
"storage-free": "Espacio libre",
|
|
4994
|
+
"disk-usage": "Uso del disco",
|
|
4995
|
+
"free": "Libre",
|
|
4996
|
+
"other": "Otro"
|
|
4798
4997
|
},
|
|
4799
4998
|
headers: {
|
|
4800
|
-
"dashboard": "
|
|
4801
|
-
"
|
|
4999
|
+
"dashboard": "Inicio",
|
|
5000
|
+
"pipelines": "Pipelines",
|
|
4802
5001
|
"editor": "Editor",
|
|
4803
|
-
"billing": "
|
|
4804
|
-
"team": "
|
|
5002
|
+
"billing": "@:settings.tabs.billing",
|
|
5003
|
+
"team": "Equipo"
|
|
4805
5004
|
},
|
|
4806
5005
|
base: {
|
|
4807
5006
|
"close": "Cerrar",
|
|
@@ -4812,45 +5011,115 @@ var es_ES_default = {
|
|
|
4812
5011
|
"delete": "Eliminar",
|
|
4813
5012
|
"logs": "Registros",
|
|
4814
5013
|
"ok": "Aceptar",
|
|
4815
|
-
"add": "Añadir"
|
|
5014
|
+
"add": "Añadir",
|
|
5015
|
+
"search": "Buscar...",
|
|
5016
|
+
"success": "Éxito",
|
|
5017
|
+
"error": "Error"
|
|
4816
5018
|
},
|
|
4817
5019
|
editor: {
|
|
4818
|
-
"invalid-file-content": "
|
|
4819
|
-
"welcome-back": "
|
|
4820
|
-
"please-log-in-to-run-a-
|
|
4821
|
-
"execution-done": "
|
|
4822
|
-
"your-project-has-been-executed-successfully": "
|
|
4823
|
-
"execution-failed": "
|
|
4824
|
-
"project-has-encountered-an-error": "
|
|
4825
|
-
"project-saved": "
|
|
4826
|
-
"your-project-has-be-saved-successfully": "
|
|
5020
|
+
"invalid-file-content": "Contenido de archivo no válido",
|
|
5021
|
+
"welcome-back": "¡Bienvenido de nuevo!",
|
|
5022
|
+
"please-log-in-to-run-a-pipeline": "Inicia sesión para ejecutar este pipeline.",
|
|
5023
|
+
"execution-done": "Ejecución completada con éxito",
|
|
5024
|
+
"your-project-has-been-executed-successfully": "Tu pipeline se ha ejecutado correctamente.",
|
|
5025
|
+
"execution-failed": "Ejecución fallida",
|
|
5026
|
+
"project-has-encountered-an-error": "El pipeline ha encontrado un error:",
|
|
5027
|
+
"project-saved": "Pipeline guardado",
|
|
5028
|
+
"your-project-has-be-saved-successfully": "Tu pipeline se ha guardado correctamente.",
|
|
5029
|
+
"view-history": "Historial",
|
|
5030
|
+
"add-plugin": "Añadir complemento",
|
|
5031
|
+
"display-advanced-nodes": "Mostrar bloques avanzados",
|
|
5032
|
+
"project-settings": "Ajustes del pipeline",
|
|
5033
|
+
"jit-loading-title": "Preparando complementos",
|
|
5034
|
+
"jit-loading-subtitle": "Espera mientras Pipelab descarga y configura los complementos necesarios para este pipeline.",
|
|
5035
|
+
"jit-loading-status": "Descargando y configurando paquetes de complementos...",
|
|
5036
|
+
"validation-failed": "Validación fallida",
|
|
5037
|
+
"validation-plugin-disabled-or-missing": "El bloque \"{nodeName}\" requiere el complemento \"{pluginId}\", que no está instalado o activo.",
|
|
5038
|
+
"validation-missing-param": "Configura el campo obligatorio \"{paramName}\" en el bloque \"{nodeName}\"."
|
|
4827
5039
|
},
|
|
4828
5040
|
home: {
|
|
4829
|
-
"invalid-preset": "
|
|
4830
|
-
"store-project-on-the-cloud": "
|
|
4831
|
-
"cloud": "
|
|
4832
|
-
"store-project-locally": "
|
|
5041
|
+
"invalid-preset": "Plantilla no válida",
|
|
5042
|
+
"store-project-on-the-cloud": "Guardar proyecto en la nube",
|
|
5043
|
+
"cloud": "Nube",
|
|
5044
|
+
"store-project-locally": "Guardar proyecto localmente",
|
|
4833
5045
|
"local": "Local",
|
|
4834
|
-
"invalid-number-of-paths-selected": "
|
|
4835
|
-
"pipelab-project": "Pipelab
|
|
4836
|
-
"choose-a-new-path": "
|
|
4837
|
-
"invalid-file-type": "
|
|
4838
|
-
"create-project": "
|
|
4839
|
-
"
|
|
4840
|
-
"project
|
|
4841
|
-
"
|
|
4842
|
-
"
|
|
4843
|
-
"
|
|
4844
|
-
"
|
|
5046
|
+
"invalid-number-of-paths-selected": "Número de rutas seleccionado no válido",
|
|
5047
|
+
"pipelab-project": "Proyecto Pipelab",
|
|
5048
|
+
"choose-a-new-path": "Elige una nueva ruta",
|
|
5049
|
+
"invalid-file-type": "Tipo de archivo no válido",
|
|
5050
|
+
"create-project": "Crear Proyecto",
|
|
5051
|
+
"create-pipeline": "Crear Pipeline",
|
|
5052
|
+
"duplicate-project": "Duplicar Proyecto",
|
|
5053
|
+
"duplicate-pipeline": "Duplicar Pipeline",
|
|
5054
|
+
"project-name": "Nombre del proyecto",
|
|
5055
|
+
"new-project": "Nuevo Proyecto",
|
|
5056
|
+
"new-pipeline": "Nuevo Pipeline",
|
|
5057
|
+
"open": "Abrir",
|
|
5058
|
+
"import": "Importar",
|
|
5059
|
+
"pipeline-name": "Nombre del pipeline",
|
|
5060
|
+
"your-projects": "Tus proyectos",
|
|
5061
|
+
"no-projects-yet": "Aún no hay proyectos",
|
|
5062
|
+
"no-pipelines-yet": "Aún no hay pipelines",
|
|
5063
|
+
"delete-project": "Eliminar Proyecto",
|
|
5064
|
+
"confirm-delete-project": "¿Estás seguro de que quieres eliminar este proyecto? Esta acción no se puede deshacer.",
|
|
5065
|
+
"cannot-delete-project": "No se puede eliminar el proyecto",
|
|
5066
|
+
"project-not-empty": "Este proyecto contiene pipelines. Elíminalos primero.",
|
|
5067
|
+
"transfer": "Transferir",
|
|
5068
|
+
"transfer-successful": "Transferencia completada",
|
|
5069
|
+
"pipeline-transferred": "Pipeline transferido con éxito",
|
|
5070
|
+
"select-project": "Seleccionar Proyecto",
|
|
5071
|
+
"build-history": "Historial de ejecuciones",
|
|
5072
|
+
"duplicate": "Duplicar",
|
|
5073
|
+
"rename-project": "Renombrar Proyecto",
|
|
5074
|
+
"new-project-name": "Nuevo nombre del proyecto",
|
|
5075
|
+
"premium-feature": "Esta es una función premium",
|
|
5076
|
+
"migrate-warning": "Este formato de archivo pronto quedará obsoleto. Mígralo al nuevo almacenamiento local de la aplicación.",
|
|
5077
|
+
"simple-pipeline": "Pipeline básico",
|
|
5078
|
+
"advanced-pipeline": "Pipeline avanzado",
|
|
5079
|
+
"new-simple-project": "Nuevo proyecto simple",
|
|
5080
|
+
"new-advanced-project": "Nuevo proyecto avanzado",
|
|
5081
|
+
"store-project-internally": "Guardar proyecto localmente",
|
|
5082
|
+
"internal": "Interno",
|
|
5083
|
+
"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.",
|
|
5084
|
+
"migrate-pipeline": "Migrar Pipeline",
|
|
5085
|
+
"migration-success": "Pipeline migrado con éxito",
|
|
5086
|
+
"migrate-to-internal": "Mover al espacio de trabajo",
|
|
5087
|
+
"only-internal-supported-notice": "Pipelab ahora gestiona todos los pipelines dentro del espacio de trabajo. Los archivos externos están obsoletos, pero pueden importarse.",
|
|
5088
|
+
"import-pipeline": "Importar Pipeline",
|
|
5089
|
+
"import-success": "Pipeline importado con éxito",
|
|
5090
|
+
"failed-to-read-file": "Error al leer el archivo seleccionado"
|
|
4845
5091
|
},
|
|
4846
|
-
|
|
5092
|
+
pipelines: { "title": "@:headers.pipelines" },
|
|
5093
|
+
tour: {
|
|
5094
|
+
"start-tour": "Iniciar guía",
|
|
5095
|
+
"projects-list-title": "Navegador de proyectos",
|
|
5096
|
+
"projects-list-description": "Esta barra lateral muestra tus proyectos. Al seleccionar uno se mostrarán sus pipelines en el área principal.",
|
|
5097
|
+
"add-project-title": "Crear nuevo proyecto",
|
|
5098
|
+
"add-project-description": "Los proyectos organizan tus pipelines por tema o cliente. Haz clic aquí para crear uno.",
|
|
5099
|
+
"new-pipeline-title": "Crear un pipeline",
|
|
5100
|
+
"new-pipeline-description": "¿Listo para automatizar? Crea un nuevo pipeline para empezar a añadir acciones y lógica.",
|
|
5101
|
+
"project-actions-title": "Gestión de proyectos",
|
|
5102
|
+
"project-actions-description": "Usa estos botones para renombrar o eliminar el proyecto seleccionado.",
|
|
5103
|
+
"editor-canvas-title": "El lienzo visual",
|
|
5104
|
+
"editor-canvas-description": "Este es tu lienzo. Arrastra y suelta bloques de acción aquí para construir tu flujo.",
|
|
5105
|
+
"editor-save-title": "Guardar progreso",
|
|
5106
|
+
"editor-save-description": "Mantén tus cambios seguros. Te recomendamos guardar tu pipeline con frecuencia.",
|
|
5107
|
+
"editor-run-title": "Probar pipeline",
|
|
5108
|
+
"editor-run-description": "Haz clic en Ejecutar para probar tu pipeline. Pipelab ejecutará cada bloque en tiempo real.",
|
|
5109
|
+
"editor-logs-title": "Registros de ejecución",
|
|
5110
|
+
"editor-logs-description": "El panel de registros muestra los pasos en tiempo real, ayudándote a supervisar y depurar.",
|
|
5111
|
+
"editor-close-title": "Cerrar editor",
|
|
5112
|
+
"editor-close-description": "¿Has terminado? Vuelve al panel de inicio para gestionar otros proyectos y pipelines."
|
|
5113
|
+
}
|
|
4847
5114
|
};
|
|
4848
5115
|
//#endregion
|
|
4849
5116
|
//#region ../../packages/shared/src/i18n/de_DE.json
|
|
4850
5117
|
var de_DE_default = {
|
|
4851
5118
|
settings: {
|
|
4852
|
-
"darkTheme": "
|
|
4853
|
-
"
|
|
5119
|
+
"darkTheme": "Dunkles Design",
|
|
5120
|
+
"autosave": "Automatisch speichern",
|
|
5121
|
+
"autosaveDescription": "Änderungen an Ihren Pipelines automatisch in Echtzeit speichern.",
|
|
5122
|
+
"language": "Sprache",
|
|
4854
5123
|
"languageOptions": {
|
|
4855
5124
|
"en-US": "English",
|
|
4856
5125
|
"fr-FR": "French",
|
|
@@ -4860,37 +5129,44 @@ var de_DE_default = {
|
|
|
4860
5129
|
"de-DE": "German"
|
|
4861
5130
|
},
|
|
4862
5131
|
"tabs": {
|
|
4863
|
-
"general": "
|
|
4864
|
-
"storage": "
|
|
4865
|
-
"integrations": "
|
|
4866
|
-
"advanced": "
|
|
4867
|
-
"billing": "
|
|
4868
|
-
"plugins": "
|
|
4869
|
-
"core-plugins": "
|
|
4870
|
-
"community-plugins": "Community-
|
|
5132
|
+
"general": "Allgemein",
|
|
5133
|
+
"storage": "Speicher",
|
|
5134
|
+
"integrations": "Integrationen",
|
|
5135
|
+
"advanced": "Erweitert",
|
|
5136
|
+
"billing": "Abrechnung",
|
|
5137
|
+
"plugins": "Erweiterungen",
|
|
5138
|
+
"core-plugins": "Kern-Erweiterungen",
|
|
5139
|
+
"community-plugins": "Community-Erweiterungen",
|
|
4871
5140
|
"versions": "Versionen"
|
|
4872
5141
|
},
|
|
4873
|
-
"
|
|
4874
|
-
"
|
|
4875
|
-
"
|
|
4876
|
-
"
|
|
4877
|
-
"
|
|
4878
|
-
"
|
|
4879
|
-
"
|
|
4880
|
-
"
|
|
4881
|
-
"
|
|
4882
|
-
"
|
|
4883
|
-
"
|
|
4884
|
-
"cache-
|
|
4885
|
-
"
|
|
4886
|
-
"
|
|
4887
|
-
"
|
|
5142
|
+
"pipeline-cache-folder": "Pipeline-Cache-Ordner:",
|
|
5143
|
+
"enter-or-browse-for-a-folder": "Ordner eingeben oder auswählen",
|
|
5144
|
+
"browse": "Durchsuchen",
|
|
5145
|
+
"manage-where-the-app-stores-temporary-and-cache-files": "Konfigurieren Sie lokale Ordner für temporäre Dateien und Anwendungs-Cache.",
|
|
5146
|
+
"clear-cache": "Cache leeren",
|
|
5147
|
+
"reset-to-default": "Auf Standard zurücksetzen",
|
|
5148
|
+
"manage-subscription": "Abonnement verwalten",
|
|
5149
|
+
"renewal-date": "Verlängerungsdatum",
|
|
5150
|
+
"start-date": "Startdatum:",
|
|
5151
|
+
"cache-cleared-successfully": "Cache erfolgreich geleert",
|
|
5152
|
+
"failed-to-clear-cache-error-message": "Cache konnte nicht geleert werden: {0}",
|
|
5153
|
+
"failed-to-reset-cache-folder-error-message": "Cache-Ordner konnte nicht zurückgesetzt werden: {0}",
|
|
5154
|
+
"select-cache-folder": "Cache-Ordner auswählen",
|
|
5155
|
+
"restart-dashboard-tour": "Dashboard-Anleitung zurücksetzen",
|
|
5156
|
+
"restart-editor-tour": "Editor-Anleitung zurücksetzen",
|
|
5157
|
+
"tour-reset-success": "Anleitungen wurden zurückgesetzt. Sie werden bei Ihrem nächsten Besuch wieder angezeigt.",
|
|
5158
|
+
"storage-pipelab": "Pipelab",
|
|
5159
|
+
"storage-other": "Andere Apps",
|
|
5160
|
+
"storage-free": "Freier Speicher",
|
|
5161
|
+
"disk-usage": "Festplattennutzung",
|
|
5162
|
+
"free": "Frei",
|
|
5163
|
+
"other": "Sonstige"
|
|
4888
5164
|
},
|
|
4889
5165
|
headers: {
|
|
4890
5166
|
"dashboard": "Dashboard",
|
|
4891
|
-
"
|
|
5167
|
+
"pipelines": "Pipelines",
|
|
4892
5168
|
"editor": "Editor",
|
|
4893
|
-
"billing": "
|
|
5169
|
+
"billing": "@:settings.tabs.billing",
|
|
4894
5170
|
"team": "Team"
|
|
4895
5171
|
},
|
|
4896
5172
|
base: {
|
|
@@ -4902,38 +5178,106 @@ var de_DE_default = {
|
|
|
4902
5178
|
"delete": "Löschen",
|
|
4903
5179
|
"logs": "Protokolle",
|
|
4904
5180
|
"ok": "OK",
|
|
4905
|
-
"add": "Hinzufügen"
|
|
5181
|
+
"add": "Hinzufügen",
|
|
5182
|
+
"search": "Suchen...",
|
|
5183
|
+
"success": "Erfolg",
|
|
5184
|
+
"error": "Fehler"
|
|
4906
5185
|
},
|
|
4907
5186
|
editor: {
|
|
4908
|
-
"invalid-file-content": "
|
|
4909
|
-
"welcome-back": "
|
|
4910
|
-
"please-log-in-to-run-a-
|
|
4911
|
-
"execution-done": "
|
|
4912
|
-
"your-project-has-been-executed-successfully": "
|
|
4913
|
-
"execution-failed": "
|
|
4914
|
-
"project-has-encountered-an-error": "
|
|
4915
|
-
"project-saved": "
|
|
4916
|
-
"your-project-has-be-saved-successfully": "
|
|
5187
|
+
"invalid-file-content": "Ungültiger Dateiinhalt",
|
|
5188
|
+
"welcome-back": "Willkommen zurück!",
|
|
5189
|
+
"please-log-in-to-run-a-pipeline": "Bitte melden Sie sich an, um diese Pipeline auszuführen.",
|
|
5190
|
+
"execution-done": "Ausführung erfolgreich abgeschlossen",
|
|
5191
|
+
"your-project-has-been-executed-successfully": "Ihre Pipeline wurde erfolgreich ausgeführt.",
|
|
5192
|
+
"execution-failed": "Ausführung fehlgeschlagen",
|
|
5193
|
+
"project-has-encountered-an-error": "Die Pipeline hat einen Fehler festgestellt:",
|
|
5194
|
+
"project-saved": "Pipeline gespeichert",
|
|
5195
|
+
"your-project-has-be-saved-successfully": "Ihre Pipeline wurde erfolgreich gespeichert.",
|
|
5196
|
+
"view-history": "Verlauf",
|
|
5197
|
+
"add-plugin": "Erweiterung hinzufügen",
|
|
5198
|
+
"display-advanced-nodes": "Erweiterte Blöcke anzeigen",
|
|
5199
|
+
"project-settings": "Pipeline-Einstellungen",
|
|
5200
|
+
"jit-loading-title": "Erweiterungen werden vorbereitet",
|
|
5201
|
+
"jit-loading-subtitle": "Bitte warten Sie, während Pipelab die für diese Pipeline erforderlichen Erweiterungen herunterlädt und konfigures.",
|
|
5202
|
+
"jit-loading-status": "Herunterladen und Einrichten von Erweiterungspaketen...",
|
|
5203
|
+
"validation-failed": "Validierung fehlgeschlagen",
|
|
5204
|
+
"validation-plugin-disabled-or-missing": "Der Block \"{nodeName}\" erfordert die Erweiterung \"{pluginId}\", die derzeit nicht installiert oder aktiviert ist.",
|
|
5205
|
+
"validation-missing-param": "Bitte konfigurieren Sie das erforderliche Feld \"{paramName}\" im Block \"{nodeName}\"."
|
|
4917
5206
|
},
|
|
4918
5207
|
home: {
|
|
4919
|
-
"invalid-preset": "
|
|
4920
|
-
"store-project-on-the-cloud": "
|
|
5208
|
+
"invalid-preset": "Ungültige Vorlage",
|
|
5209
|
+
"store-project-on-the-cloud": "Projekt in der Cloud speichern",
|
|
4921
5210
|
"cloud": "Cloud",
|
|
4922
|
-
"store-project-locally": "
|
|
4923
|
-
"local": "
|
|
4924
|
-
"invalid-number-of-paths-selected": "
|
|
4925
|
-
"pipelab-project": "Pipelab
|
|
4926
|
-
"choose-a-new-path": "
|
|
4927
|
-
"invalid-file-type": "
|
|
4928
|
-
"create-project": "
|
|
4929
|
-
"
|
|
4930
|
-
"project
|
|
4931
|
-
"
|
|
4932
|
-
"
|
|
4933
|
-
"
|
|
4934
|
-
"
|
|
5211
|
+
"store-project-locally": "Projekt lokal speichern",
|
|
5212
|
+
"local": "Lokal",
|
|
5213
|
+
"invalid-number-of-paths-selected": "Ungültige Anzahl ausgewählter Pfade",
|
|
5214
|
+
"pipelab-project": "Pipelab-Projekt",
|
|
5215
|
+
"choose-a-new-path": "Wählen Sie einen neuen Pfad",
|
|
5216
|
+
"invalid-file-type": "Ungültiger Dateityp",
|
|
5217
|
+
"create-project": "Projekt erstellen",
|
|
5218
|
+
"create-pipeline": "Pipeline erstellen",
|
|
5219
|
+
"duplicate-project": "Projekt duplizieren",
|
|
5220
|
+
"duplicate-pipeline": "Pipeline duplizieren",
|
|
5221
|
+
"project-name": "Projektname",
|
|
5222
|
+
"new-project": "Neues Projekt",
|
|
5223
|
+
"new-pipeline": "Neue Pipeline",
|
|
5224
|
+
"open": "Öffnen",
|
|
5225
|
+
"import": "Importieren",
|
|
5226
|
+
"pipeline-name": "Pipelinename",
|
|
5227
|
+
"your-projects": "Ihre Projekte",
|
|
5228
|
+
"no-projects-yet": "Noch keine Projekte",
|
|
5229
|
+
"no-pipelines-yet": "Noch keine Pipelines",
|
|
5230
|
+
"delete-project": "Projekt löschen",
|
|
5231
|
+
"confirm-delete-project": "Sind Sie sicher, dass Sie dieses Projekt löschen möchten? Dies kann nicht rückgängig gemacht werden.",
|
|
5232
|
+
"cannot-delete-project": "Projekt kann nicht gelöscht werden",
|
|
5233
|
+
"project-not-empty": "Dieses Projekt enthält Pipelines. Bitte löschen Sie diese zuerst.",
|
|
5234
|
+
"transfer": "Übertragen",
|
|
5235
|
+
"transfer-successful": "Übertragung erfolgreich",
|
|
5236
|
+
"pipeline-transferred": "Pipeline erfolgreich übertragen",
|
|
5237
|
+
"select-project": "Projekt auswählen",
|
|
5238
|
+
"build-history": "Ausführungsverlauf",
|
|
5239
|
+
"duplicate": "Duplizieren",
|
|
5240
|
+
"rename-project": "Projekt umbenennen",
|
|
5241
|
+
"new-project-name": "Neuer Projektname",
|
|
5242
|
+
"premium-feature": "Dies ist eine Premium-Funktion",
|
|
5243
|
+
"migrate-warning": "Dieses Dateiformat wird bald nicht mehr unterstützt. Bitte migrieren Sie es in den neuen lokalen Arbeitsbereich.",
|
|
5244
|
+
"simple-pipeline": "Einfache Pipeline",
|
|
5245
|
+
"advanced-pipeline": "Erweiterte Pipeline",
|
|
5246
|
+
"new-simple-project": "Neues einfaches Projekt",
|
|
5247
|
+
"new-advanced-project": "Neues erweitertes Projekt",
|
|
5248
|
+
"store-project-internally": "Projekt lokal speichern",
|
|
5249
|
+
"internal": "Intern",
|
|
5250
|
+
"confirm-migration-message": "Sind Sie sicher, dass Sie diese Pipeline in den lokalen Arbeitsbereich verschieben möchten? Pipelab wird diese Pipeline intern verwalten.",
|
|
5251
|
+
"migrate-pipeline": "Pipeline migrieren",
|
|
5252
|
+
"migration-success": "Pipeline erfolgreich migriert",
|
|
5253
|
+
"migrate-to-internal": "In Arbeitsbereich verschieben",
|
|
5254
|
+
"only-internal-supported-notice": "Pipelab verwaltet jetzt alle Pipelines im Arbeitsbereich der Anwendung. Externe Dateien sind veraltet, können aber weiterhin importiert werden.",
|
|
5255
|
+
"import-pipeline": "Pipeline importieren",
|
|
5256
|
+
"import-success": "Pipeline erfolgreich importiert",
|
|
5257
|
+
"failed-to-read-file": "Ausgewählte Datei konnte nicht gelesen werden"
|
|
4935
5258
|
},
|
|
4936
|
-
|
|
5259
|
+
pipelines: { "title": "@:headers.pipelines" },
|
|
5260
|
+
tour: {
|
|
5261
|
+
"start-tour": "Anleitung starten",
|
|
5262
|
+
"projects-list-title": "Projekt-Navigator",
|
|
5263
|
+
"projects-list-description": "Diese Seitenleiste zeigt Ihre Projekte. Durch Auswahl eines Projekts werden dessen Pipelines im Hauptbereich angezeigt.",
|
|
5264
|
+
"add-project-title": "Neues Projekt erstellen",
|
|
5265
|
+
"add-project-description": "Projekte organisieren Ihre Pipelines nach Thema oder Kunde. Klicken Sie hier, um ein neues Projekt zu starten.",
|
|
5266
|
+
"new-pipeline-title": "Pipeline erstellen",
|
|
5267
|
+
"new-pipeline-description": "Bereit zur Automatisierung? Erstellen Sie eine neue Pipeline, um Aktionen und Logik hinzuzufügen.",
|
|
5268
|
+
"project-actions-title": "Projektverwaltung",
|
|
5269
|
+
"project-actions-description": "Verwenden Sie diese Schaltflächen, um das derzeit ausgewählte Projekt umzubenennen oder zu löschen.",
|
|
5270
|
+
"editor-canvas-title": "Der visuelle Editor",
|
|
5271
|
+
"editor-canvas-description": "Dies ist Ihr Arbeitsbereich. Ziehen Sie Aktionsblöcke hierher, um Ihren Automatisierungsfluss zu erstellen.",
|
|
5272
|
+
"editor-save-title": "Fortschritt speichern",
|
|
5273
|
+
"editor-save-description": "Schützen Sie Ihre Änderungen. Wir empfehlen, Ihre Pipeline häufig zu speichern.",
|
|
5274
|
+
"editor-run-title": "Pipeline testen",
|
|
5275
|
+
"editor-run-description": "Klicken Sie auf Ausführen, um Ihre Pipeline zu testen. Pipelab führt jeden Block in Echtzeit aus.",
|
|
5276
|
+
"editor-logs-title": "Ausführungsprotokolle",
|
|
5277
|
+
"editor-logs-description": "Das Protokollfenster zeigt die Ausführungsschritte in Echtzeit, um Sie bei der Überwachung und Fehlersuche zu unterstützen.",
|
|
5278
|
+
"editor-close-title": "Editor schließen",
|
|
5279
|
+
"editor-close-description": "Fertig für heute? Kehren Sie zum Dashboard zurück, um andere Projekte und Pipelines zu verwalten."
|
|
5280
|
+
}
|
|
4937
5281
|
};
|
|
4938
5282
|
//#endregion
|
|
4939
5283
|
//#region ../../packages/shared/src/model.ts
|
|
@@ -64537,20 +64881,6 @@ const isWebSocketResponseMessage = (message) => {
|
|
|
64537
64881
|
const isWebSocketErrorMessage = (message) => {
|
|
64538
64882
|
return message && message.type === "error" && message.requestId && message.error;
|
|
64539
64883
|
};
|
|
64540
|
-
object({
|
|
64541
|
-
version: literal("1.0.0"),
|
|
64542
|
-
data: optional(record(string(), SaveLocationValidator), {})
|
|
64543
|
-
});
|
|
64544
|
-
const FileRepoProjectValidatorV2$1 = object({
|
|
64545
|
-
id: string(),
|
|
64546
|
-
name: string(),
|
|
64547
|
-
description: string()
|
|
64548
|
-
});
|
|
64549
|
-
object({
|
|
64550
|
-
version: literal("2.0.0"),
|
|
64551
|
-
projects: array(FileRepoProjectValidatorV2$1),
|
|
64552
|
-
pipelines: optional(array(SaveLocationValidator), [])
|
|
64553
|
-
});
|
|
64554
64884
|
//#endregion
|
|
64555
64885
|
//#region ../../packages/shared/src/index.ts
|
|
64556
64886
|
const appSettingsMigrator = appSettingsMigrator$1;
|
|
@@ -64700,6 +65030,6 @@ const detectRuntime = async (appFolder) => {
|
|
|
64700
65030
|
return detectedRuntime;
|
|
64701
65031
|
};
|
|
64702
65032
|
//#endregion
|
|
64703
|
-
export { AppSettingsValidator, AppSettingsValidatorV1, AppSettingsValidatorV2, AppSettingsValidatorV3, AppSettingsValidatorV4, AppSettingsValidatorV5, AppSettingsValidatorV6, AppSettingsValidatorV7,
|
|
65033
|
+
export { AppSettingsValidator, AppSettingsValidatorV1, AppSettingsValidatorV2, AppSettingsValidatorV3, AppSettingsValidatorV4, AppSettingsValidatorV5, AppSettingsValidatorV6, AppSettingsValidatorV7, BenefitNotFoundError, ConnectionValidator, ConnectionsValidator, ConnectionsValidatorV1, EditorParamValidatorV3, ExternalCommandError, FileRepoProjectValidatorV2, FileRepoValidator, FileRepoValidatorV1, FileRepoValidatorV2, FileRepoValidatorV3, OriginValidator, PipelabContext, src_default as 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, createActionRunner, createArray, createBooleanParam, createColorPicker, createDefinition, createEvent, createEventRunner, createExpression, createExpressionRunner, createNetlifySiteParam, createNodeDefinition, createNumberParam, createPasswordParam, createPathParam, createPlugin, createQuickJs, createQuickJsFromVariant, createRawParam, createStringParam, createSubscriptionError, createVersionSchema, de_DE_default as de_DE, defaultAppSettings, defaultConnections, defaultFileRepo, detectRuntime, downloadFile, en_US_default as en_US, ensure, es_ES_default as es_ES, extractTarGz, extractZip, fetchPackage, fetchPipelabAsset, fetchPipelabCli, fetchPipelabPlugin, fileExists, 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, runPnpm, runWithLiveLogs, savedFileMigrator, schema, sleep, supabase, transformUrl, useLogger, usePlugins, variableToFormattedVariable, zh_CN_default as zh_CN, zipFolder };
|
|
64704
65034
|
|
|
64705
65035
|
//# sourceMappingURL=index.mjs.map
|