@pipelab/shared 1.0.0-beta.13 → 1.0.0-beta.15
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/CHANGELOG.md +18 -0
- package/dist/index.d.mts +1074 -641
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +767 -407
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
- package/src/apis.ts +80 -18
- package/src/build-history.ts +1 -23
- package/src/config/migrators.ts +19 -27
- package/src/config/projects-definition.ts +8 -1
- package/src/config/projects-types.ts +1 -25
- package/src/config/settings-definition.ts +0 -2
- package/src/config.schema.ts +4 -49
- package/src/i18n/de_DE.json +136 -54
- package/src/i18n/en_US.json +56 -57
- package/src/i18n/es_ES.json +135 -53
- package/src/i18n/fr_FR.json +125 -46
- package/src/i18n/pt_BR.json +134 -52
- package/src/i18n/zh_CN.json +138 -56
- package/src/index.ts +2 -2
- package/src/model.test.ts +12 -19
package/dist/index.mjs
CHANGED
|
@@ -106,7 +106,7 @@ const settingsMigratorInternal = createMigrator();
|
|
|
106
106
|
const defaultAppSettings$1 = settingsMigratorInternal.createDefault({
|
|
107
107
|
locale: "en-US",
|
|
108
108
|
theme: "light",
|
|
109
|
-
version: "
|
|
109
|
+
version: "7.0.0",
|
|
110
110
|
autosave: true,
|
|
111
111
|
agents: [],
|
|
112
112
|
tours: {
|
|
@@ -119,13 +119,7 @@ const defaultAppSettings$1 = settingsMigratorInternal.createDefault({
|
|
|
119
119
|
completed: false
|
|
120
120
|
}
|
|
121
121
|
},
|
|
122
|
-
|
|
123
|
-
enabled: false,
|
|
124
|
-
maxEntries: 50,
|
|
125
|
-
maxAge: 30
|
|
126
|
-
} },
|
|
127
|
-
plugins: DEFAULT_PLUGINS,
|
|
128
|
-
isInternalMigrationBannerClosed: false
|
|
122
|
+
plugins: DEFAULT_PLUGINS
|
|
129
123
|
});
|
|
130
124
|
const appSettingsMigrator$1 = settingsMigratorInternal.createMigrations({
|
|
131
125
|
defaultValue: defaultAppSettings$1,
|
|
@@ -176,22 +170,17 @@ const appSettingsMigrator$1 = settingsMigratorInternal.createMigrations({
|
|
|
176
170
|
createMigration$1({
|
|
177
171
|
version: "6.0.0",
|
|
178
172
|
up: (state) => {
|
|
179
|
-
const { cacheFolder
|
|
173
|
+
const { cacheFolder, clearTemporaryFoldersOnPipelineEnd: __, ...rest } = state;
|
|
180
174
|
return {
|
|
181
175
|
...rest,
|
|
176
|
+
cacheFolder,
|
|
182
177
|
agents: [],
|
|
183
|
-
|
|
184
|
-
enabled: false,
|
|
185
|
-
maxEntries: 50,
|
|
186
|
-
maxAge: 30
|
|
187
|
-
} },
|
|
188
|
-
plugins: DEFAULT_PLUGINS,
|
|
189
|
-
isInternalMigrationBannerClosed: false
|
|
178
|
+
plugins: DEFAULT_PLUGINS
|
|
190
179
|
};
|
|
191
180
|
}
|
|
192
181
|
}),
|
|
193
182
|
createMigration$1({
|
|
194
|
-
version: "
|
|
183
|
+
version: "7.0.0",
|
|
195
184
|
up: finalVersion
|
|
196
185
|
})
|
|
197
186
|
]
|
|
@@ -210,7 +199,7 @@ const connectionsMigrator$1 = connectionsMigratorInternal.createMigrations({
|
|
|
210
199
|
});
|
|
211
200
|
const fileRepoMigratorInternal = createMigrator();
|
|
212
201
|
const defaultFileRepo$1 = fileRepoMigratorInternal.createDefault({
|
|
213
|
-
version: "
|
|
202
|
+
version: "3.0.0",
|
|
214
203
|
projects: [{
|
|
215
204
|
id: "main",
|
|
216
205
|
name: "Default project",
|
|
@@ -220,30 +209,39 @@ const defaultFileRepo$1 = fileRepoMigratorInternal.createDefault({
|
|
|
220
209
|
});
|
|
221
210
|
const fileRepoMigrations$1 = fileRepoMigratorInternal.createMigrations({
|
|
222
211
|
defaultValue: defaultFileRepo$1,
|
|
223
|
-
migrations: [
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
212
|
+
migrations: [
|
|
213
|
+
createMigration$1({
|
|
214
|
+
version: "1.0.0",
|
|
215
|
+
up: (state) => {
|
|
216
|
+
const pipelines = Object.entries(state.data || {}).map(([id, file]) => {
|
|
217
|
+
return {
|
|
218
|
+
...file,
|
|
219
|
+
id,
|
|
220
|
+
project: "main"
|
|
221
|
+
};
|
|
222
|
+
});
|
|
227
223
|
return {
|
|
228
|
-
...
|
|
229
|
-
|
|
230
|
-
|
|
224
|
+
...state,
|
|
225
|
+
projects: [{
|
|
226
|
+
id: "main",
|
|
227
|
+
name: "Default project",
|
|
228
|
+
description: "The initial default project"
|
|
229
|
+
}],
|
|
230
|
+
pipelines
|
|
231
231
|
};
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
up: finalVersion
|
|
246
|
-
})]
|
|
232
|
+
}
|
|
233
|
+
}),
|
|
234
|
+
createMigration$1({
|
|
235
|
+
version: "2.0.0",
|
|
236
|
+
up: (state) => {
|
|
237
|
+
return { ...state };
|
|
238
|
+
}
|
|
239
|
+
}),
|
|
240
|
+
createMigration$1({
|
|
241
|
+
version: "3.0.0",
|
|
242
|
+
up: finalVersion
|
|
243
|
+
})
|
|
244
|
+
]
|
|
247
245
|
});
|
|
248
246
|
const savedFileMigratorInternal = createMigrator();
|
|
249
247
|
const savedFileDefaultValue = savedFileMigratorInternal.createDefault({
|
|
@@ -386,7 +384,7 @@ const normalizeBlockPluginId = (block) => {
|
|
|
386
384
|
const normalizePipelineConfig$1 = (state) => {
|
|
387
385
|
if (!state) return false;
|
|
388
386
|
let changed = false;
|
|
389
|
-
if (state.
|
|
387
|
+
if (state.canvas) {
|
|
390
388
|
if (Array.isArray(state.canvas.blocks)) {
|
|
391
389
|
for (const block of state.canvas.blocks) if (normalizeBlockPluginId(block)) changed = true;
|
|
392
390
|
}
|
|
@@ -450,7 +448,12 @@ const FileRepoValidatorV2 = object({
|
|
|
450
448
|
projects: array(FileRepoProjectValidatorV2),
|
|
451
449
|
pipelines: optional(array(SaveLocationValidator), [])
|
|
452
450
|
});
|
|
453
|
-
const
|
|
451
|
+
const FileRepoValidatorV3 = object({
|
|
452
|
+
version: literal("3.0.0"),
|
|
453
|
+
projects: array(FileRepoProjectValidatorV2),
|
|
454
|
+
pipelines: optional(array(SaveLocationValidator), [])
|
|
455
|
+
});
|
|
456
|
+
const FileRepoValidator = FileRepoValidatorV3;
|
|
454
457
|
//#endregion
|
|
455
458
|
//#region src/apis.ts
|
|
456
459
|
const ShellChannels = ["dialog:showOpenDialog", "dialog:showSaveDialog"];
|
|
@@ -563,50 +566,13 @@ const AppSettingsValidatorV7 = object({
|
|
|
563
566
|
name: string(),
|
|
564
567
|
url: string()
|
|
565
568
|
})),
|
|
566
|
-
buildHistory: object({ retentionPolicy: object({
|
|
567
|
-
enabled: boolean(),
|
|
568
|
-
maxEntries: number(),
|
|
569
|
-
maxAge: number()
|
|
570
|
-
}) })
|
|
571
|
-
});
|
|
572
|
-
const AppSettingsValidatorV8 = object({
|
|
573
|
-
theme: union([literal("light"), literal("dark")]),
|
|
574
|
-
version: literal("8.0.0"),
|
|
575
|
-
locale: union([
|
|
576
|
-
literal("en-US"),
|
|
577
|
-
literal("fr-FR"),
|
|
578
|
-
literal("pt-BR"),
|
|
579
|
-
literal("zh-CN"),
|
|
580
|
-
literal("es-ES"),
|
|
581
|
-
literal("de-DE")
|
|
582
|
-
]),
|
|
583
|
-
tours: object({
|
|
584
|
-
dashboard: object({
|
|
585
|
-
step: number(),
|
|
586
|
-
completed: boolean()
|
|
587
|
-
}),
|
|
588
|
-
editor: object({
|
|
589
|
-
step: number(),
|
|
590
|
-
completed: boolean()
|
|
591
|
-
})
|
|
592
|
-
}),
|
|
593
|
-
autosave: boolean(),
|
|
594
|
-
agents: array(object({
|
|
595
|
-
id: string(),
|
|
596
|
-
name: string(),
|
|
597
|
-
url: string()
|
|
598
|
-
})),
|
|
599
|
-
buildHistory: object({ retentionPolicy: object({
|
|
600
|
-
enabled: boolean(),
|
|
601
|
-
maxEntries: number(),
|
|
602
|
-
maxAge: number()
|
|
603
|
-
}) }),
|
|
604
569
|
plugins: array(object({
|
|
605
570
|
name: string(),
|
|
606
571
|
enabled: boolean(),
|
|
607
572
|
description: string()
|
|
608
573
|
})),
|
|
609
|
-
|
|
574
|
+
cacheFolder: optional(string()),
|
|
575
|
+
tempFolder: optional(string())
|
|
610
576
|
});
|
|
611
577
|
const ConnectionValidator = looseObject({
|
|
612
578
|
id: string(),
|
|
@@ -620,7 +586,7 @@ const ConnectionsValidatorV1 = object({
|
|
|
620
586
|
connections: array(ConnectionValidator)
|
|
621
587
|
});
|
|
622
588
|
const ConnectionsValidator = ConnectionsValidatorV1;
|
|
623
|
-
const AppSettingsValidator =
|
|
589
|
+
const AppSettingsValidator = AppSettingsValidatorV7;
|
|
624
590
|
//#endregion
|
|
625
591
|
//#region src/logger.ts
|
|
626
592
|
const createDefaultLogger = () => new Logger({
|
|
@@ -815,7 +781,7 @@ var en_US_default = {
|
|
|
815
781
|
settings: {
|
|
816
782
|
"darkTheme": "Dark theme",
|
|
817
783
|
"autosave": "Autosave",
|
|
818
|
-
"autosaveDescription": "
|
|
784
|
+
"autosaveDescription": "Automatically save changes to your pipelines in real-time.",
|
|
819
785
|
"language": "Language",
|
|
820
786
|
"languageOptions": {
|
|
821
787
|
"en-US": "English",
|
|
@@ -839,7 +805,7 @@ var en_US_default = {
|
|
|
839
805
|
"pipeline-cache-folder": "Pipeline Cache Folder:",
|
|
840
806
|
"enter-or-browse-for-a-folder": "Enter or browse for a folder",
|
|
841
807
|
"browse": "Browse",
|
|
842
|
-
"manage-where-the-app-stores-temporary-and-cache-files": "
|
|
808
|
+
"manage-where-the-app-stores-temporary-and-cache-files": "Configure local directories for temporary files and application cache.",
|
|
843
809
|
"clear-cache": "Clear cache",
|
|
844
810
|
"reset-to-default": "Reset to default",
|
|
845
811
|
"manage-subscription": "Manage Subscription",
|
|
@@ -849,16 +815,9 @@ var en_US_default = {
|
|
|
849
815
|
"failed-to-clear-cache-error-message": "Failed to clear cache: {0}",
|
|
850
816
|
"failed-to-reset-cache-folder-error-message": "Failed to reset cache folder: {0}",
|
|
851
817
|
"select-cache-folder": "Select Cache Folder",
|
|
852
|
-
"restart-dashboard-tour": "
|
|
853
|
-
"restart-editor-tour": "
|
|
854
|
-
"tour-reset-success": "
|
|
855
|
-
"retentionPolicy": "Retention Policy",
|
|
856
|
-
"retentionPolicyDescription": "Manage how long your build logs and history are kept.",
|
|
857
|
-
"retentionEnabled": "Enable Retention Policy",
|
|
858
|
-
"retentionMaxEntries": "Maximum Entries",
|
|
859
|
-
"retentionMaxEntriesDescription": "Keep up to this number of entries per pipeline.",
|
|
860
|
-
"retentionMaxAge": "Maximum Age (days)",
|
|
861
|
-
"retentionMaxAgeDescription": "Keep entries for up to this many days.",
|
|
818
|
+
"restart-dashboard-tour": "Reset Dashboard Guide",
|
|
819
|
+
"restart-editor-tour": "Reset Editor Guide",
|
|
820
|
+
"tour-reset-success": "Help guides have been reset. They will reappear on your next visit.",
|
|
862
821
|
"storage-pipelab": "Pipelab",
|
|
863
822
|
"storage-other": "Other Apps",
|
|
864
823
|
"storage-free": "Free Space",
|
|
@@ -868,12 +827,11 @@ var en_US_default = {
|
|
|
868
827
|
},
|
|
869
828
|
headers: {
|
|
870
829
|
"dashboard": "Dashboard",
|
|
871
|
-
"
|
|
830
|
+
"pipelines": "Pipelines",
|
|
872
831
|
"editor": "Editor",
|
|
873
|
-
"billing": "
|
|
832
|
+
"billing": "@:settings.tabs.billing",
|
|
874
833
|
"team": "Team"
|
|
875
834
|
},
|
|
876
|
-
navigation: { "build-history": "Build History" },
|
|
877
835
|
base: {
|
|
878
836
|
"close": "Close",
|
|
879
837
|
"save": "Save",
|
|
@@ -884,51 +842,55 @@ var en_US_default = {
|
|
|
884
842
|
"logs": "Logs",
|
|
885
843
|
"ok": "OK",
|
|
886
844
|
"add": "Add",
|
|
887
|
-
"search": "Search..."
|
|
845
|
+
"search": "Search...",
|
|
846
|
+
"success": "Success",
|
|
847
|
+
"error": "Error"
|
|
888
848
|
},
|
|
889
849
|
editor: {
|
|
890
850
|
"invalid-file-content": "Invalid file content",
|
|
891
851
|
"welcome-back": "Welcome back!",
|
|
892
|
-
"please-log-in-to-run-a-
|
|
893
|
-
"execution-done": "
|
|
894
|
-
"your-project-has-been-executed-successfully": "Your
|
|
895
|
-
"execution-failed": "
|
|
896
|
-
"project-has-encountered-an-error": "
|
|
897
|
-
"project-saved": "
|
|
898
|
-
"your-project-has-be-saved-successfully": "Your
|
|
852
|
+
"please-log-in-to-run-a-pipeline": "Please sign in to run this pipeline.",
|
|
853
|
+
"execution-done": "Run completed successfully",
|
|
854
|
+
"your-project-has-been-executed-successfully": "Your pipeline ran and completed successfully.",
|
|
855
|
+
"execution-failed": "Run failed",
|
|
856
|
+
"project-has-encountered-an-error": "The pipeline encountered an error:",
|
|
857
|
+
"project-saved": "Pipeline saved",
|
|
858
|
+
"your-project-has-be-saved-successfully": "Your pipeline has been saved successfully.",
|
|
899
859
|
"view-history": "History",
|
|
900
860
|
"add-plugin": "Add plugin",
|
|
901
861
|
"display-advanced-nodes": "Display advanced nodes",
|
|
902
862
|
"project-settings": "Pipeline Settings",
|
|
903
|
-
"jit-loading-title": "
|
|
904
|
-
"jit-loading-subtitle": "Please wait while Pipelab
|
|
905
|
-
"jit-loading-status": "Downloading and
|
|
863
|
+
"jit-loading-title": "Preparing Plugins",
|
|
864
|
+
"jit-loading-subtitle": "Please wait while Pipelab downloads and configures the required plugins for this pipeline.",
|
|
865
|
+
"jit-loading-status": "Downloading and setting up plugin packages...",
|
|
906
866
|
"validation-failed": "Validation Failed",
|
|
907
|
-
"validation-plugin-disabled-or-missing": "
|
|
908
|
-
"validation-missing-param": "
|
|
867
|
+
"validation-plugin-disabled-or-missing": "The block \"{nodeName}\" requires the \"{pluginId}\" plugin, which is not currently installed or enabled.",
|
|
868
|
+
"validation-missing-param": "Please configure the required field \"{paramName}\" in the \"{nodeName}\" block."
|
|
909
869
|
},
|
|
910
870
|
home: {
|
|
911
871
|
"invalid-preset": "Invalid preset",
|
|
912
|
-
"store-project-on-the-cloud": "
|
|
872
|
+
"store-project-on-the-cloud": "Save project to Cloud",
|
|
913
873
|
"cloud": "Cloud",
|
|
914
|
-
"store-project-locally": "
|
|
874
|
+
"store-project-locally": "Save project locally",
|
|
915
875
|
"local": "Local",
|
|
916
876
|
"invalid-number-of-paths-selected": "Invalid number of paths selected",
|
|
917
877
|
"pipelab-project": "Pipelab Project",
|
|
918
878
|
"choose-a-new-path": "Choose a new path",
|
|
919
879
|
"invalid-file-type": "Invalid file type",
|
|
920
|
-
"create-project": "Create
|
|
921
|
-
"
|
|
880
|
+
"create-project": "Create Project",
|
|
881
|
+
"create-pipeline": "Create Pipeline",
|
|
882
|
+
"duplicate-project": "Duplicate Project",
|
|
883
|
+
"duplicate-pipeline": "Duplicate Pipeline",
|
|
922
884
|
"project-name": "Project Name",
|
|
923
885
|
"new-project": "New Project",
|
|
924
|
-
"new-pipeline": "New
|
|
886
|
+
"new-pipeline": "New Pipeline",
|
|
925
887
|
"open": "Open",
|
|
926
888
|
"import": "Import",
|
|
927
889
|
"pipeline-name": "Pipeline Name",
|
|
928
890
|
"your-projects": "Your projects",
|
|
929
891
|
"no-projects-yet": "No projects yet",
|
|
930
892
|
"no-pipelines-yet": "No pipelines yet",
|
|
931
|
-
"delete-project": "Delete
|
|
893
|
+
"delete-project": "Delete Project",
|
|
932
894
|
"confirm-delete-project": "Are you sure you want to delete this project? This action cannot be undone.",
|
|
933
895
|
"cannot-delete-project": "Cannot delete project",
|
|
934
896
|
"project-not-empty": "This project contains pipelines. Please delete them first.",
|
|
@@ -941,43 +903,48 @@ var en_US_default = {
|
|
|
941
903
|
"rename-project": "Rename Project",
|
|
942
904
|
"new-project-name": "New Project Name",
|
|
943
905
|
"premium-feature": "This is a premium feature",
|
|
944
|
-
"migrate-warning": "This file
|
|
945
|
-
"simple-pipeline": "
|
|
906
|
+
"migrate-warning": "This file format will soon be deprecated. Please migrate it to the new local workspace storage.",
|
|
907
|
+
"simple-pipeline": "Basic pipeline",
|
|
946
908
|
"advanced-pipeline": "Advanced pipeline",
|
|
947
909
|
"new-simple-project": "New simple project",
|
|
948
910
|
"new-advanced-project": "New advanced project",
|
|
949
|
-
"store-project-internally": "
|
|
911
|
+
"store-project-internally": "Save project locally",
|
|
950
912
|
"internal": "Internal",
|
|
951
|
-
"confirm-migration-message": "Are you sure you want to
|
|
913
|
+
"confirm-migration-message": "Are you sure you want to move this pipeline to local workspace storage? Pipelab will manage this pipeline internally.",
|
|
952
914
|
"migrate-pipeline": "Migrate Pipeline",
|
|
953
915
|
"migration-success": "Pipeline migrated successfully",
|
|
954
|
-
"migrate-to-internal": "
|
|
955
|
-
"only-internal-supported-notice": "Pipelab now
|
|
916
|
+
"migrate-to-internal": "Move to Workspace",
|
|
917
|
+
"only-internal-supported-notice": "Pipelab now manages all pipelines within the application workspace. External files are deprecated, but can be imported into your workspace.",
|
|
956
918
|
"import-pipeline": "Import Pipeline",
|
|
919
|
+
"import-from-stable": "Import from Stable...",
|
|
920
|
+
"import-pipeline-file": "Import pipeline file (.pipelab)...",
|
|
957
921
|
"import-success": "Pipeline imported successfully",
|
|
958
|
-
"failed-to-read-file": "Failed to read the selected file"
|
|
922
|
+
"failed-to-read-file": "Failed to read the selected file",
|
|
923
|
+
"export-pipeline": "Export Pipeline...",
|
|
924
|
+
"export-success": "Pipeline exported successfully",
|
|
925
|
+
"export-failed": "Failed to export pipeline"
|
|
959
926
|
},
|
|
960
|
-
|
|
927
|
+
pipelines: { "title": "@:headers.pipelines" },
|
|
961
928
|
tour: {
|
|
962
929
|
"start-tour": "Start Tour",
|
|
963
930
|
"projects-list-title": "Project Navigator",
|
|
964
|
-
"projects-list-description": "This sidebar
|
|
931
|
+
"projects-list-description": "This sidebar lists your projects. Selecting a project will show its pipelines in the main area.",
|
|
965
932
|
"add-project-title": "Create New Project",
|
|
966
|
-
"add-project-description": "Projects
|
|
967
|
-
"new-pipeline-title": "
|
|
968
|
-
"new-pipeline-description": "Ready to automate? Create a new pipeline to start adding
|
|
933
|
+
"add-project-description": "Projects organize your pipelines by topic or client. Click here to start a new project.",
|
|
934
|
+
"new-pipeline-title": "Create a Pipeline",
|
|
935
|
+
"new-pipeline-description": "Ready to automate? Create a new pipeline to start adding actions and logic.",
|
|
969
936
|
"project-actions-title": "Project Management",
|
|
970
937
|
"project-actions-description": "Use these buttons to rename or delete the currently selected project.",
|
|
971
938
|
"editor-canvas-title": "The Visual Canvas",
|
|
972
|
-
"editor-canvas-description": "This is your
|
|
939
|
+
"editor-canvas-description": "This is your canvas. Drag and drop action blocks here to build your automation flow.",
|
|
973
940
|
"editor-save-title": "Save Progress",
|
|
974
|
-
"editor-save-description": "Keep your changes safe. We recommend saving
|
|
975
|
-
"editor-run-title": "Test
|
|
976
|
-
"editor-run-description": "Click Run to
|
|
977
|
-
"editor-logs-title": "
|
|
978
|
-
"editor-logs-description": "The
|
|
979
|
-
"editor-close-title": "
|
|
980
|
-
"editor-close-description": "Done for now? Return to the dashboard to manage other projects
|
|
941
|
+
"editor-save-description": "Keep your changes safe. We recommend saving your pipeline frequently.",
|
|
942
|
+
"editor-run-title": "Test Pipeline",
|
|
943
|
+
"editor-run-description": "Click Run to test your pipeline. Pipelab will execute each block in real-time.",
|
|
944
|
+
"editor-logs-title": "Run Logs",
|
|
945
|
+
"editor-logs-description": "The log panel shows real-time execution steps, helping you monitor and debug.",
|
|
946
|
+
"editor-close-title": "Close Editor",
|
|
947
|
+
"editor-close-description": "Done for now? Return to the dashboard to manage other projects and pipelines."
|
|
981
948
|
}
|
|
982
949
|
};
|
|
983
950
|
//#endregion
|
|
@@ -985,14 +952,16 @@ var en_US_default = {
|
|
|
985
952
|
var fr_FR_default = {
|
|
986
953
|
settings: {
|
|
987
954
|
"darkTheme": "Thème sombre",
|
|
955
|
+
"autosave": "Enregistrement automatique",
|
|
956
|
+
"autosaveDescription": "Enregistrez automatiquement les modifications de vos pipelines en temps réel.",
|
|
988
957
|
"language": "Langue",
|
|
989
958
|
"languageOptions": {
|
|
990
959
|
"en-US": "English",
|
|
991
960
|
"fr-FR": "Français",
|
|
992
|
-
"pt-BR": "
|
|
993
|
-
"zh-CN": "
|
|
994
|
-
"es-ES": "
|
|
995
|
-
"de-DE": "
|
|
961
|
+
"pt-BR": "Português",
|
|
962
|
+
"zh-CN": "Chinois",
|
|
963
|
+
"es-ES": "Espagnol",
|
|
964
|
+
"de-DE": "Allemand"
|
|
996
965
|
},
|
|
997
966
|
"tabs": {
|
|
998
967
|
"general": "Général",
|
|
@@ -1000,32 +969,39 @@ var fr_FR_default = {
|
|
|
1000
969
|
"integrations": "Intégrations",
|
|
1001
970
|
"advanced": "Avancé",
|
|
1002
971
|
"billing": "Facturation",
|
|
1003
|
-
"plugins": "
|
|
1004
|
-
"core-plugins": "
|
|
1005
|
-
"community-plugins": "
|
|
972
|
+
"plugins": "Extensions",
|
|
973
|
+
"core-plugins": "Extensions de base",
|
|
974
|
+
"community-plugins": "Extensions de la communauté",
|
|
1006
975
|
"versions": "Versions"
|
|
1007
976
|
},
|
|
1008
|
-
"
|
|
1009
|
-
"
|
|
1010
|
-
"
|
|
1011
|
-
"
|
|
1012
|
-
"
|
|
1013
|
-
"
|
|
1014
|
-
"
|
|
1015
|
-
"
|
|
1016
|
-
"
|
|
1017
|
-
"
|
|
1018
|
-
"
|
|
1019
|
-
"cache-
|
|
1020
|
-
"
|
|
1021
|
-
"
|
|
1022
|
-
"
|
|
977
|
+
"pipeline-cache-folder": "Dossier cache des pipelines :",
|
|
978
|
+
"enter-or-browse-for-a-folder": "Saisir ou parcourir pour choisir un dossier",
|
|
979
|
+
"browse": "Parcourir",
|
|
980
|
+
"manage-where-the-app-stores-temporary-and-cache-files": "Configurez les dossiers locaux pour les fichiers temporaires et le cache de l'application.",
|
|
981
|
+
"clear-cache": "Vider le cache",
|
|
982
|
+
"reset-to-default": "Réinitialiser par défaut",
|
|
983
|
+
"manage-subscription": "Gérer l'abonnement",
|
|
984
|
+
"renewal-date": "Date de renouvellement",
|
|
985
|
+
"start-date": "Date de début :",
|
|
986
|
+
"cache-cleared-successfully": "Cache vidé avec succès",
|
|
987
|
+
"failed-to-clear-cache-error-message": "Échec du vidage du cache : {0}",
|
|
988
|
+
"failed-to-reset-cache-folder-error-message": "Échec de la réinitialisation du dossier cache : {0}",
|
|
989
|
+
"select-cache-folder": "Sélectionner le dossier cache",
|
|
990
|
+
"restart-dashboard-tour": "Réinitialiser le guide du tableau de bord",
|
|
991
|
+
"restart-editor-tour": "Réinitialiser le guide de l'éditeur",
|
|
992
|
+
"tour-reset-success": "Les guides d'aide ont été réinitialisés. Ils réapparaîtront lors de votre prochaine visite.",
|
|
993
|
+
"storage-pipelab": "Pipelab",
|
|
994
|
+
"storage-other": "Autres applications",
|
|
995
|
+
"storage-free": "Espace libre",
|
|
996
|
+
"disk-usage": "Utilisation du disque",
|
|
997
|
+
"free": "Libre",
|
|
998
|
+
"other": "Autre"
|
|
1023
999
|
},
|
|
1024
1000
|
headers: {
|
|
1025
1001
|
"dashboard": "Tableau de bord",
|
|
1026
|
-
"
|
|
1002
|
+
"pipelines": "Pipelines",
|
|
1027
1003
|
"editor": "Éditeur",
|
|
1028
|
-
"billing": "
|
|
1004
|
+
"billing": "@:settings.tabs.billing",
|
|
1029
1005
|
"team": "Équipe"
|
|
1030
1006
|
},
|
|
1031
1007
|
base: {
|
|
@@ -1035,49 +1011,121 @@ var fr_FR_default = {
|
|
|
1035
1011
|
"cancel": "Annuler",
|
|
1036
1012
|
"end": "Fin",
|
|
1037
1013
|
"delete": "Supprimer",
|
|
1038
|
-
"logs": "
|
|
1014
|
+
"logs": "Journaux",
|
|
1039
1015
|
"ok": "OK",
|
|
1040
1016
|
"add": "Ajouter",
|
|
1041
|
-
"search": "Rechercher..."
|
|
1017
|
+
"search": "Rechercher...",
|
|
1018
|
+
"success": "Succès",
|
|
1019
|
+
"error": "Erreur"
|
|
1042
1020
|
},
|
|
1043
1021
|
editor: {
|
|
1044
1022
|
"invalid-file-content": "Contenu du fichier invalide",
|
|
1045
|
-
"welcome-back": "Bon retour
|
|
1046
|
-
"please-log-in-to-run-a-
|
|
1047
|
-
"execution-done": "Exécution terminée",
|
|
1048
|
-
"your-project-has-been-executed-successfully": "Votre
|
|
1023
|
+
"welcome-back": "Bon retour !",
|
|
1024
|
+
"please-log-in-to-run-a-pipeline": "Veuillez vous connecter pour exécuter ce pipeline.",
|
|
1025
|
+
"execution-done": "Exécution terminée avec succès",
|
|
1026
|
+
"your-project-has-been-executed-successfully": "Votre pipeline s'est exécuté et s'est terminé avec succès.",
|
|
1049
1027
|
"execution-failed": "Échec de l'exécution",
|
|
1050
|
-
"project-has-encountered-an-error": "Le
|
|
1051
|
-
"project-saved": "
|
|
1052
|
-
"your-project-has-be-saved-successfully": "Votre
|
|
1053
|
-
"
|
|
1054
|
-
"
|
|
1028
|
+
"project-has-encountered-an-error": "Le pipeline a rencontré une erreur :",
|
|
1029
|
+
"project-saved": "Pipeline enregistré",
|
|
1030
|
+
"your-project-has-be-saved-successfully": "Votre pipeline a été enregistré avec succès.",
|
|
1031
|
+
"view-history": "Historique",
|
|
1032
|
+
"add-plugin": "Ajouter une extension",
|
|
1033
|
+
"display-advanced-nodes": "Afficher les nœuds avancés",
|
|
1034
|
+
"project-settings": "Paramètres du pipeline",
|
|
1035
|
+
"jit-loading-title": "Préparation des extensions",
|
|
1036
|
+
"jit-loading-subtitle": "Veuillez patienter pendant que Pipelab télécharge et configure les extensions requises pour ce pipeline.",
|
|
1037
|
+
"jit-loading-status": "Téléchargement et configuration des paquets d'extension...",
|
|
1038
|
+
"validation-failed": "Échec de la validation",
|
|
1039
|
+
"validation-plugin-disabled-or-missing": "Le bloc \"{nodeName}\" requiert l'extension \"{pluginId}\", qui n'est pas installée ou activée actuellement.",
|
|
1040
|
+
"validation-missing-param": "Veuillez configurer le champ requis \"{paramName}\" dans le bloc \"{nodeName}\"."
|
|
1055
1041
|
},
|
|
1056
1042
|
home: {
|
|
1057
|
-
"invalid-preset": "
|
|
1058
|
-
"store-project-on-the-cloud": "Enregistrer le projet
|
|
1059
|
-
"cloud": "
|
|
1043
|
+
"invalid-preset": "Modèle invalide",
|
|
1044
|
+
"store-project-on-the-cloud": "Enregistrer le projet dans le Cloud",
|
|
1045
|
+
"cloud": "Cloud",
|
|
1060
1046
|
"store-project-locally": "Enregistrer le projet localement",
|
|
1061
1047
|
"local": "Local",
|
|
1062
|
-
"invalid-number-of-paths-selected": "Nombre
|
|
1048
|
+
"invalid-number-of-paths-selected": "Nombre de chemins sélectionné invalide",
|
|
1063
1049
|
"pipelab-project": "Projet Pipelab",
|
|
1064
|
-
"choose-a-new-path": "
|
|
1050
|
+
"choose-a-new-path": "Choisir un nouveau chemin",
|
|
1065
1051
|
"invalid-file-type": "Type de fichier invalide",
|
|
1066
|
-
"create-project": "Créer
|
|
1067
|
-
"
|
|
1052
|
+
"create-project": "Créer le Projet",
|
|
1053
|
+
"create-pipeline": "Créer le Pipeline",
|
|
1054
|
+
"duplicate-project": "Dupliquer le Projet",
|
|
1055
|
+
"duplicate-pipeline": "Dupliquer le Pipeline",
|
|
1068
1056
|
"project-name": "Nom du projet",
|
|
1069
|
-
"new-project": "Nouveau
|
|
1057
|
+
"new-project": "Nouveau Projet",
|
|
1058
|
+
"new-pipeline": "Nouveau Pipeline",
|
|
1070
1059
|
"open": "Ouvrir",
|
|
1060
|
+
"import": "Importer",
|
|
1061
|
+
"pipeline-name": "Nom du pipeline",
|
|
1071
1062
|
"your-projects": "Vos projets",
|
|
1072
|
-
"no-projects-yet": "Aucun projet
|
|
1063
|
+
"no-projects-yet": "Aucun projet pour le moment",
|
|
1064
|
+
"no-pipelines-yet": "Aucun pipeline pour le moment",
|
|
1065
|
+
"delete-project": "Supprimer le Projet",
|
|
1066
|
+
"confirm-delete-project": "Êtes-vous sûr de vouloir supprimer ce projet ? Cette action est irréversible.",
|
|
1067
|
+
"cannot-delete-project": "Impossible de supprimer le projet",
|
|
1068
|
+
"project-not-empty": "Ce projet contient des pipelines. Veuillez d'abord les supprimer.",
|
|
1069
|
+
"transfer": "Transférer",
|
|
1070
|
+
"transfer-successful": "Transfert réussi",
|
|
1071
|
+
"pipeline-transferred": "Pipeline transféré avec succès",
|
|
1072
|
+
"select-project": "Sélectionner le Projet",
|
|
1073
|
+
"build-history": "Historique des exécutions",
|
|
1074
|
+
"duplicate": "Dupliquer",
|
|
1075
|
+
"rename-project": "Renommer le Projet",
|
|
1076
|
+
"new-project-name": "Nouveau nom du projet",
|
|
1077
|
+
"premium-feature": "Ceci est une fonctionnalité premium",
|
|
1078
|
+
"migrate-warning": "Ce format de fichier sera bientôt obsolète. Veuillez le migrer vers le nouveau stockage local.",
|
|
1079
|
+
"simple-pipeline": "Pipeline basique",
|
|
1080
|
+
"advanced-pipeline": "Pipeline avancé",
|
|
1081
|
+
"new-simple-project": "Nouveau projet simple",
|
|
1082
|
+
"new-advanced-project": "Nouveau projet avancé",
|
|
1083
|
+
"store-project-internally": "Enregistrer le projet localement",
|
|
1084
|
+
"internal": "Interne",
|
|
1085
|
+
"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.",
|
|
1086
|
+
"migrate-pipeline": "Migrer le Pipeline",
|
|
1087
|
+
"migration-success": "Pipeline migré avec succès",
|
|
1088
|
+
"migrate-to-internal": "Déplacer vers l'espace de travail",
|
|
1089
|
+
"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.",
|
|
1090
|
+
"import-pipeline": "Importer le Pipeline",
|
|
1091
|
+
"import-from-stable": "Importer depuis Stable...",
|
|
1092
|
+
"import-pipeline-file": "Importer un fichier de pipeline (.pipelab)...",
|
|
1093
|
+
"import-success": "Pipeline importé avec succès",
|
|
1094
|
+
"failed-to-read-file": "Échec de la lecture du fichier sélectionné",
|
|
1095
|
+
"export-pipeline": "Exporter le pipeline...",
|
|
1096
|
+
"export-success": "Pipeline exporté avec succès",
|
|
1097
|
+
"export-failed": "Échec de l'exportation du pipeline"
|
|
1073
1098
|
},
|
|
1074
|
-
|
|
1099
|
+
pipelines: { "title": "@:headers.pipelines" },
|
|
1100
|
+
tour: {
|
|
1101
|
+
"start-tour": "Démarrer le guide",
|
|
1102
|
+
"projects-list-title": "Navigateur de projets",
|
|
1103
|
+
"projects-list-description": "Cette barre latérale liste vos projets. En sélectionnant un projet, ses pipelines s'afficheront dans la zone principale.",
|
|
1104
|
+
"add-project-title": "Créer un nouveau projet",
|
|
1105
|
+
"add-project-description": "Les projets organisent vos pipelines par sujet ou client. Cliquez ici pour commencer un nouveau projet.",
|
|
1106
|
+
"new-pipeline-title": "Créer un pipeline",
|
|
1107
|
+
"new-pipeline-description": "Prêt à automatiser ? Créez un nouveau pipeline pour commencer à ajouter des actions et de la logique.",
|
|
1108
|
+
"project-actions-title": "Gestion du projet",
|
|
1109
|
+
"project-actions-description": "Utilisez ces boutons pour renommer ou supprimer le projet actuellement sélectionné.",
|
|
1110
|
+
"editor-canvas-title": "Le canevas visuel",
|
|
1111
|
+
"editor-canvas-description": "Ceci est votre canevas. Glissez-déposez des blocs d'action ici pour construire votre flux d'automatisation.",
|
|
1112
|
+
"editor-save-title": "Enregistrer la progression",
|
|
1113
|
+
"editor-save-description": "Protégez vos modifications. Nous vous recommandons d'enregistrer fréquemment votre pipeline.",
|
|
1114
|
+
"editor-run-title": "Tester le pipeline",
|
|
1115
|
+
"editor-run-description": "Cliquez sur Exécuter pour tester votre pipeline. Pipelab exécutera chaque bloc en temps réel.",
|
|
1116
|
+
"editor-logs-title": "Journaux d'exécution",
|
|
1117
|
+
"editor-logs-description": "Le panneau des journaux affiche les étapes d'exécution en temps réel, vous aidant à surveiller et déboguer.",
|
|
1118
|
+
"editor-close-title": "Fermer l'éditeur",
|
|
1119
|
+
"editor-close-description": "Terminé pour le moment ? Retournez au tableau de bord pour gérer d'autres projets et pipelines."
|
|
1120
|
+
}
|
|
1075
1121
|
};
|
|
1076
1122
|
//#endregion
|
|
1077
1123
|
//#region src/i18n/pt_BR.json
|
|
1078
1124
|
var pt_BR_default = {
|
|
1079
1125
|
settings: {
|
|
1080
1126
|
"darkTheme": "Tema escuro",
|
|
1127
|
+
"autosave": "Salvar automaticamente",
|
|
1128
|
+
"autosaveDescription": "Salvar alterações em suas pipelines automaticamente em tempo real.",
|
|
1081
1129
|
"language": "Idioma",
|
|
1082
1130
|
"languageOptions": {
|
|
1083
1131
|
"en-US": "English",
|
|
@@ -1089,37 +1137,44 @@ var pt_BR_default = {
|
|
|
1089
1137
|
},
|
|
1090
1138
|
"tabs": {
|
|
1091
1139
|
"general": "Geral",
|
|
1092
|
-
"storage": "
|
|
1140
|
+
"storage": "Armazenamento",
|
|
1093
1141
|
"integrations": "Integrações",
|
|
1094
1142
|
"advanced": "Avançado",
|
|
1095
|
-
"billing": "
|
|
1096
|
-
"plugins": "
|
|
1097
|
-
"core-plugins": "
|
|
1098
|
-
"community-plugins": "
|
|
1143
|
+
"billing": "Faturamento",
|
|
1144
|
+
"plugins": "Extensões",
|
|
1145
|
+
"core-plugins": "Extensões nativas",
|
|
1146
|
+
"community-plugins": "Extensões da comunidade",
|
|
1099
1147
|
"versions": "Versões"
|
|
1100
1148
|
},
|
|
1101
|
-
"
|
|
1102
|
-
"
|
|
1103
|
-
"
|
|
1104
|
-
"
|
|
1105
|
-
"
|
|
1106
|
-
"
|
|
1107
|
-
"
|
|
1108
|
-
"
|
|
1109
|
-
"
|
|
1110
|
-
"
|
|
1111
|
-
"
|
|
1112
|
-
"cache-
|
|
1113
|
-
"
|
|
1114
|
-
"
|
|
1115
|
-
"
|
|
1149
|
+
"pipeline-cache-folder": "Pasta de cache de pipelines:",
|
|
1150
|
+
"enter-or-browse-for-a-folder": "Digite ou procure uma pasta",
|
|
1151
|
+
"browse": "Procurar",
|
|
1152
|
+
"manage-where-the-app-stores-temporary-and-cache-files": "Configurar pastas locais para arquivos temporários e cache do aplicativo.",
|
|
1153
|
+
"clear-cache": "Limpar cache",
|
|
1154
|
+
"reset-to-default": "Redefinir para o padrão",
|
|
1155
|
+
"manage-subscription": "Gerenciar assinatura",
|
|
1156
|
+
"renewal-date": "Data de renovação",
|
|
1157
|
+
"start-date": "Data de início:",
|
|
1158
|
+
"cache-cleared-successfully": "Cache limpo com sucesso",
|
|
1159
|
+
"failed-to-clear-cache-error-message": "Falha ao limpar cache: {0}",
|
|
1160
|
+
"failed-to-reset-cache-folder-error-message": "Falha ao redefinir pasta de cache: {0}",
|
|
1161
|
+
"select-cache-folder": "Selecionar pasta de cache",
|
|
1162
|
+
"restart-dashboard-tour": "Redefinir guia de início",
|
|
1163
|
+
"restart-editor-tour": "Redefinir guia do editor",
|
|
1164
|
+
"tour-reset-success": "Os guias de ajuda foram redefinidos. Eles reaparecerão em sua próxima visita.",
|
|
1165
|
+
"storage-pipelab": "Pipelab",
|
|
1166
|
+
"storage-other": "Outros aplicativos",
|
|
1167
|
+
"storage-free": "Espaço livre",
|
|
1168
|
+
"disk-usage": "Uso do disco",
|
|
1169
|
+
"free": "Livre",
|
|
1170
|
+
"other": "Outro"
|
|
1116
1171
|
},
|
|
1117
1172
|
headers: {
|
|
1118
|
-
"dashboard": "
|
|
1119
|
-
"
|
|
1173
|
+
"dashboard": "Início",
|
|
1174
|
+
"pipelines": "Pipelines",
|
|
1120
1175
|
"editor": "Editor",
|
|
1121
|
-
"billing": "
|
|
1122
|
-
"team": "
|
|
1176
|
+
"billing": "@:settings.tabs.billing",
|
|
1177
|
+
"team": "Equipe"
|
|
1123
1178
|
},
|
|
1124
1179
|
base: {
|
|
1125
1180
|
"close": "Fechar",
|
|
@@ -1128,47 +1183,122 @@ var pt_BR_default = {
|
|
|
1128
1183
|
"cancel": "Cancelar",
|
|
1129
1184
|
"end": "Fim",
|
|
1130
1185
|
"delete": "Excluir",
|
|
1131
|
-
"logs": "
|
|
1186
|
+
"logs": "Registros",
|
|
1132
1187
|
"ok": "OK",
|
|
1133
|
-
"add": "Adicionar"
|
|
1188
|
+
"add": "Adicionar",
|
|
1189
|
+
"search": "Buscar...",
|
|
1190
|
+
"success": "Sucesso",
|
|
1191
|
+
"error": "Erro"
|
|
1134
1192
|
},
|
|
1135
1193
|
editor: {
|
|
1136
|
-
"invalid-file-content": "
|
|
1137
|
-
"welcome-back": "
|
|
1138
|
-
"please-log-in-to-run-a-
|
|
1139
|
-
"execution-done": "
|
|
1140
|
-
"your-project-has-been-executed-successfully": "
|
|
1141
|
-
"execution-failed": "
|
|
1142
|
-
"project-has-encountered-an-error": "
|
|
1143
|
-
"project-saved": "
|
|
1144
|
-
"your-project-has-be-saved-successfully": "
|
|
1194
|
+
"invalid-file-content": "Conteúdo do arquivo inválido",
|
|
1195
|
+
"welcome-back": "Bem-vindo de volta!",
|
|
1196
|
+
"please-log-in-to-run-a-pipeline": "Por favor, faça login para executar esta pipeline.",
|
|
1197
|
+
"execution-done": "Execução concluída com sucesso",
|
|
1198
|
+
"your-project-has-been-executed-successfully": "Sua pipeline foi executada e concluída com sucesso.",
|
|
1199
|
+
"execution-failed": "Falha na execução",
|
|
1200
|
+
"project-has-encountered-an-error": "A pipeline encontrou um erro:",
|
|
1201
|
+
"project-saved": "Pipeline salva",
|
|
1202
|
+
"your-project-has-be-saved-successfully": "Sua pipeline foi salva com sucesso.",
|
|
1203
|
+
"view-history": "Histórico",
|
|
1204
|
+
"add-plugin": "Adicionar extensão",
|
|
1205
|
+
"display-advanced-nodes": "Exibir blocos avançados",
|
|
1206
|
+
"project-settings": "Ajustes da pipeline",
|
|
1207
|
+
"jit-loading-title": "Preparando extensões",
|
|
1208
|
+
"jit-loading-subtitle": "Aguarde enquanto o Pipelab baixa e configura as extensões necessárias para esta pipeline.",
|
|
1209
|
+
"jit-loading-status": "Baixando e configurando pacotes de extensões...",
|
|
1210
|
+
"validation-failed": "Falha na validação",
|
|
1211
|
+
"validation-plugin-disabled-or-missing": "O bloco \"{nodeName}\" requer a extensão \"{pluginId}\", que não está instalada ou ativada.",
|
|
1212
|
+
"validation-missing-param": "Por favor, configure o campo obrigatório \"{paramName}\" no bloco \"{nodeName}\"."
|
|
1145
1213
|
},
|
|
1146
1214
|
home: {
|
|
1147
|
-
"invalid-preset": "
|
|
1148
|
-
"store-project-on-the-cloud": "
|
|
1149
|
-
"cloud": "
|
|
1150
|
-
"store-project-locally": "
|
|
1215
|
+
"invalid-preset": "Modelo inválido",
|
|
1216
|
+
"store-project-on-the-cloud": "Salvar projeto na nuvem",
|
|
1217
|
+
"cloud": "Nuvem",
|
|
1218
|
+
"store-project-locally": "Salvar projeto localmente",
|
|
1151
1219
|
"local": "Local",
|
|
1152
|
-
"invalid-number-of-paths-selected": "
|
|
1153
|
-
"pipelab-project": "Pipelab
|
|
1154
|
-
"choose-a-new-path": "
|
|
1155
|
-
"invalid-file-type": "
|
|
1156
|
-
"create-project": "
|
|
1157
|
-
"
|
|
1158
|
-
"project
|
|
1159
|
-
"
|
|
1160
|
-
"
|
|
1161
|
-
"
|
|
1162
|
-
"
|
|
1220
|
+
"invalid-number-of-paths-selected": "Número de caminhos selecionado inválido",
|
|
1221
|
+
"pipelab-project": "Projeto Pipelab",
|
|
1222
|
+
"choose-a-new-path": "Escolha um novo caminho",
|
|
1223
|
+
"invalid-file-type": "Tipo de arquivo inválido",
|
|
1224
|
+
"create-project": "Criar Projeto",
|
|
1225
|
+
"create-pipeline": "Criar Pipeline",
|
|
1226
|
+
"duplicate-project": "Duplicar Projeto",
|
|
1227
|
+
"duplicate-pipeline": "Duplicar Pipeline",
|
|
1228
|
+
"project-name": "Nome do projeto",
|
|
1229
|
+
"new-project": "Novo Projeto",
|
|
1230
|
+
"new-pipeline": "Nova Pipeline",
|
|
1231
|
+
"open": "Abrir",
|
|
1232
|
+
"import": "Importar",
|
|
1233
|
+
"pipeline-name": "Nome da pipeline",
|
|
1234
|
+
"your-projects": "Seus projetos",
|
|
1235
|
+
"no-projects-yet": "Nenhum projeto ainda",
|
|
1236
|
+
"no-pipelines-yet": "Nenhuma pipeline ainda",
|
|
1237
|
+
"delete-project": "Excluir Projeto",
|
|
1238
|
+
"confirm-delete-project": "Tem certeza de que deseja excluir este projeto? Esta ação não pode ser desfeita.",
|
|
1239
|
+
"cannot-delete-project": "Não é possível excluir o projeto",
|
|
1240
|
+
"project-not-empty": "Este projeto contém pipelines. Por favor, exclua-os primeiro.",
|
|
1241
|
+
"transfer": "Transferir",
|
|
1242
|
+
"transfer-successful": "Transferência bem-sucedida",
|
|
1243
|
+
"pipeline-transferred": "Pipeline transferida com sucesso",
|
|
1244
|
+
"select-project": "Selecionar Projeto",
|
|
1245
|
+
"build-history": "Histórico de execuções",
|
|
1246
|
+
"duplicate": "Duplicar",
|
|
1247
|
+
"rename-project": "Renomear Projeto",
|
|
1248
|
+
"new-project-name": "Novo nome do projeto",
|
|
1249
|
+
"premium-feature": "Este é um recurso premium",
|
|
1250
|
+
"migrate-warning": "Este formato de arquivo em prazo curto será descontinuado. Por favor, migre-o para o novo armazenamento local do aplicativo.",
|
|
1251
|
+
"simple-pipeline": "Pipeline básica",
|
|
1252
|
+
"advanced-pipeline": "Pipeline avançada",
|
|
1253
|
+
"new-simple-project": "Novo projeto simples",
|
|
1254
|
+
"new-advanced-project": "Novo projeto avançado",
|
|
1255
|
+
"store-project-internally": "Salvar projeto localmente",
|
|
1256
|
+
"internal": "Interno",
|
|
1257
|
+
"confirm-migration-message": "Tem certeza de que deseja mover esta pipeline para o armazenamento local do aplicativo? O Pipelab gerenciará esta pipeline internamente.",
|
|
1258
|
+
"migrate-pipeline": "Migrar Pipeline",
|
|
1259
|
+
"migration-success": "Pipeline migrada com sucesso",
|
|
1260
|
+
"migrate-to-internal": "Mover para o espaço de trabalho",
|
|
1261
|
+
"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.",
|
|
1262
|
+
"import-pipeline": "Importar Pipeline",
|
|
1263
|
+
"import-from-stable": "Importar do Stable...",
|
|
1264
|
+
"import-pipeline-file": "Importar arquivo de pipeline (.pipelab)...",
|
|
1265
|
+
"import-success": "Pipeline importada com sucesso",
|
|
1266
|
+
"failed-to-read-file": "Falha ao ler o arquivo selecionado",
|
|
1267
|
+
"export-pipeline": "Exportar pipeline...",
|
|
1268
|
+
"export-success": "Pipeline exportado com sucesso",
|
|
1269
|
+
"export-failed": "Falha ao exportar pipeline"
|
|
1163
1270
|
},
|
|
1164
|
-
|
|
1271
|
+
pipelines: { "title": "@:headers.pipelines" },
|
|
1272
|
+
tour: {
|
|
1273
|
+
"start-tour": "Iniciar guia",
|
|
1274
|
+
"projects-list-title": "Navegador de projetos",
|
|
1275
|
+
"projects-list-description": "Esta barra lateral mostra seus projetos. Ao selecionar um, suas pipelines serão exibidas na área principal.",
|
|
1276
|
+
"add-project-title": "Criar novo projeto",
|
|
1277
|
+
"add-project-description": "Os projetos organizam suas pipelines por tópico ou cliente. Clique aqui para criar um novo projeto.",
|
|
1278
|
+
"new-pipeline-title": "Criar uma pipeline",
|
|
1279
|
+
"new-pipeline-description": "Pronto para automatizar? Crie uma nova pipeline para começar a adicionar ações e lógica.",
|
|
1280
|
+
"project-actions-title": "Gerenciamento de projetos",
|
|
1281
|
+
"project-actions-description": "Use estes botões para renomear ou excluir o projeto selecionado.",
|
|
1282
|
+
"editor-canvas-title": "O painel visual",
|
|
1283
|
+
"editor-canvas-description": "Este é o seu painel. Arraste e solte blocos de ação aqui para construir seu fluxo.",
|
|
1284
|
+
"editor-save-title": "Salvar progresso",
|
|
1285
|
+
"editor-save-description": "Mantenha suas alterações seguras. Recomendamos salvar sua pipeline frequentemente.",
|
|
1286
|
+
"editor-run-title": "Testar pipeline",
|
|
1287
|
+
"editor-run-description": "Clique em Executar para testar sua pipeline. O Pipelab executará cada bloco em tempo real.",
|
|
1288
|
+
"editor-logs-title": "Registros de execução",
|
|
1289
|
+
"editor-logs-description": "O painel de registros exibe as etapas de execução em tempo real, ajudando você a monitorar e depurar.",
|
|
1290
|
+
"editor-close-title": "Fechar editor",
|
|
1291
|
+
"editor-close-description": "Terminou por agora? Volte para o painel principal para gerenciar outros projetos e pipelines."
|
|
1292
|
+
}
|
|
1165
1293
|
};
|
|
1166
1294
|
//#endregion
|
|
1167
1295
|
//#region src/i18n/zh_CN.json
|
|
1168
1296
|
var zh_CN_default = {
|
|
1169
1297
|
settings: {
|
|
1170
|
-
"darkTheme": "
|
|
1171
|
-
"
|
|
1298
|
+
"darkTheme": "深色主题",
|
|
1299
|
+
"autosave": "自动保存",
|
|
1300
|
+
"autosaveDescription": "自动保存流水线修改,省心省力。",
|
|
1301
|
+
"language": "语言",
|
|
1172
1302
|
"languageOptions": {
|
|
1173
1303
|
"en-US": "English",
|
|
1174
1304
|
"fr-FR": "French",
|
|
@@ -1178,38 +1308,45 @@ var zh_CN_default = {
|
|
|
1178
1308
|
"de-DE": "German"
|
|
1179
1309
|
},
|
|
1180
1310
|
"tabs": {
|
|
1181
|
-
"general": "
|
|
1182
|
-
"storage": "
|
|
1183
|
-
"integrations": "
|
|
1184
|
-
"advanced": "
|
|
1185
|
-
"billing": "
|
|
1186
|
-
"plugins": "
|
|
1311
|
+
"general": "常规",
|
|
1312
|
+
"storage": "存储",
|
|
1313
|
+
"integrations": "集成",
|
|
1314
|
+
"advanced": "高级",
|
|
1315
|
+
"billing": "计费",
|
|
1316
|
+
"plugins": "插件",
|
|
1187
1317
|
"core-plugins": "核心插件",
|
|
1188
1318
|
"community-plugins": "社区插件",
|
|
1189
1319
|
"versions": "版本"
|
|
1190
1320
|
},
|
|
1191
|
-
"
|
|
1192
|
-
"
|
|
1193
|
-
"
|
|
1194
|
-
"
|
|
1195
|
-
"
|
|
1196
|
-
"
|
|
1197
|
-
"
|
|
1198
|
-
"
|
|
1199
|
-
"
|
|
1200
|
-
"
|
|
1201
|
-
"
|
|
1202
|
-
"cache-
|
|
1203
|
-
"
|
|
1204
|
-
"
|
|
1205
|
-
"
|
|
1321
|
+
"pipeline-cache-folder": "流水线缓存文件夹:",
|
|
1322
|
+
"enter-or-browse-for-a-folder": "输入或浏览选择文件夹",
|
|
1323
|
+
"browse": "浏览",
|
|
1324
|
+
"manage-where-the-app-stores-temporary-and-cache-files": "配置用于存储临时文件和应用程序缓存的本地目录。",
|
|
1325
|
+
"clear-cache": "清除缓存",
|
|
1326
|
+
"reset-to-default": "恢复默认",
|
|
1327
|
+
"manage-subscription": "管理订阅",
|
|
1328
|
+
"renewal-date": "续订日期",
|
|
1329
|
+
"start-date": "开始日期:",
|
|
1330
|
+
"cache-cleared-successfully": "缓存清除成功",
|
|
1331
|
+
"failed-to-clear-cache-error-message": "清除缓存失败: {0}",
|
|
1332
|
+
"failed-to-reset-cache-folder-error-message": "重置缓存文件夹失败: {0}",
|
|
1333
|
+
"select-cache-folder": "选择缓存文件夹",
|
|
1334
|
+
"restart-dashboard-tour": "重置仪表盘指南",
|
|
1335
|
+
"restart-editor-tour": "重置编辑器指南",
|
|
1336
|
+
"tour-reset-success": "帮助指南已重置。将在您下次访问时重新显示。",
|
|
1337
|
+
"storage-pipelab": "Pipelab",
|
|
1338
|
+
"storage-other": "其他应用",
|
|
1339
|
+
"storage-free": "空闲空间",
|
|
1340
|
+
"disk-usage": "磁盘使用情况",
|
|
1341
|
+
"free": "空闲",
|
|
1342
|
+
"other": "其他"
|
|
1206
1343
|
},
|
|
1207
1344
|
headers: {
|
|
1208
|
-
"dashboard": "
|
|
1209
|
-
"
|
|
1210
|
-
"editor": "
|
|
1211
|
-
"billing": "
|
|
1212
|
-
"team": "
|
|
1345
|
+
"dashboard": "仪表盘",
|
|
1346
|
+
"pipelines": "流水线",
|
|
1347
|
+
"editor": "编辑器",
|
|
1348
|
+
"billing": "@:settings.tabs.billing",
|
|
1349
|
+
"team": "团队"
|
|
1213
1350
|
},
|
|
1214
1351
|
base: {
|
|
1215
1352
|
"close": "关闭",
|
|
@@ -1220,45 +1357,120 @@ var zh_CN_default = {
|
|
|
1220
1357
|
"delete": "删除",
|
|
1221
1358
|
"logs": "日志",
|
|
1222
1359
|
"ok": "确定",
|
|
1223
|
-
"add": "添加"
|
|
1360
|
+
"add": "添加",
|
|
1361
|
+
"search": "搜索...",
|
|
1362
|
+
"success": "成功",
|
|
1363
|
+
"error": "错误"
|
|
1224
1364
|
},
|
|
1225
1365
|
editor: {
|
|
1226
|
-
"invalid-file-content": "
|
|
1227
|
-
"welcome-back": "
|
|
1228
|
-
"please-log-in-to-run-a-
|
|
1229
|
-
"execution-done": "
|
|
1230
|
-
"your-project-has-been-executed-successfully": "
|
|
1231
|
-
"execution-failed": "
|
|
1232
|
-
"project-has-encountered-an-error": "
|
|
1233
|
-
"project-saved": "
|
|
1234
|
-
"your-project-has-be-saved-successfully": "
|
|
1366
|
+
"invalid-file-content": "无效的文件内容",
|
|
1367
|
+
"welcome-back": "欢迎回来!",
|
|
1368
|
+
"please-log-in-to-run-a-pipeline": "请登录后运行此流水线。",
|
|
1369
|
+
"execution-done": "运行成功完成",
|
|
1370
|
+
"your-project-has-been-executed-successfully": "您的流水线已成功运行完成。",
|
|
1371
|
+
"execution-failed": "运行失败",
|
|
1372
|
+
"project-has-encountered-an-error": "流水线遇到错误:",
|
|
1373
|
+
"project-saved": "流水线已保存",
|
|
1374
|
+
"your-project-has-be-saved-successfully": "您的流水线已成功保存。",
|
|
1375
|
+
"view-history": "历史记录",
|
|
1376
|
+
"add-plugin": "添加插件",
|
|
1377
|
+
"display-advanced-nodes": "显示高级节点",
|
|
1378
|
+
"project-settings": "流水线设置",
|
|
1379
|
+
"jit-loading-title": "正在准备插件",
|
|
1380
|
+
"jit-loading-subtitle": "请稍候,Pipelab 正在下载并配置此流水线所需的插件。",
|
|
1381
|
+
"jit-loading-status": "正在下载并安装插件包...",
|
|
1382
|
+
"validation-failed": "验证失败",
|
|
1383
|
+
"validation-plugin-disabled-or-missing": "节点 \"{nodeName}\" 需要插件 \"{pluginId}\",该插件目前未安装或未启用。",
|
|
1384
|
+
"validation-missing-param": "请配置节点 \"{nodeName}\" 中的必填字段 \"{paramName}\"。"
|
|
1235
1385
|
},
|
|
1236
1386
|
home: {
|
|
1237
|
-
"invalid-preset": "
|
|
1238
|
-
"store-project-on-the-cloud": "
|
|
1239
|
-
"cloud": "
|
|
1240
|
-
"store-project-locally": "
|
|
1241
|
-
"local": "
|
|
1242
|
-
"invalid-number-of-paths-selected": "
|
|
1243
|
-
"pipelab-project": "Pipelab
|
|
1244
|
-
"choose-a-new-path": "
|
|
1245
|
-
"invalid-file-type": "
|
|
1246
|
-
"create-project": "
|
|
1247
|
-
"
|
|
1248
|
-
"project
|
|
1249
|
-
"
|
|
1250
|
-
"
|
|
1251
|
-
"
|
|
1252
|
-
"
|
|
1387
|
+
"invalid-preset": "无效的预设",
|
|
1388
|
+
"store-project-on-the-cloud": "保存项目到云端",
|
|
1389
|
+
"cloud": "云端",
|
|
1390
|
+
"store-project-locally": "本地保存项目",
|
|
1391
|
+
"local": "本地",
|
|
1392
|
+
"invalid-number-of-paths-selected": "选择的路径数量无效",
|
|
1393
|
+
"pipelab-project": "Pipelab 项目",
|
|
1394
|
+
"choose-a-new-path": "选择新路径",
|
|
1395
|
+
"invalid-file-type": "无效的文件类型",
|
|
1396
|
+
"create-project": "创建项目",
|
|
1397
|
+
"create-pipeline": "创建流水线",
|
|
1398
|
+
"duplicate-project": "复制项目",
|
|
1399
|
+
"duplicate-pipeline": "复制流水线",
|
|
1400
|
+
"project-name": "项目名称",
|
|
1401
|
+
"new-project": "新建项目",
|
|
1402
|
+
"new-pipeline": "新建流水线",
|
|
1403
|
+
"open": "打开",
|
|
1404
|
+
"import": "导入",
|
|
1405
|
+
"pipeline-name": "流水线名称",
|
|
1406
|
+
"your-projects": "您的项目",
|
|
1407
|
+
"no-projects-yet": "暂无项目",
|
|
1408
|
+
"no-pipelines-yet": "暂无流水线",
|
|
1409
|
+
"delete-project": "删除项目",
|
|
1410
|
+
"confirm-delete-project": "您确定要删除此项目吗?此操作无法撤销。",
|
|
1411
|
+
"cannot-delete-project": "无法删除项目",
|
|
1412
|
+
"project-not-empty": "此项目包含流水线。请先删除它们。",
|
|
1413
|
+
"transfer": "转移",
|
|
1414
|
+
"transfer-successful": "转移成功",
|
|
1415
|
+
"pipeline-transferred": "流水线已成功转移",
|
|
1416
|
+
"select-project": "选择项目",
|
|
1417
|
+
"build-history": "运行历史",
|
|
1418
|
+
"duplicate": "复制",
|
|
1419
|
+
"rename-project": "重命名项目",
|
|
1420
|
+
"new-project-name": "新项目名称",
|
|
1421
|
+
"premium-feature": "这是高级会员功能",
|
|
1422
|
+
"migrate-warning": "此文件格式即将被弃用。请将其迁移到新的本地工作区存储。",
|
|
1423
|
+
"simple-pipeline": "基础流水线",
|
|
1424
|
+
"advanced-pipeline": "高级流水线",
|
|
1425
|
+
"new-simple-project": "新建简单项目",
|
|
1426
|
+
"new-advanced-project": "新建高级项目",
|
|
1427
|
+
"store-project-internally": "本地保存项目",
|
|
1428
|
+
"internal": "内部",
|
|
1429
|
+
"confirm-migration-message": "您确定要将此流水线移动到本地工作区存储吗?Pipelab 将在内部管理此流水线。",
|
|
1430
|
+
"migrate-pipeline": "迁移流水线",
|
|
1431
|
+
"migration-success": "流水线已成功迁移",
|
|
1432
|
+
"migrate-to-internal": "移动到工作区",
|
|
1433
|
+
"only-internal-supported-notice": "Pipelab 现在管理应用工作区内的所有流水线。外部文件已被弃用,但仍可以导入。",
|
|
1434
|
+
"import-pipeline": "导入流水线",
|
|
1435
|
+
"import-from-stable": "从 Stable 导入...",
|
|
1436
|
+
"import-pipeline-file": "导入管道文件 (.pipelab)...",
|
|
1437
|
+
"import-success": "流水线已成功导入",
|
|
1438
|
+
"failed-to-read-file": "读取所选文件失败",
|
|
1439
|
+
"export-pipeline": "导出流水线...",
|
|
1440
|
+
"export-success": "流水线导出成功",
|
|
1441
|
+
"export-failed": "导出流水线失败"
|
|
1253
1442
|
},
|
|
1254
|
-
|
|
1443
|
+
pipelines: { "title": "@:headers.pipelines" },
|
|
1444
|
+
tour: {
|
|
1445
|
+
"start-tour": "开始向导",
|
|
1446
|
+
"projects-list-title": "项目导航器",
|
|
1447
|
+
"projects-list-description": "此侧边栏列出您的项目。选择一个项目将在主区域显示其包含的流水线。",
|
|
1448
|
+
"add-project-title": "创建新项目",
|
|
1449
|
+
"add-project-description": "项目可以按主题或客户组织您的流水线。点击这里开始一个新项目。",
|
|
1450
|
+
"new-pipeline-title": "创建流水线",
|
|
1451
|
+
"new-pipeline-description": "准备好自动化了吗?创建一个新流水线开始添加操作和逻辑。",
|
|
1452
|
+
"project-actions-title": "项目管理",
|
|
1453
|
+
"project-actions-description": "使用这些按钮重命名或删除当前选择的项目。",
|
|
1454
|
+
"editor-canvas-title": "可视化画布",
|
|
1455
|
+
"editor-canvas-description": "这是您的画布。拖放操作块到这里以构建您的自动化流程。",
|
|
1456
|
+
"editor-save-title": "保存进度",
|
|
1457
|
+
"editor-save-description": "确保您的更改已安全保存。我们建议您经常保存流水线。",
|
|
1458
|
+
"editor-run-title": "测试流水线",
|
|
1459
|
+
"editor-run-description": "点击“运行”测试流水线。Pipelab 将实时执行每个步骤。",
|
|
1460
|
+
"editor-logs-title": "运行日志",
|
|
1461
|
+
"editor-logs-description": "日志面板实时显示执行步骤,帮助您监控和调试。",
|
|
1462
|
+
"editor-close-title": "关闭编辑器",
|
|
1463
|
+
"editor-close-description": "今天的工作完成了吗?返回仪表盘以管理其他项目和流水线。"
|
|
1464
|
+
}
|
|
1255
1465
|
};
|
|
1256
1466
|
//#endregion
|
|
1257
1467
|
//#region src/i18n/es_ES.json
|
|
1258
1468
|
var es_ES_default = {
|
|
1259
1469
|
settings: {
|
|
1260
|
-
"darkTheme": "
|
|
1261
|
-
"
|
|
1470
|
+
"darkTheme": "Tema oscuro",
|
|
1471
|
+
"autosave": "Guardado automático",
|
|
1472
|
+
"autosaveDescription": "Guarda automáticamente los cambios en tus pipelines en tiempo real.",
|
|
1473
|
+
"language": "Idioma",
|
|
1262
1474
|
"languageOptions": {
|
|
1263
1475
|
"en-US": "English",
|
|
1264
1476
|
"fr-FR": "French",
|
|
@@ -1269,37 +1481,44 @@ var es_ES_default = {
|
|
|
1269
1481
|
},
|
|
1270
1482
|
"tabs": {
|
|
1271
1483
|
"general": "General",
|
|
1272
|
-
"storage": "
|
|
1273
|
-
"integrations": "
|
|
1274
|
-
"advanced": "
|
|
1275
|
-
"billing": "
|
|
1276
|
-
"plugins": "
|
|
1484
|
+
"storage": "Almacenamiento",
|
|
1485
|
+
"integrations": "Integraciones",
|
|
1486
|
+
"advanced": "Avanzado",
|
|
1487
|
+
"billing": "Facturación",
|
|
1488
|
+
"plugins": "Complementos",
|
|
1277
1489
|
"core-plugins": "Complementos principales",
|
|
1278
1490
|
"community-plugins": "Complementos de la comunidad",
|
|
1279
1491
|
"versions": "Versiones"
|
|
1280
1492
|
},
|
|
1281
|
-
"
|
|
1282
|
-
"
|
|
1283
|
-
"
|
|
1284
|
-
"
|
|
1285
|
-
"
|
|
1286
|
-
"
|
|
1287
|
-
"
|
|
1288
|
-
"
|
|
1289
|
-
"
|
|
1290
|
-
"
|
|
1291
|
-
"
|
|
1292
|
-
"cache-
|
|
1293
|
-
"
|
|
1294
|
-
"
|
|
1295
|
-
"
|
|
1493
|
+
"pipeline-cache-folder": "Carpeta de caché de pipelines:",
|
|
1494
|
+
"enter-or-browse-for-a-folder": "Escribe o busca una carpeta",
|
|
1495
|
+
"browse": "Buscar",
|
|
1496
|
+
"manage-where-the-app-stores-temporary-and-cache-files": "Configura carpetas locales para archivos temporales y caché de la aplicación.",
|
|
1497
|
+
"clear-cache": "Limpiar caché",
|
|
1498
|
+
"reset-to-default": "Restablecer por defecto",
|
|
1499
|
+
"manage-subscription": "Gestionar suscripción",
|
|
1500
|
+
"renewal-date": "Fecha de renovación",
|
|
1501
|
+
"start-date": "Fecha de inicio:",
|
|
1502
|
+
"cache-cleared-successfully": "Caché limpia con éxito",
|
|
1503
|
+
"failed-to-clear-cache-error-message": "Error al limpiar la caché: {0}",
|
|
1504
|
+
"failed-to-reset-cache-folder-error-message": "Error al restablecer la carpeta de caché: {0}",
|
|
1505
|
+
"select-cache-folder": "Seleccionar carpeta de caché",
|
|
1506
|
+
"restart-dashboard-tour": "Restablecer guía de inicio",
|
|
1507
|
+
"restart-editor-tour": "Restablecer guía del editor",
|
|
1508
|
+
"tour-reset-success": "Las guías de ayuda se han restablecido. Volverán a aparecer en tu próxima visita.",
|
|
1509
|
+
"storage-pipelab": "Pipelab",
|
|
1510
|
+
"storage-other": "Otras aplicaciones",
|
|
1511
|
+
"storage-free": "Espacio libre",
|
|
1512
|
+
"disk-usage": "Uso del disco",
|
|
1513
|
+
"free": "Libre",
|
|
1514
|
+
"other": "Otro"
|
|
1296
1515
|
},
|
|
1297
1516
|
headers: {
|
|
1298
|
-
"dashboard": "
|
|
1299
|
-
"
|
|
1517
|
+
"dashboard": "Inicio",
|
|
1518
|
+
"pipelines": "Pipelines",
|
|
1300
1519
|
"editor": "Editor",
|
|
1301
|
-
"billing": "
|
|
1302
|
-
"team": "
|
|
1520
|
+
"billing": "@:settings.tabs.billing",
|
|
1521
|
+
"team": "Equipo"
|
|
1303
1522
|
},
|
|
1304
1523
|
base: {
|
|
1305
1524
|
"close": "Cerrar",
|
|
@@ -1310,45 +1529,120 @@ var es_ES_default = {
|
|
|
1310
1529
|
"delete": "Eliminar",
|
|
1311
1530
|
"logs": "Registros",
|
|
1312
1531
|
"ok": "Aceptar",
|
|
1313
|
-
"add": "Añadir"
|
|
1532
|
+
"add": "Añadir",
|
|
1533
|
+
"search": "Buscar...",
|
|
1534
|
+
"success": "Éxito",
|
|
1535
|
+
"error": "Error"
|
|
1314
1536
|
},
|
|
1315
1537
|
editor: {
|
|
1316
|
-
"invalid-file-content": "
|
|
1317
|
-
"welcome-back": "
|
|
1318
|
-
"please-log-in-to-run-a-
|
|
1319
|
-
"execution-done": "
|
|
1320
|
-
"your-project-has-been-executed-successfully": "
|
|
1321
|
-
"execution-failed": "
|
|
1322
|
-
"project-has-encountered-an-error": "
|
|
1323
|
-
"project-saved": "
|
|
1324
|
-
"your-project-has-be-saved-successfully": "
|
|
1538
|
+
"invalid-file-content": "Contenido de archivo no válido",
|
|
1539
|
+
"welcome-back": "¡Bienvenido de nuevo!",
|
|
1540
|
+
"please-log-in-to-run-a-pipeline": "Inicia sesión para ejecutar este pipeline.",
|
|
1541
|
+
"execution-done": "Ejecución completada con éxito",
|
|
1542
|
+
"your-project-has-been-executed-successfully": "Tu pipeline se ha ejecutado correctamente.",
|
|
1543
|
+
"execution-failed": "Ejecución fallida",
|
|
1544
|
+
"project-has-encountered-an-error": "El pipeline ha encontrado un error:",
|
|
1545
|
+
"project-saved": "Pipeline guardado",
|
|
1546
|
+
"your-project-has-be-saved-successfully": "Tu pipeline se ha guardado correctamente.",
|
|
1547
|
+
"view-history": "Historial",
|
|
1548
|
+
"add-plugin": "Añadir complemento",
|
|
1549
|
+
"display-advanced-nodes": "Mostrar bloques avanzados",
|
|
1550
|
+
"project-settings": "Ajustes del pipeline",
|
|
1551
|
+
"jit-loading-title": "Preparando complementos",
|
|
1552
|
+
"jit-loading-subtitle": "Espera mientras Pipelab descarga y configura los complementos necesarios para este pipeline.",
|
|
1553
|
+
"jit-loading-status": "Descargando y configurando paquetes de complementos...",
|
|
1554
|
+
"validation-failed": "Validación fallida",
|
|
1555
|
+
"validation-plugin-disabled-or-missing": "El bloque \"{nodeName}\" requiere el complemento \"{pluginId}\", que no está instalado o activo.",
|
|
1556
|
+
"validation-missing-param": "Configura el campo obligatorio \"{paramName}\" en el bloque \"{nodeName}\"."
|
|
1325
1557
|
},
|
|
1326
1558
|
home: {
|
|
1327
|
-
"invalid-preset": "
|
|
1328
|
-
"store-project-on-the-cloud": "
|
|
1329
|
-
"cloud": "
|
|
1330
|
-
"store-project-locally": "
|
|
1559
|
+
"invalid-preset": "Plantilla no válida",
|
|
1560
|
+
"store-project-on-the-cloud": "Guardar proyecto en la nube",
|
|
1561
|
+
"cloud": "Nube",
|
|
1562
|
+
"store-project-locally": "Guardar proyecto localmente",
|
|
1331
1563
|
"local": "Local",
|
|
1332
|
-
"invalid-number-of-paths-selected": "
|
|
1333
|
-
"pipelab-project": "Pipelab
|
|
1334
|
-
"choose-a-new-path": "
|
|
1335
|
-
"invalid-file-type": "
|
|
1336
|
-
"create-project": "
|
|
1337
|
-
"
|
|
1338
|
-
"project
|
|
1339
|
-
"
|
|
1340
|
-
"
|
|
1341
|
-
"
|
|
1342
|
-
"
|
|
1564
|
+
"invalid-number-of-paths-selected": "Número de rutas seleccionado no válido",
|
|
1565
|
+
"pipelab-project": "Proyecto Pipelab",
|
|
1566
|
+
"choose-a-new-path": "Elige una nueva ruta",
|
|
1567
|
+
"invalid-file-type": "Tipo de archivo no válido",
|
|
1568
|
+
"create-project": "Crear Proyecto",
|
|
1569
|
+
"create-pipeline": "Crear Pipeline",
|
|
1570
|
+
"duplicate-project": "Duplicar Proyecto",
|
|
1571
|
+
"duplicate-pipeline": "Duplicar Pipeline",
|
|
1572
|
+
"project-name": "Nombre del proyecto",
|
|
1573
|
+
"new-project": "Nuevo Proyecto",
|
|
1574
|
+
"new-pipeline": "Nuevo Pipeline",
|
|
1575
|
+
"open": "Abrir",
|
|
1576
|
+
"import": "Importar",
|
|
1577
|
+
"pipeline-name": "Nombre del pipeline",
|
|
1578
|
+
"your-projects": "Tus proyectos",
|
|
1579
|
+
"no-projects-yet": "Aún no hay proyectos",
|
|
1580
|
+
"no-pipelines-yet": "Aún no hay pipelines",
|
|
1581
|
+
"delete-project": "Eliminar Proyecto",
|
|
1582
|
+
"confirm-delete-project": "¿Estás seguro de que quieres eliminar este proyecto? Esta acción no se puede deshacer.",
|
|
1583
|
+
"cannot-delete-project": "No se puede eliminar el proyecto",
|
|
1584
|
+
"project-not-empty": "Este proyecto contiene pipelines. Elíminalos primero.",
|
|
1585
|
+
"transfer": "Transferir",
|
|
1586
|
+
"transfer-successful": "Transferencia completada",
|
|
1587
|
+
"pipeline-transferred": "Pipeline transferido con éxito",
|
|
1588
|
+
"select-project": "Seleccionar Proyecto",
|
|
1589
|
+
"build-history": "Historial de ejecuciones",
|
|
1590
|
+
"duplicate": "Duplicar",
|
|
1591
|
+
"rename-project": "Renombrar Proyecto",
|
|
1592
|
+
"new-project-name": "Nuevo nombre del proyecto",
|
|
1593
|
+
"premium-feature": "Esta es una función premium",
|
|
1594
|
+
"migrate-warning": "Este formato de archivo pronto quedará obsoleto. Mígralo al nuevo almacenamiento local de la aplicación.",
|
|
1595
|
+
"simple-pipeline": "Pipeline básico",
|
|
1596
|
+
"advanced-pipeline": "Pipeline avanzado",
|
|
1597
|
+
"new-simple-project": "Nuevo proyecto simple",
|
|
1598
|
+
"new-advanced-project": "Nuevo proyecto avanzado",
|
|
1599
|
+
"store-project-internally": "Guardar proyecto localmente",
|
|
1600
|
+
"internal": "Interno",
|
|
1601
|
+
"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.",
|
|
1602
|
+
"migrate-pipeline": "Migrar Pipeline",
|
|
1603
|
+
"migration-success": "Pipeline migrado con éxito",
|
|
1604
|
+
"migrate-to-internal": "Mover al espacio de trabajo",
|
|
1605
|
+
"only-internal-supported-notice": "Pipelab ahora gestiona todos los pipelines dentro del espacio de trabajo. Los archivos externos están obsoletos, pero pueden importarse.",
|
|
1606
|
+
"import-pipeline": "Importar Pipeline",
|
|
1607
|
+
"import-from-stable": "Importar desde Stable...",
|
|
1608
|
+
"import-pipeline-file": "Importar archivo de pipeline (.pipelab)...",
|
|
1609
|
+
"import-success": "Pipeline importado con éxito",
|
|
1610
|
+
"failed-to-read-file": "Error al leer el archivo seleccionado",
|
|
1611
|
+
"export-pipeline": "Exportar pipeline...",
|
|
1612
|
+
"export-success": "Pipeline exportado correctamente",
|
|
1613
|
+
"export-failed": "Error al exportar el pipeline"
|
|
1343
1614
|
},
|
|
1344
|
-
|
|
1615
|
+
pipelines: { "title": "@:headers.pipelines" },
|
|
1616
|
+
tour: {
|
|
1617
|
+
"start-tour": "Iniciar guía",
|
|
1618
|
+
"projects-list-title": "Navegador de proyectos",
|
|
1619
|
+
"projects-list-description": "Esta barra lateral muestra tus proyectos. Al seleccionar uno se mostrarán sus pipelines en el área principal.",
|
|
1620
|
+
"add-project-title": "Crear nuevo proyecto",
|
|
1621
|
+
"add-project-description": "Los proyectos organizan tus pipelines por tema o cliente. Haz clic aquí para crear uno.",
|
|
1622
|
+
"new-pipeline-title": "Crear un pipeline",
|
|
1623
|
+
"new-pipeline-description": "¿Listo para automatizar? Crea un nuevo pipeline para empezar a añadir acciones y lógica.",
|
|
1624
|
+
"project-actions-title": "Gestión de proyectos",
|
|
1625
|
+
"project-actions-description": "Usa estos botones para renombrar o eliminar el proyecto seleccionado.",
|
|
1626
|
+
"editor-canvas-title": "El lienzo visual",
|
|
1627
|
+
"editor-canvas-description": "Este es tu lienzo. Arrastra y suelta bloques de acción aquí para construir tu flujo.",
|
|
1628
|
+
"editor-save-title": "Guardar progreso",
|
|
1629
|
+
"editor-save-description": "Mantén tus cambios seguros. Te recomendamos guardar tu pipeline con frecuencia.",
|
|
1630
|
+
"editor-run-title": "Probar pipeline",
|
|
1631
|
+
"editor-run-description": "Haz clic en Ejecutar para probar tu pipeline. Pipelab ejecutará cada bloque en tiempo real.",
|
|
1632
|
+
"editor-logs-title": "Registros de ejecución",
|
|
1633
|
+
"editor-logs-description": "El panel de registros muestra los pasos en tiempo real, ayudándote a supervisar y depurar.",
|
|
1634
|
+
"editor-close-title": "Cerrar editor",
|
|
1635
|
+
"editor-close-description": "¿Has terminado? Vuelve al panel de inicio para gestionar otros proyectos y pipelines."
|
|
1636
|
+
}
|
|
1345
1637
|
};
|
|
1346
1638
|
//#endregion
|
|
1347
1639
|
//#region src/i18n/de_DE.json
|
|
1348
1640
|
var de_DE_default = {
|
|
1349
1641
|
settings: {
|
|
1350
|
-
"darkTheme": "
|
|
1351
|
-
"
|
|
1642
|
+
"darkTheme": "Dunkles Design",
|
|
1643
|
+
"autosave": "Automatisch speichern",
|
|
1644
|
+
"autosaveDescription": "Änderungen an Ihren Pipelines automatisch in Echtzeit speichern.",
|
|
1645
|
+
"language": "Sprache",
|
|
1352
1646
|
"languageOptions": {
|
|
1353
1647
|
"en-US": "English",
|
|
1354
1648
|
"fr-FR": "French",
|
|
@@ -1358,37 +1652,44 @@ var de_DE_default = {
|
|
|
1358
1652
|
"de-DE": "German"
|
|
1359
1653
|
},
|
|
1360
1654
|
"tabs": {
|
|
1361
|
-
"general": "
|
|
1362
|
-
"storage": "
|
|
1363
|
-
"integrations": "
|
|
1364
|
-
"advanced": "
|
|
1365
|
-
"billing": "
|
|
1366
|
-
"plugins": "
|
|
1367
|
-
"core-plugins": "
|
|
1368
|
-
"community-plugins": "Community-
|
|
1655
|
+
"general": "Allgemein",
|
|
1656
|
+
"storage": "Speicher",
|
|
1657
|
+
"integrations": "Integrationen",
|
|
1658
|
+
"advanced": "Erweitert",
|
|
1659
|
+
"billing": "Abrechnung",
|
|
1660
|
+
"plugins": "Erweiterungen",
|
|
1661
|
+
"core-plugins": "Kern-Erweiterungen",
|
|
1662
|
+
"community-plugins": "Community-Erweiterungen",
|
|
1369
1663
|
"versions": "Versionen"
|
|
1370
1664
|
},
|
|
1371
|
-
"
|
|
1372
|
-
"
|
|
1373
|
-
"
|
|
1374
|
-
"
|
|
1375
|
-
"
|
|
1376
|
-
"
|
|
1377
|
-
"
|
|
1378
|
-
"
|
|
1379
|
-
"
|
|
1380
|
-
"
|
|
1381
|
-
"
|
|
1382
|
-
"cache-
|
|
1383
|
-
"
|
|
1384
|
-
"
|
|
1385
|
-
"
|
|
1665
|
+
"pipeline-cache-folder": "Pipeline-Cache-Ordner:",
|
|
1666
|
+
"enter-or-browse-for-a-folder": "Ordner eingeben oder auswählen",
|
|
1667
|
+
"browse": "Durchsuchen",
|
|
1668
|
+
"manage-where-the-app-stores-temporary-and-cache-files": "Konfigurieren Sie lokale Ordner für temporäre Dateien und Anwendungs-Cache.",
|
|
1669
|
+
"clear-cache": "Cache leeren",
|
|
1670
|
+
"reset-to-default": "Auf Standard zurücksetzen",
|
|
1671
|
+
"manage-subscription": "Abonnement verwalten",
|
|
1672
|
+
"renewal-date": "Verlängerungsdatum",
|
|
1673
|
+
"start-date": "Startdatum:",
|
|
1674
|
+
"cache-cleared-successfully": "Cache erfolgreich geleert",
|
|
1675
|
+
"failed-to-clear-cache-error-message": "Cache konnte nicht geleert werden: {0}",
|
|
1676
|
+
"failed-to-reset-cache-folder-error-message": "Cache-Ordner konnte nicht zurückgesetzt werden: {0}",
|
|
1677
|
+
"select-cache-folder": "Cache-Ordner auswählen",
|
|
1678
|
+
"restart-dashboard-tour": "Dashboard-Anleitung zurücksetzen",
|
|
1679
|
+
"restart-editor-tour": "Editor-Anleitung zurücksetzen",
|
|
1680
|
+
"tour-reset-success": "Anleitungen wurden zurückgesetzt. Sie werden bei Ihrem nächsten Besuch wieder angezeigt.",
|
|
1681
|
+
"storage-pipelab": "Pipelab",
|
|
1682
|
+
"storage-other": "Andere Apps",
|
|
1683
|
+
"storage-free": "Freier Speicher",
|
|
1684
|
+
"disk-usage": "Festplattennutzung",
|
|
1685
|
+
"free": "Frei",
|
|
1686
|
+
"other": "Sonstige"
|
|
1386
1687
|
},
|
|
1387
1688
|
headers: {
|
|
1388
1689
|
"dashboard": "Dashboard",
|
|
1389
|
-
"
|
|
1690
|
+
"pipelines": "Pipelines",
|
|
1390
1691
|
"editor": "Editor",
|
|
1391
|
-
"billing": "
|
|
1692
|
+
"billing": "@:settings.tabs.billing",
|
|
1392
1693
|
"team": "Team"
|
|
1393
1694
|
},
|
|
1394
1695
|
base: {
|
|
@@ -1400,38 +1701,111 @@ var de_DE_default = {
|
|
|
1400
1701
|
"delete": "Löschen",
|
|
1401
1702
|
"logs": "Protokolle",
|
|
1402
1703
|
"ok": "OK",
|
|
1403
|
-
"add": "Hinzufügen"
|
|
1704
|
+
"add": "Hinzufügen",
|
|
1705
|
+
"search": "Suchen...",
|
|
1706
|
+
"success": "Erfolg",
|
|
1707
|
+
"error": "Fehler"
|
|
1404
1708
|
},
|
|
1405
1709
|
editor: {
|
|
1406
|
-
"invalid-file-content": "
|
|
1407
|
-
"welcome-back": "
|
|
1408
|
-
"please-log-in-to-run-a-
|
|
1409
|
-
"execution-done": "
|
|
1410
|
-
"your-project-has-been-executed-successfully": "
|
|
1411
|
-
"execution-failed": "
|
|
1412
|
-
"project-has-encountered-an-error": "
|
|
1413
|
-
"project-saved": "
|
|
1414
|
-
"your-project-has-be-saved-successfully": "
|
|
1710
|
+
"invalid-file-content": "Ungültiger Dateiinhalt",
|
|
1711
|
+
"welcome-back": "Willkommen zurück!",
|
|
1712
|
+
"please-log-in-to-run-a-pipeline": "Bitte melden Sie sich an, um diese Pipeline auszuführen.",
|
|
1713
|
+
"execution-done": "Ausführung erfolgreich abgeschlossen",
|
|
1714
|
+
"your-project-has-been-executed-successfully": "Ihre Pipeline wurde erfolgreich ausgeführt.",
|
|
1715
|
+
"execution-failed": "Ausführung fehlgeschlagen",
|
|
1716
|
+
"project-has-encountered-an-error": "Die Pipeline hat einen Fehler festgestellt:",
|
|
1717
|
+
"project-saved": "Pipeline gespeichert",
|
|
1718
|
+
"your-project-has-be-saved-successfully": "Ihre Pipeline wurde erfolgreich gespeichert.",
|
|
1719
|
+
"view-history": "Verlauf",
|
|
1720
|
+
"add-plugin": "Erweiterung hinzufügen",
|
|
1721
|
+
"display-advanced-nodes": "Erweiterte Blöcke anzeigen",
|
|
1722
|
+
"project-settings": "Pipeline-Einstellungen",
|
|
1723
|
+
"jit-loading-title": "Erweiterungen werden vorbereitet",
|
|
1724
|
+
"jit-loading-subtitle": "Bitte warten Sie, während Pipelab die für diese Pipeline erforderlichen Erweiterungen herunterlädt und konfigures.",
|
|
1725
|
+
"jit-loading-status": "Herunterladen und Einrichten von Erweiterungspaketen...",
|
|
1726
|
+
"validation-failed": "Validierung fehlgeschlagen",
|
|
1727
|
+
"validation-plugin-disabled-or-missing": "Der Block \"{nodeName}\" erfordert die Erweiterung \"{pluginId}\", die derzeit nicht installiert oder aktiviert ist.",
|
|
1728
|
+
"validation-missing-param": "Bitte konfigurieren Sie das erforderliche Feld \"{paramName}\" im Block \"{nodeName}\"."
|
|
1415
1729
|
},
|
|
1416
1730
|
home: {
|
|
1417
|
-
"invalid-preset": "
|
|
1418
|
-
"store-project-on-the-cloud": "
|
|
1731
|
+
"invalid-preset": "Ungültige Vorlage",
|
|
1732
|
+
"store-project-on-the-cloud": "Projekt in der Cloud speichern",
|
|
1419
1733
|
"cloud": "Cloud",
|
|
1420
|
-
"store-project-locally": "
|
|
1421
|
-
"local": "
|
|
1422
|
-
"invalid-number-of-paths-selected": "
|
|
1423
|
-
"pipelab-project": "Pipelab
|
|
1424
|
-
"choose-a-new-path": "
|
|
1425
|
-
"invalid-file-type": "
|
|
1426
|
-
"create-project": "
|
|
1427
|
-
"
|
|
1428
|
-
"project
|
|
1429
|
-
"
|
|
1430
|
-
"
|
|
1431
|
-
"
|
|
1432
|
-
"
|
|
1734
|
+
"store-project-locally": "Projekt lokal speichern",
|
|
1735
|
+
"local": "Lokal",
|
|
1736
|
+
"invalid-number-of-paths-selected": "Ungültige Anzahl ausgewählter Pfade",
|
|
1737
|
+
"pipelab-project": "Pipelab-Projekt",
|
|
1738
|
+
"choose-a-new-path": "Wählen Sie einen neuen Pfad",
|
|
1739
|
+
"invalid-file-type": "Ungültiger Dateityp",
|
|
1740
|
+
"create-project": "Projekt erstellen",
|
|
1741
|
+
"create-pipeline": "Pipeline erstellen",
|
|
1742
|
+
"duplicate-project": "Projekt duplizieren",
|
|
1743
|
+
"duplicate-pipeline": "Pipeline duplizieren",
|
|
1744
|
+
"project-name": "Projektname",
|
|
1745
|
+
"new-project": "Neues Projekt",
|
|
1746
|
+
"new-pipeline": "Neue Pipeline",
|
|
1747
|
+
"open": "Öffnen",
|
|
1748
|
+
"import": "Importieren",
|
|
1749
|
+
"pipeline-name": "Pipelinename",
|
|
1750
|
+
"your-projects": "Ihre Projekte",
|
|
1751
|
+
"no-projects-yet": "Noch keine Projekte",
|
|
1752
|
+
"no-pipelines-yet": "Noch keine Pipelines",
|
|
1753
|
+
"delete-project": "Projekt löschen",
|
|
1754
|
+
"confirm-delete-project": "Sind Sie sicher, dass Sie dieses Projekt löschen möchten? Dies kann nicht rückgängig gemacht werden.",
|
|
1755
|
+
"cannot-delete-project": "Projekt kann nicht gelöscht werden",
|
|
1756
|
+
"project-not-empty": "Dieses Projekt enthält Pipelines. Bitte löschen Sie diese zuerst.",
|
|
1757
|
+
"transfer": "Übertragen",
|
|
1758
|
+
"transfer-successful": "Übertragung erfolgreich",
|
|
1759
|
+
"pipeline-transferred": "Pipeline erfolgreich übertragen",
|
|
1760
|
+
"select-project": "Projekt auswählen",
|
|
1761
|
+
"build-history": "Ausführungsverlauf",
|
|
1762
|
+
"duplicate": "Duplizieren",
|
|
1763
|
+
"rename-project": "Projekt umbenennen",
|
|
1764
|
+
"new-project-name": "Neuer Projektname",
|
|
1765
|
+
"premium-feature": "Dies ist eine Premium-Funktion",
|
|
1766
|
+
"migrate-warning": "Dieses Dateiformat wird bald nicht mehr unterstützt. Bitte migrieren Sie es in den neuen lokalen Arbeitsbereich.",
|
|
1767
|
+
"simple-pipeline": "Einfache Pipeline",
|
|
1768
|
+
"advanced-pipeline": "Erweiterte Pipeline",
|
|
1769
|
+
"new-simple-project": "Neues einfaches Projekt",
|
|
1770
|
+
"new-advanced-project": "Neues erweitertes Projekt",
|
|
1771
|
+
"store-project-internally": "Projekt lokal speichern",
|
|
1772
|
+
"internal": "Intern",
|
|
1773
|
+
"confirm-migration-message": "Sind Sie sicher, dass Sie diese Pipeline in den lokalen Arbeitsbereich verschieben möchten? Pipelab wird diese Pipeline intern verwalten.",
|
|
1774
|
+
"migrate-pipeline": "Pipeline migrieren",
|
|
1775
|
+
"migration-success": "Pipeline erfolgreich migriert",
|
|
1776
|
+
"migrate-to-internal": "In Arbeitsbereich verschieben",
|
|
1777
|
+
"only-internal-supported-notice": "Pipelab verwaltet jetzt alle Pipelines im Arbeitsbereich der Anwendung. Externe Dateien sind veraltet, können aber weiterhin importiert werden.",
|
|
1778
|
+
"import-pipeline": "Pipeline importieren",
|
|
1779
|
+
"import-from-stable": "Aus Stable importieren...",
|
|
1780
|
+
"import-pipeline-file": "Pipeline-Datei importieren (.pipelab)...",
|
|
1781
|
+
"import-success": "Pipeline erfolgreich importiert",
|
|
1782
|
+
"failed-to-read-file": "Ausgewählte Datei konnte nicht gelesen werden",
|
|
1783
|
+
"export-pipeline": "Pipeline exportieren...",
|
|
1784
|
+
"export-success": "Pipeline erfolgreich exportiert",
|
|
1785
|
+
"export-failed": "Fehler beim Exportieren der Pipeline"
|
|
1433
1786
|
},
|
|
1434
|
-
|
|
1787
|
+
pipelines: { "title": "@:headers.pipelines" },
|
|
1788
|
+
tour: {
|
|
1789
|
+
"start-tour": "Anleitung starten",
|
|
1790
|
+
"projects-list-title": "Projekt-Navigator",
|
|
1791
|
+
"projects-list-description": "Diese Seitenleiste zeigt Ihre Projekte. Durch Auswahl eines Projekts werden dessen Pipelines im Hauptbereich angezeigt.",
|
|
1792
|
+
"add-project-title": "Neues Projekt erstellen",
|
|
1793
|
+
"add-project-description": "Projekte organisieren Ihre Pipelines nach Thema oder Kunde. Klicken Sie hier, um ein neues Projekt zu starten.",
|
|
1794
|
+
"new-pipeline-title": "Pipeline erstellen",
|
|
1795
|
+
"new-pipeline-description": "Bereit zur Automatisierung? Erstellen Sie eine neue Pipeline, um Aktionen und Logik hinzuzufügen.",
|
|
1796
|
+
"project-actions-title": "Projektverwaltung",
|
|
1797
|
+
"project-actions-description": "Verwenden Sie diese Schaltflächen, um das derzeit ausgewählte Projekt umzubenennen oder zu löschen.",
|
|
1798
|
+
"editor-canvas-title": "Der visuelle Editor",
|
|
1799
|
+
"editor-canvas-description": "Dies ist Ihr Arbeitsbereich. Ziehen Sie Aktionsblöcke hierher, um Ihren Automatisierungsfluss zu erstellen.",
|
|
1800
|
+
"editor-save-title": "Fortschritt speichern",
|
|
1801
|
+
"editor-save-description": "Schützen Sie Ihre Änderungen. Wir empfehlen, Ihre Pipeline häufig zu speichern.",
|
|
1802
|
+
"editor-run-title": "Pipeline testen",
|
|
1803
|
+
"editor-run-description": "Klicken Sie auf Ausführen, um Ihre Pipeline zu testen. Pipelab führt jeden Block in Echtzeit aus.",
|
|
1804
|
+
"editor-logs-title": "Ausführungsprotokolle",
|
|
1805
|
+
"editor-logs-description": "Das Protokollfenster zeigt die Ausführungsschritte in Echtzeit, um Sie bei der Überwachung und Fehlersuche zu unterstützen.",
|
|
1806
|
+
"editor-close-title": "Editor schließen",
|
|
1807
|
+
"editor-close-description": "Fertig für heute? Kehren Sie zum Dashboard zurück, um andere Projekte und Pipelines zu verwalten."
|
|
1808
|
+
}
|
|
1435
1809
|
};
|
|
1436
1810
|
//#endregion
|
|
1437
1811
|
//#region src/model.ts
|
|
@@ -43998,20 +44372,6 @@ const isWebSocketResponseMessage = (message) => {
|
|
|
43998
44372
|
const isWebSocketErrorMessage = (message) => {
|
|
43999
44373
|
return message && message.type === "error" && message.requestId && message.error;
|
|
44000
44374
|
};
|
|
44001
|
-
object({
|
|
44002
|
-
version: literal("1.0.0"),
|
|
44003
|
-
data: optional(record(string(), SaveLocationValidator), {})
|
|
44004
|
-
});
|
|
44005
|
-
const FileRepoProjectValidatorV2$1 = object({
|
|
44006
|
-
id: string(),
|
|
44007
|
-
name: string(),
|
|
44008
|
-
description: string()
|
|
44009
|
-
});
|
|
44010
|
-
object({
|
|
44011
|
-
version: literal("2.0.0"),
|
|
44012
|
-
projects: array(FileRepoProjectValidatorV2$1),
|
|
44013
|
-
pipelines: optional(array(SaveLocationValidator), [])
|
|
44014
|
-
});
|
|
44015
44375
|
//#endregion
|
|
44016
44376
|
//#region src/index.ts
|
|
44017
44377
|
const appSettingsMigrator = appSettingsMigrator$1;
|
|
@@ -44024,6 +44384,6 @@ const normalizePipelineConfig = normalizePipelineConfig$1;
|
|
|
44024
44384
|
const connectionsMigrator = connectionsMigrator$1;
|
|
44025
44385
|
const defaultConnections = defaultConnections$1;
|
|
44026
44386
|
//#endregion
|
|
44027
|
-
export { AppSettingsValidator, AppSettingsValidatorV1, AppSettingsValidatorV2, AppSettingsValidatorV3, AppSettingsValidatorV4, AppSettingsValidatorV5, AppSettingsValidatorV6, AppSettingsValidatorV7,
|
|
44387
|
+
export { AppSettingsValidator, AppSettingsValidatorV1, AppSettingsValidatorV2, AppSettingsValidatorV3, AppSettingsValidatorV4, AppSettingsValidatorV5, AppSettingsValidatorV6, AppSettingsValidatorV7, BenefitNotFoundError, ConnectionValidator, ConnectionsValidator, ConnectionsValidatorV1, EditorParamValidatorV3, FileRepoProjectValidatorV2, FileRepoValidator, FileRepoValidatorV1, FileRepoValidatorV2, FileRepoValidatorV3, OriginValidator, RELEASE_SYNC, SaveLocationExternalValidator, SaveLocationInternalValidator, SaveLocationPipelabCloudValidator, SaveLocationValidator, SavedFileDefaultValidatorV4, SavedFileDefaultValidatorV5, SavedFileSimpleValidatorV4, SavedFileSimpleValidatorV5, SavedFileValidator, SavedFileValidatorV1, SavedFileValidatorV2, SavedFileValidatorV3, SavedFileValidatorV4, SavedFileValidatorV5, ShellChannels, SubscriptionExpiredError, SubscriptionRequiredError, UnauthorizedError, VariableValidatorV1, WebSocketConnectionError, WebSocketError, WebSocketTimeoutError, appSettingsMigrator, configRegistry, connectionsMigrator, createAction, createArray, createBooleanParam, createColorPicker, createDefinition, createEvent, createExpression, createNetlifySiteParam, createNodeDefinition, createNumberParam, createPasswordParam, createPathParam, createQuickJs, createQuickJsFromVariant, createRawParam, createStringParam, createSubscriptionError, createVersionSchema, de_DE_default as de_DE, defaultAppSettings, defaultConnections, defaultFileRepo, en_US_default as en_US, es_ES_default as es_ES, fileRepoMigrations, fmt, foo, fr_FR_default as fr_FR, getSubscriptionErrorMessage, isRenderer, isRequired, isSubscriptionError, isSupabaseAvailable, isWebSocketErrorMessage, isWebSocketRequestMessage, isWebSocketResponseMessage, makeResolvedParams, newVariant, normalizePipelineConfig, processGraph, pt_BR_default as pt_BR, savedFileMigrator, supabase, transformUrl, useLogger, usePlugins, variableToFormattedVariable, zh_CN_default as zh_CN };
|
|
44028
44388
|
|
|
44029
44389
|
//# sourceMappingURL=index.mjs.map
|