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