@pipelab/shared 1.0.0-beta.13 → 1.0.0-beta.14

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