@cat-factory/app 0.97.0 → 0.98.0
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/app/components/environments/EnvironmentSetupWizard.vue +654 -0
- package/app/components/layout/SideBar.vue +14 -0
- package/app/components/panels/inspector/FrontendConfig.vue +17 -7
- package/app/components/panels/inspector/ServiceTestConfig.vue +48 -7
- package/app/composables/api/environments.ts +7 -1
- package/app/composables/api/preflights.ts +16 -0
- package/app/composables/useApi.ts +2 -0
- package/app/pages/index.vue +4 -0
- package/app/stores/environmentWizard.ts +489 -0
- package/app/stores/preflights.ts +48 -0
- package/app/stores/ui.ts +21 -0
- package/i18n/locales/en.json +86 -2
- package/i18n/locales/es.json +86 -2
- package/i18n/locales/fr.json +86 -2
- package/i18n/locales/he.json +86 -2
- package/i18n/locales/ja.json +86 -2
- package/i18n/locales/pl.json +86 -2
- package/i18n/locales/tr.json +86 -2
- package/i18n/locales/uk.json +86 -2
- package/package.json +2 -2
package/i18n/locales/en.json
CHANGED
|
@@ -63,7 +63,10 @@
|
|
|
63
63
|
"@clear": {
|
|
64
64
|
"description": "Verb meaning empty / reset a stored value (a config, a saved connection), NOT the adjective 'transparent / obvious'. Used as a destructive-action button label."
|
|
65
65
|
},
|
|
66
|
-
"undo": "Undo"
|
|
66
|
+
"undo": "Undo",
|
|
67
|
+
"back": "Back",
|
|
68
|
+
"next": "Next",
|
|
69
|
+
"done": "Done"
|
|
67
70
|
},
|
|
68
71
|
"nav": {
|
|
69
72
|
"menu": "Navigation menu",
|
|
@@ -90,7 +93,8 @@
|
|
|
90
93
|
"configuration": "Configuration",
|
|
91
94
|
"workspaceSettings": "Workspace settings",
|
|
92
95
|
"modelConfiguration": "Model configuration",
|
|
93
|
-
"accountSettings": "Account settings"
|
|
96
|
+
"accountSettings": "Account settings",
|
|
97
|
+
"environmentSetup": "Environment setup"
|
|
94
98
|
},
|
|
95
99
|
"board": {
|
|
96
100
|
"toast": {
|
|
@@ -504,6 +508,7 @@
|
|
|
504
508
|
}
|
|
505
509
|
},
|
|
506
510
|
"inspector": {
|
|
511
|
+
"detectRepoUnresolved": "This block's repository isn't among the connected GitHub repos, so it can't be read. Connect or sync GitHub for it, then retry.",
|
|
507
512
|
"container": {
|
|
508
513
|
"title": "Contents",
|
|
509
514
|
"hint": "The modules and tasks inside this block. Click an entry to select it on the board.",
|
|
@@ -740,6 +745,11 @@
|
|
|
740
745
|
"namespace": "Manifests pin namespace \"{namespace}\"; recommend honoring it on the workspace handler.",
|
|
741
746
|
"confidenceHigh": "Detected",
|
|
742
747
|
"confidenceLow": "Suggestion"
|
|
748
|
+
},
|
|
749
|
+
"envWizard": {
|
|
750
|
+
"title": "Compose environment setup",
|
|
751
|
+
"hint": "Configure the recipe, preflights, and handler so the Deployer provisions this stack.",
|
|
752
|
+
"open": "Open wizard"
|
|
743
753
|
}
|
|
744
754
|
},
|
|
745
755
|
"agentConfig": {
|
|
@@ -4361,5 +4371,79 @@
|
|
|
4361
4371
|
"defaultPipelineField": "Default pipeline",
|
|
4362
4372
|
"failed": "Could not update the initiative"
|
|
4363
4373
|
}
|
|
4374
|
+
},
|
|
4375
|
+
"environmentWizard": {
|
|
4376
|
+
"title": "Set up a test environment",
|
|
4377
|
+
"subtitle": "Detect, review, and save a Docker Compose recipe so the Deployer provisions it.",
|
|
4378
|
+
"recommended": "recommended",
|
|
4379
|
+
"steps": {
|
|
4380
|
+
"pick": "Pick service",
|
|
4381
|
+
"review": "Review recipe",
|
|
4382
|
+
"preflight": "Preflight",
|
|
4383
|
+
"save": "Save"
|
|
4384
|
+
},
|
|
4385
|
+
"pick": {
|
|
4386
|
+
"intro": "Choose the service to set up a Docker Compose environment for.",
|
|
4387
|
+
"empty": "No services yet. Add a service first."
|
|
4388
|
+
},
|
|
4389
|
+
"review": {
|
|
4390
|
+
"detectHint": "Detected from the repository. Nothing is applied until you save.",
|
|
4391
|
+
"detect": "Re-detect",
|
|
4392
|
+
"noRepo": "This service has no linked repository, so detection can't run.",
|
|
4393
|
+
"detectError": "Detection failed. Check the repository connection and try again.",
|
|
4394
|
+
"provenanceTitle": "Where each field came from",
|
|
4395
|
+
"service": "Exposed compose service",
|
|
4396
|
+
"servicePlaceholder": "e.g. app",
|
|
4397
|
+
"port": "Exposed port",
|
|
4398
|
+
"composeFiles": "Compose files",
|
|
4399
|
+
"profiles": "Profiles",
|
|
4400
|
+
"seedDumps": "Seed dumps",
|
|
4401
|
+
"seedAdd": "Add seed step",
|
|
4402
|
+
"seedAdded": "Added",
|
|
4403
|
+
"rawEditor": "Edit raw recipe",
|
|
4404
|
+
"rawApply": "Apply"
|
|
4405
|
+
},
|
|
4406
|
+
"analysis": {
|
|
4407
|
+
"title": "Deep analysis",
|
|
4408
|
+
"hint": "Run the environment analyst to draft setup steps and health gates from the repo.",
|
|
4409
|
+
"run": "Run analysis",
|
|
4410
|
+
"unavailable": "Deep analysis needs a linked repository and the analysis pipeline.",
|
|
4411
|
+
"failed": "The analysis run failed.",
|
|
4412
|
+
"apply": "Apply analyst draft"
|
|
4413
|
+
},
|
|
4414
|
+
"field": {
|
|
4415
|
+
"composeFiles": "Compose files",
|
|
4416
|
+
"composeProfiles": "Profiles",
|
|
4417
|
+
"envFiles": "Env files",
|
|
4418
|
+
"externalNetworks": "External networks",
|
|
4419
|
+
"sharedStackRefs": "Shared stacks",
|
|
4420
|
+
"prerequisites": "Preflights",
|
|
4421
|
+
"setupSteps": "Setup steps",
|
|
4422
|
+
"healthGate": "Health gate",
|
|
4423
|
+
"teardownSteps": "Teardown steps"
|
|
4424
|
+
},
|
|
4425
|
+
"origin": {
|
|
4426
|
+
"detector": "detected",
|
|
4427
|
+
"analyst": "analyst",
|
|
4428
|
+
"both": "detected + analyst"
|
|
4429
|
+
},
|
|
4430
|
+
"preflight": {
|
|
4431
|
+
"intro": "Check machine prerequisites before provisioning.",
|
|
4432
|
+
"run": "Run checks",
|
|
4433
|
+
"none": "This recipe declares no preflight checks.",
|
|
4434
|
+
"unavailable": "Preflight checks run on the local machine and aren't available on this deployment.",
|
|
4435
|
+
"optional": "optional"
|
|
4436
|
+
},
|
|
4437
|
+
"save": {
|
|
4438
|
+
"handlerLabel": "Handler label",
|
|
4439
|
+
"handlerHint": "The workspace's Docker Compose handler the Deployer uses to provision this stack.",
|
|
4440
|
+
"summary": "Saves a Docker Compose recipe onto \"{frame}\" (exposing service \"{service}\") and registers the workspace handler.",
|
|
4441
|
+
"saved": "Saved. The Deployer will provision this stack when a pipeline runs it.",
|
|
4442
|
+
"save": "Save configuration"
|
|
4443
|
+
},
|
|
4444
|
+
"trial": {
|
|
4445
|
+
"hint": "Optionally provision this environment now to test the recipe.",
|
|
4446
|
+
"run": "Trial provision"
|
|
4447
|
+
}
|
|
4364
4448
|
}
|
|
4365
4449
|
}
|
package/i18n/locales/es.json
CHANGED
|
@@ -54,7 +54,10 @@
|
|
|
54
54
|
"cleared": "{name} borrado",
|
|
55
55
|
"destroyed": "{name} destruido"
|
|
56
56
|
},
|
|
57
|
-
"undo": "Deshacer"
|
|
57
|
+
"undo": "Deshacer",
|
|
58
|
+
"back": "Atrás",
|
|
59
|
+
"next": "Siguiente",
|
|
60
|
+
"done": "Listo"
|
|
58
61
|
},
|
|
59
62
|
"nav": {
|
|
60
63
|
"menu": "Menú de navegación",
|
|
@@ -75,7 +78,8 @@
|
|
|
75
78
|
"workspaceSettings": "Ajustes del espacio de trabajo",
|
|
76
79
|
"modelConfiguration": "Configuración del modelo",
|
|
77
80
|
"accountSettings": "Ajustes de la cuenta",
|
|
78
|
-
"infrastructure": "Infraestructura"
|
|
81
|
+
"infrastructure": "Infraestructura",
|
|
82
|
+
"environmentSetup": "Configuración de entorno"
|
|
79
83
|
},
|
|
80
84
|
"board": {
|
|
81
85
|
"toast": {
|
|
@@ -461,6 +465,7 @@
|
|
|
461
465
|
}
|
|
462
466
|
},
|
|
463
467
|
"inspector": {
|
|
468
|
+
"detectRepoUnresolved": "El repositorio de este bloque no está entre los repositorios de GitHub conectados, por lo que no se puede leer. Conecta o sincroniza GitHub para él y vuelve a intentarlo.",
|
|
464
469
|
"container": {
|
|
465
470
|
"title": "Contenido",
|
|
466
471
|
"hint": "Los módulos y tareas dentro de este bloque. Haz clic en una entrada para seleccionarla en el tablero.",
|
|
@@ -697,6 +702,11 @@
|
|
|
697
702
|
"succeeded": "Manifiesto generado y subido.",
|
|
698
703
|
"failed": "La generación del manifiesto falló. Vuelve a intentarlo desde la ventana de Infraestructura."
|
|
699
704
|
}
|
|
705
|
+
},
|
|
706
|
+
"envWizard": {
|
|
707
|
+
"title": "Configuración de entorno Compose",
|
|
708
|
+
"hint": "Configura la receta, las comprobaciones previas y el gestor para que el Deployer aprovisione este stack.",
|
|
709
|
+
"open": "Abrir asistente"
|
|
700
710
|
}
|
|
701
711
|
},
|
|
702
712
|
"agentConfig": {
|
|
@@ -4243,5 +4253,79 @@
|
|
|
4243
4253
|
"defaultPipelineField": "Pipeline por defecto",
|
|
4244
4254
|
"failed": "No se pudo actualizar la iniciativa"
|
|
4245
4255
|
}
|
|
4256
|
+
},
|
|
4257
|
+
"environmentWizard": {
|
|
4258
|
+
"title": "Configurar un entorno de pruebas",
|
|
4259
|
+
"subtitle": "Detecta, revisa y guarda una receta de Docker Compose para que el Deployer la aprovisione.",
|
|
4260
|
+
"recommended": "recomendado",
|
|
4261
|
+
"steps": {
|
|
4262
|
+
"pick": "Elegir servicio",
|
|
4263
|
+
"review": "Revisar receta",
|
|
4264
|
+
"preflight": "Comprobaciones",
|
|
4265
|
+
"save": "Guardar"
|
|
4266
|
+
},
|
|
4267
|
+
"pick": {
|
|
4268
|
+
"intro": "Elige el servicio para el que configurar un entorno de Docker Compose.",
|
|
4269
|
+
"empty": "Aún no hay servicios. Añade uno primero."
|
|
4270
|
+
},
|
|
4271
|
+
"review": {
|
|
4272
|
+
"detectHint": "Detectado del repositorio. No se aplica nada hasta que guardes.",
|
|
4273
|
+
"detect": "Volver a detectar",
|
|
4274
|
+
"noRepo": "Este servicio no tiene repositorio vinculado, así que no puede detectarse.",
|
|
4275
|
+
"detectError": "La detección falló. Revisa la conexión del repositorio e inténtalo de nuevo.",
|
|
4276
|
+
"provenanceTitle": "De dónde viene cada campo",
|
|
4277
|
+
"service": "Servicio Compose expuesto",
|
|
4278
|
+
"servicePlaceholder": "p. ej. app",
|
|
4279
|
+
"port": "Puerto expuesto",
|
|
4280
|
+
"composeFiles": "Archivos Compose",
|
|
4281
|
+
"profiles": "Perfiles",
|
|
4282
|
+
"seedDumps": "Volcados de datos",
|
|
4283
|
+
"seedAdd": "Añadir paso de carga",
|
|
4284
|
+
"seedAdded": "Añadido",
|
|
4285
|
+
"rawEditor": "Editar receta en bruto",
|
|
4286
|
+
"rawApply": "Aplicar"
|
|
4287
|
+
},
|
|
4288
|
+
"analysis": {
|
|
4289
|
+
"title": "Análisis profundo",
|
|
4290
|
+
"hint": "Ejecuta el analista de entorno para redactar pasos de configuración y comprobaciones de salud desde el repositorio.",
|
|
4291
|
+
"run": "Ejecutar análisis",
|
|
4292
|
+
"unavailable": "El análisis profundo necesita un repositorio vinculado y la canalización de análisis.",
|
|
4293
|
+
"failed": "La ejecución del análisis falló.",
|
|
4294
|
+
"apply": "Aplicar borrador del analista"
|
|
4295
|
+
},
|
|
4296
|
+
"field": {
|
|
4297
|
+
"composeFiles": "Archivos Compose",
|
|
4298
|
+
"composeProfiles": "Perfiles",
|
|
4299
|
+
"envFiles": "Archivos de entorno",
|
|
4300
|
+
"externalNetworks": "Redes externas",
|
|
4301
|
+
"sharedStackRefs": "Stacks compartidos",
|
|
4302
|
+
"prerequisites": "Comprobaciones previas",
|
|
4303
|
+
"setupSteps": "Pasos de configuración",
|
|
4304
|
+
"healthGate": "Comprobación de salud",
|
|
4305
|
+
"teardownSteps": "Pasos de desmontaje"
|
|
4306
|
+
},
|
|
4307
|
+
"origin": {
|
|
4308
|
+
"detector": "detectado",
|
|
4309
|
+
"analyst": "analista",
|
|
4310
|
+
"both": "detectado + analista"
|
|
4311
|
+
},
|
|
4312
|
+
"preflight": {
|
|
4313
|
+
"intro": "Comprueba los requisitos de la máquina antes de aprovisionar.",
|
|
4314
|
+
"run": "Ejecutar comprobaciones",
|
|
4315
|
+
"none": "Esta receta no declara comprobaciones previas.",
|
|
4316
|
+
"unavailable": "Las comprobaciones previas se ejecutan en la máquina local y no están disponibles en este despliegue.",
|
|
4317
|
+
"optional": "opcional"
|
|
4318
|
+
},
|
|
4319
|
+
"save": {
|
|
4320
|
+
"handlerLabel": "Etiqueta del gestor",
|
|
4321
|
+
"handlerHint": "El gestor de Docker Compose del espacio de trabajo que el Deployer usa para aprovisionar este stack.",
|
|
4322
|
+
"summary": "Guarda una receta de Docker Compose en \"{frame}\" (exponiendo el servicio \"{service}\") y registra el gestor del espacio de trabajo.",
|
|
4323
|
+
"saved": "Guardado. El Deployer aprovisionará este stack cuando una canalización lo ejecute.",
|
|
4324
|
+
"save": "Guardar configuración"
|
|
4325
|
+
},
|
|
4326
|
+
"trial": {
|
|
4327
|
+
"hint": "Opcionalmente, aprovisiona este entorno ahora para probar la receta.",
|
|
4328
|
+
"run": "Aprovisionamiento de prueba"
|
|
4329
|
+
}
|
|
4246
4330
|
}
|
|
4247
4331
|
}
|
package/i18n/locales/fr.json
CHANGED
|
@@ -54,7 +54,10 @@
|
|
|
54
54
|
"cleared": "{name} effacé",
|
|
55
55
|
"destroyed": "{name} détruit"
|
|
56
56
|
},
|
|
57
|
-
"undo": "Annuler"
|
|
57
|
+
"undo": "Annuler",
|
|
58
|
+
"back": "Retour",
|
|
59
|
+
"next": "Suivant",
|
|
60
|
+
"done": "Terminé"
|
|
58
61
|
},
|
|
59
62
|
"nav": {
|
|
60
63
|
"menu": "Menu de navigation",
|
|
@@ -75,7 +78,8 @@
|
|
|
75
78
|
"workspaceSettings": "Paramètres de l’espace de travail",
|
|
76
79
|
"modelConfiguration": "Configuration du modèle",
|
|
77
80
|
"accountSettings": "Paramètres du compte",
|
|
78
|
-
"infrastructure": "Infrastructure"
|
|
81
|
+
"infrastructure": "Infrastructure",
|
|
82
|
+
"environmentSetup": "Configuration d'environnement"
|
|
79
83
|
},
|
|
80
84
|
"board": {
|
|
81
85
|
"toast": {
|
|
@@ -461,6 +465,7 @@
|
|
|
461
465
|
}
|
|
462
466
|
},
|
|
463
467
|
"inspector": {
|
|
468
|
+
"detectRepoUnresolved": "Le dépôt de ce bloc ne figure pas parmi les dépôts GitHub connectés et ne peut donc pas être lu. Connectez ou synchronisez GitHub pour ce dépôt, puis réessayez.",
|
|
464
469
|
"container": {
|
|
465
470
|
"title": "Contenu",
|
|
466
471
|
"hint": "Les modules et les tâches contenus dans ce bloc. Cliquez sur une entrée pour la sélectionner sur le tableau.",
|
|
@@ -697,6 +702,11 @@
|
|
|
697
702
|
"succeeded": "Manifeste généré et poussé.",
|
|
698
703
|
"failed": "La génération du manifeste a échoué. Réessayez depuis la fenêtre Infrastructure."
|
|
699
704
|
}
|
|
705
|
+
},
|
|
706
|
+
"envWizard": {
|
|
707
|
+
"title": "Configuration d'environnement Compose",
|
|
708
|
+
"hint": "Configurez la recette, les vérifications préalables et le gestionnaire pour que le Deployer provisionne cette stack.",
|
|
709
|
+
"open": "Ouvrir l'assistant"
|
|
700
710
|
}
|
|
701
711
|
},
|
|
702
712
|
"agentConfig": {
|
|
@@ -4243,5 +4253,79 @@
|
|
|
4243
4253
|
"defaultPipelineField": "Pipeline par defaut",
|
|
4244
4254
|
"failed": "Impossible de mettre a jour l'initiative"
|
|
4245
4255
|
}
|
|
4256
|
+
},
|
|
4257
|
+
"environmentWizard": {
|
|
4258
|
+
"title": "Configurer un environnement de test",
|
|
4259
|
+
"subtitle": "Détectez, vérifiez et enregistrez une recette Docker Compose pour que le Deployer la provisionne.",
|
|
4260
|
+
"recommended": "recommandé",
|
|
4261
|
+
"steps": {
|
|
4262
|
+
"pick": "Choisir le service",
|
|
4263
|
+
"review": "Vérifier la recette",
|
|
4264
|
+
"preflight": "Vérifications",
|
|
4265
|
+
"save": "Enregistrer"
|
|
4266
|
+
},
|
|
4267
|
+
"pick": {
|
|
4268
|
+
"intro": "Choisissez le service pour lequel configurer un environnement Docker Compose.",
|
|
4269
|
+
"empty": "Aucun service pour l'instant. Ajoutez-en un d'abord."
|
|
4270
|
+
},
|
|
4271
|
+
"review": {
|
|
4272
|
+
"detectHint": "Détecté depuis le dépôt. Rien n'est appliqué avant l'enregistrement.",
|
|
4273
|
+
"detect": "Redétecter",
|
|
4274
|
+
"noRepo": "Ce service n'a pas de dépôt lié, la détection est impossible.",
|
|
4275
|
+
"detectError": "La détection a échoué. Vérifiez la connexion au dépôt et réessayez.",
|
|
4276
|
+
"provenanceTitle": "D'où vient chaque champ",
|
|
4277
|
+
"service": "Service Compose exposé",
|
|
4278
|
+
"servicePlaceholder": "p. ex. app",
|
|
4279
|
+
"port": "Port exposé",
|
|
4280
|
+
"composeFiles": "Fichiers Compose",
|
|
4281
|
+
"profiles": "Profils",
|
|
4282
|
+
"seedDumps": "Jeux de données",
|
|
4283
|
+
"seedAdd": "Ajouter une étape d'amorçage",
|
|
4284
|
+
"seedAdded": "Ajouté",
|
|
4285
|
+
"rawEditor": "Modifier la recette brute",
|
|
4286
|
+
"rawApply": "Appliquer"
|
|
4287
|
+
},
|
|
4288
|
+
"analysis": {
|
|
4289
|
+
"title": "Analyse approfondie",
|
|
4290
|
+
"hint": "Lancez l'analyste d'environnement pour ébaucher les étapes de configuration et les contrôles de santé depuis le dépôt.",
|
|
4291
|
+
"run": "Lancer l'analyse",
|
|
4292
|
+
"unavailable": "L'analyse approfondie nécessite un dépôt lié et le pipeline d'analyse.",
|
|
4293
|
+
"failed": "L'exécution de l'analyse a échoué.",
|
|
4294
|
+
"apply": "Appliquer l'ébauche de l'analyste"
|
|
4295
|
+
},
|
|
4296
|
+
"field": {
|
|
4297
|
+
"composeFiles": "Fichiers Compose",
|
|
4298
|
+
"composeProfiles": "Profils",
|
|
4299
|
+
"envFiles": "Fichiers d'environnement",
|
|
4300
|
+
"externalNetworks": "Réseaux externes",
|
|
4301
|
+
"sharedStackRefs": "Stacks partagées",
|
|
4302
|
+
"prerequisites": "Vérifications préalables",
|
|
4303
|
+
"setupSteps": "Étapes de configuration",
|
|
4304
|
+
"healthGate": "Contrôle de santé",
|
|
4305
|
+
"teardownSteps": "Étapes de démontage"
|
|
4306
|
+
},
|
|
4307
|
+
"origin": {
|
|
4308
|
+
"detector": "détecté",
|
|
4309
|
+
"analyst": "analyste",
|
|
4310
|
+
"both": "détecté + analyste"
|
|
4311
|
+
},
|
|
4312
|
+
"preflight": {
|
|
4313
|
+
"intro": "Vérifiez les prérequis de la machine avant le provisionnement.",
|
|
4314
|
+
"run": "Lancer les vérifications",
|
|
4315
|
+
"none": "Cette recette ne déclare aucune vérification préalable.",
|
|
4316
|
+
"unavailable": "Les vérifications préalables s'exécutent sur la machine locale et ne sont pas disponibles sur ce déploiement.",
|
|
4317
|
+
"optional": "facultatif"
|
|
4318
|
+
},
|
|
4319
|
+
"save": {
|
|
4320
|
+
"handlerLabel": "Libellé du gestionnaire",
|
|
4321
|
+
"handlerHint": "Le gestionnaire Docker Compose de l'espace de travail que le Deployer utilise pour provisionner cette stack.",
|
|
4322
|
+
"summary": "Enregistre une recette Docker Compose sur « {frame} » (exposant le service « {service} ») et enregistre le gestionnaire de l'espace de travail.",
|
|
4323
|
+
"saved": "Enregistré. Le Deployer provisionnera cette stack lors de l'exécution d'un pipeline.",
|
|
4324
|
+
"save": "Enregistrer la configuration"
|
|
4325
|
+
},
|
|
4326
|
+
"trial": {
|
|
4327
|
+
"hint": "Provisionnez éventuellement cet environnement maintenant pour tester la recette.",
|
|
4328
|
+
"run": "Provisionnement d'essai"
|
|
4329
|
+
}
|
|
4246
4330
|
}
|
|
4247
4331
|
}
|
package/i18n/locales/he.json
CHANGED
|
@@ -54,7 +54,10 @@
|
|
|
54
54
|
"cleared": "{name} נוקה",
|
|
55
55
|
"destroyed": "{name} הושמד"
|
|
56
56
|
},
|
|
57
|
-
"undo": "בטל"
|
|
57
|
+
"undo": "בטל",
|
|
58
|
+
"back": "חזרה",
|
|
59
|
+
"next": "הבא",
|
|
60
|
+
"done": "סיום"
|
|
58
61
|
},
|
|
59
62
|
"nav": {
|
|
60
63
|
"menu": "תפריט ניווט",
|
|
@@ -75,7 +78,8 @@
|
|
|
75
78
|
"configuration": "תצורה",
|
|
76
79
|
"workspaceSettings": "הגדרות סביבת עבודה",
|
|
77
80
|
"modelConfiguration": "תצורת מודל",
|
|
78
|
-
"accountSettings": "הגדרות חשבון"
|
|
81
|
+
"accountSettings": "הגדרות חשבון",
|
|
82
|
+
"environmentSetup": "הגדרת סביבה"
|
|
79
83
|
},
|
|
80
84
|
"board": {
|
|
81
85
|
"toast": {
|
|
@@ -461,6 +465,7 @@
|
|
|
461
465
|
}
|
|
462
466
|
},
|
|
463
467
|
"inspector": {
|
|
468
|
+
"detectRepoUnresolved": "מאגר הקוד של בלוק זה אינו נמצא בין מאגרי GitHub המחוברים, ולכן לא ניתן לקרוא אותו. חבר או סנכרן את GitHub עבורו ונסה שוב.",
|
|
464
469
|
"container": {
|
|
465
470
|
"title": "תוכן",
|
|
466
471
|
"hint": "המודולים והמשימות בתוך בלוק זה. לחץ על פריט כדי לבחור אותו בלוח.",
|
|
@@ -697,6 +702,11 @@
|
|
|
697
702
|
"succeeded": "המניפסט נוצר ונדחף.",
|
|
698
703
|
"failed": "הפקת המניפסט נכשלה. נסה שוב מחלון התשתית."
|
|
699
704
|
}
|
|
705
|
+
},
|
|
706
|
+
"envWizard": {
|
|
707
|
+
"title": "הגדרת סביבת Compose",
|
|
708
|
+
"hint": "הגדירו את המתכון, בדיקות המוכנות והמטפל כדי שה-Deployer יקצה את הסטאק הזה.",
|
|
709
|
+
"open": "פתיחת אשף"
|
|
700
710
|
}
|
|
701
711
|
},
|
|
702
712
|
"agentConfig": {
|
|
@@ -4254,5 +4264,79 @@
|
|
|
4254
4264
|
"defaultPipelineField": "צינור ברירת מחדל",
|
|
4255
4265
|
"failed": "לא ניתן לעדכן את היוזמה"
|
|
4256
4266
|
}
|
|
4267
|
+
},
|
|
4268
|
+
"environmentWizard": {
|
|
4269
|
+
"title": "הגדרת סביבת בדיקות",
|
|
4270
|
+
"subtitle": "זהו, סקרו ושמרו מתכון Docker Compose כדי שה-Deployer יקצה אותו.",
|
|
4271
|
+
"recommended": "מומלץ",
|
|
4272
|
+
"steps": {
|
|
4273
|
+
"pick": "בחירת שירות",
|
|
4274
|
+
"review": "סקירת מתכון",
|
|
4275
|
+
"preflight": "בדיקות מוכנות",
|
|
4276
|
+
"save": "שמירה"
|
|
4277
|
+
},
|
|
4278
|
+
"pick": {
|
|
4279
|
+
"intro": "בחרו את השירות שעבורו להגדיר סביבת Docker Compose.",
|
|
4280
|
+
"empty": "אין שירותים עדיין. הוסיפו שירות תחילה."
|
|
4281
|
+
},
|
|
4282
|
+
"review": {
|
|
4283
|
+
"detectHint": "זוהה מהמאגר. שום דבר לא מוחל עד שתשמרו.",
|
|
4284
|
+
"detect": "זיהוי מחדש",
|
|
4285
|
+
"noRepo": "לשירות זה אין מאגר מקושר, ולכן הזיהוי אינו יכול לרוץ.",
|
|
4286
|
+
"detectError": "הזיהוי נכשל. בדקו את חיבור המאגר ונסו שוב.",
|
|
4287
|
+
"provenanceTitle": "מהיכן הגיע כל שדה",
|
|
4288
|
+
"service": "שירות Compose חשוף",
|
|
4289
|
+
"servicePlaceholder": "למשל app",
|
|
4290
|
+
"port": "פורט חשוף",
|
|
4291
|
+
"composeFiles": "קובצי Compose",
|
|
4292
|
+
"profiles": "פרופילים",
|
|
4293
|
+
"seedDumps": "קובצי זריעה",
|
|
4294
|
+
"seedAdd": "הוספת שלב זריעה",
|
|
4295
|
+
"seedAdded": "נוסף",
|
|
4296
|
+
"rawEditor": "עריכת מתכון גולמי",
|
|
4297
|
+
"rawApply": "החלה"
|
|
4298
|
+
},
|
|
4299
|
+
"analysis": {
|
|
4300
|
+
"title": "ניתוח מעמיק",
|
|
4301
|
+
"hint": "הריצו את מנתח הסביבה כדי לנסח שלבי הגדרה ובדיקות תקינות מהמאגר.",
|
|
4302
|
+
"run": "הרצת ניתוח",
|
|
4303
|
+
"unavailable": "ניתוח מעמיק דורש מאגר מקושר ואת צינור הניתוח.",
|
|
4304
|
+
"failed": "הרצת הניתוח נכשלה.",
|
|
4305
|
+
"apply": "החלת טיוטת המנתח"
|
|
4306
|
+
},
|
|
4307
|
+
"field": {
|
|
4308
|
+
"composeFiles": "קובצי Compose",
|
|
4309
|
+
"composeProfiles": "פרופילים",
|
|
4310
|
+
"envFiles": "קובצי סביבה",
|
|
4311
|
+
"externalNetworks": "רשתות חיצוניות",
|
|
4312
|
+
"sharedStackRefs": "סטאקים משותפים",
|
|
4313
|
+
"prerequisites": "בדיקות מוכנות",
|
|
4314
|
+
"setupSteps": "שלבי הגדרה",
|
|
4315
|
+
"healthGate": "בדיקת תקינות",
|
|
4316
|
+
"teardownSteps": "שלבי פירוק"
|
|
4317
|
+
},
|
|
4318
|
+
"origin": {
|
|
4319
|
+
"detector": "זוהה",
|
|
4320
|
+
"analyst": "מנתח",
|
|
4321
|
+
"both": "זוהה + מנתח"
|
|
4322
|
+
},
|
|
4323
|
+
"preflight": {
|
|
4324
|
+
"intro": "בדקו את דרישות המכונה לפני ההקצאה.",
|
|
4325
|
+
"run": "הרצת בדיקות",
|
|
4326
|
+
"none": "מתכון זה אינו מצהיר על בדיקות מוכנות.",
|
|
4327
|
+
"unavailable": "בדיקות המוכנות רצות על המכונה המקומית ואינן זמינות בפריסה זו.",
|
|
4328
|
+
"optional": "רשות"
|
|
4329
|
+
},
|
|
4330
|
+
"save": {
|
|
4331
|
+
"handlerLabel": "תווית המטפל",
|
|
4332
|
+
"handlerHint": "מטפל ה-Docker Compose של סביבת העבודה שה-Deployer משתמש בו כדי להקצות את הסטאק הזה.",
|
|
4333
|
+
"summary": "שומר מתכון Docker Compose על \"{frame}\" (חושף את השירות \"{service}\") ורושם את המטפל של סביבת העבודה.",
|
|
4334
|
+
"saved": "נשמר. ה-Deployer יקצה את הסטאק הזה כאשר צינור יריץ אותו.",
|
|
4335
|
+
"save": "שמירת תצורה"
|
|
4336
|
+
},
|
|
4337
|
+
"trial": {
|
|
4338
|
+
"hint": "אפשר להקצות סביבה זו כעת כדי לבדוק את המתכון.",
|
|
4339
|
+
"run": "הקצאת ניסיון"
|
|
4340
|
+
}
|
|
4257
4341
|
}
|
|
4258
4342
|
}
|
package/i18n/locales/ja.json
CHANGED
|
@@ -54,7 +54,10 @@
|
|
|
54
54
|
"cleared": "{name} をクリアしました",
|
|
55
55
|
"destroyed": "{name} を破棄しました"
|
|
56
56
|
},
|
|
57
|
-
"undo": "元に戻す"
|
|
57
|
+
"undo": "元に戻す",
|
|
58
|
+
"back": "戻る",
|
|
59
|
+
"next": "次へ",
|
|
60
|
+
"done": "完了"
|
|
58
61
|
},
|
|
59
62
|
"nav": {
|
|
60
63
|
"menu": "ナビゲーションメニュー",
|
|
@@ -75,7 +78,8 @@
|
|
|
75
78
|
"configuration": "設定",
|
|
76
79
|
"workspaceSettings": "ワークスペース設定",
|
|
77
80
|
"modelConfiguration": "モデル設定",
|
|
78
|
-
"accountSettings": "アカウント設定"
|
|
81
|
+
"accountSettings": "アカウント設定",
|
|
82
|
+
"environmentSetup": "環境セットアップ"
|
|
79
83
|
},
|
|
80
84
|
"board": {
|
|
81
85
|
"toast": {
|
|
@@ -461,6 +465,7 @@
|
|
|
461
465
|
}
|
|
462
466
|
},
|
|
463
467
|
"inspector": {
|
|
468
|
+
"detectRepoUnresolved": "このブロックのリポジトリは接続済みの GitHub リポジトリに含まれていないため、読み取れません。GitHub を接続または同期してから、もう一度お試しください。",
|
|
464
469
|
"container": {
|
|
465
470
|
"title": "内容",
|
|
466
471
|
"hint": "このブロック内のモジュールとタスク。エントリをクリックするとボード上で選択されます。",
|
|
@@ -697,6 +702,11 @@
|
|
|
697
702
|
"succeeded": "マニフェストを生成してプッシュしました。",
|
|
698
703
|
"failed": "マニフェスト生成の実行に失敗しました。インフラウィンドウから再試行してください。"
|
|
699
704
|
}
|
|
705
|
+
},
|
|
706
|
+
"envWizard": {
|
|
707
|
+
"title": "Compose 環境のセットアップ",
|
|
708
|
+
"hint": "レシピ・プリフライト・ハンドラーを設定して、Deployer がこのスタックをプロビジョニングできるようにします。",
|
|
709
|
+
"open": "ウィザードを開く"
|
|
700
710
|
}
|
|
701
711
|
},
|
|
702
712
|
"agentConfig": {
|
|
@@ -4255,5 +4265,79 @@
|
|
|
4255
4265
|
"defaultPipelineField": "既定のパイプライン",
|
|
4256
4266
|
"failed": "イニシアチブを更新できませんでした"
|
|
4257
4267
|
}
|
|
4268
|
+
},
|
|
4269
|
+
"environmentWizard": {
|
|
4270
|
+
"title": "テスト環境をセットアップ",
|
|
4271
|
+
"subtitle": "Docker Compose レシピを検出・確認・保存して、Deployer がプロビジョニングできるようにします。",
|
|
4272
|
+
"recommended": "推奨",
|
|
4273
|
+
"steps": {
|
|
4274
|
+
"pick": "サービス選択",
|
|
4275
|
+
"review": "レシピ確認",
|
|
4276
|
+
"preflight": "プリフライト",
|
|
4277
|
+
"save": "保存"
|
|
4278
|
+
},
|
|
4279
|
+
"pick": {
|
|
4280
|
+
"intro": "Docker Compose 環境をセットアップするサービスを選択します。",
|
|
4281
|
+
"empty": "サービスがまだありません。まずサービスを追加してください。"
|
|
4282
|
+
},
|
|
4283
|
+
"review": {
|
|
4284
|
+
"detectHint": "リポジトリから検出しました。保存するまで何も適用されません。",
|
|
4285
|
+
"detect": "再検出",
|
|
4286
|
+
"noRepo": "このサービスにはリンクされたリポジトリがないため、検出できません。",
|
|
4287
|
+
"detectError": "検出に失敗しました。リポジトリ接続を確認して再試行してください。",
|
|
4288
|
+
"provenanceTitle": "各フィールドの出所",
|
|
4289
|
+
"service": "公開する Compose サービス",
|
|
4290
|
+
"servicePlaceholder": "例: app",
|
|
4291
|
+
"port": "公開ポート",
|
|
4292
|
+
"composeFiles": "Compose ファイル",
|
|
4293
|
+
"profiles": "プロファイル",
|
|
4294
|
+
"seedDumps": "シードダンプ",
|
|
4295
|
+
"seedAdd": "シードステップを追加",
|
|
4296
|
+
"seedAdded": "追加済み",
|
|
4297
|
+
"rawEditor": "生のレシピを編集",
|
|
4298
|
+
"rawApply": "適用"
|
|
4299
|
+
},
|
|
4300
|
+
"analysis": {
|
|
4301
|
+
"title": "詳細分析",
|
|
4302
|
+
"hint": "環境アナリストを実行して、リポジトリからセットアップ手順とヘルスゲートを下書きします。",
|
|
4303
|
+
"run": "分析を実行",
|
|
4304
|
+
"unavailable": "詳細分析にはリンクされたリポジトリと分析パイプラインが必要です。",
|
|
4305
|
+
"failed": "分析の実行に失敗しました。",
|
|
4306
|
+
"apply": "アナリストの下書きを適用"
|
|
4307
|
+
},
|
|
4308
|
+
"field": {
|
|
4309
|
+
"composeFiles": "Compose ファイル",
|
|
4310
|
+
"composeProfiles": "プロファイル",
|
|
4311
|
+
"envFiles": "環境ファイル",
|
|
4312
|
+
"externalNetworks": "外部ネットワーク",
|
|
4313
|
+
"sharedStackRefs": "共有スタック",
|
|
4314
|
+
"prerequisites": "プリフライト",
|
|
4315
|
+
"setupSteps": "セットアップ手順",
|
|
4316
|
+
"healthGate": "ヘルスゲート",
|
|
4317
|
+
"teardownSteps": "ティアダウン手順"
|
|
4318
|
+
},
|
|
4319
|
+
"origin": {
|
|
4320
|
+
"detector": "検出",
|
|
4321
|
+
"analyst": "アナリスト",
|
|
4322
|
+
"both": "検出 + アナリスト"
|
|
4323
|
+
},
|
|
4324
|
+
"preflight": {
|
|
4325
|
+
"intro": "プロビジョニング前にマシンの前提条件を確認します。",
|
|
4326
|
+
"run": "チェックを実行",
|
|
4327
|
+
"none": "このレシピにはプリフライトチェックが宣言されていません。",
|
|
4328
|
+
"unavailable": "プリフライトチェックはローカルマシンで実行され、このデプロイでは利用できません。",
|
|
4329
|
+
"optional": "任意"
|
|
4330
|
+
},
|
|
4331
|
+
"save": {
|
|
4332
|
+
"handlerLabel": "ハンドラーのラベル",
|
|
4333
|
+
"handlerHint": "Deployer がこのスタックのプロビジョニングに使う、ワークスペースの Docker Compose ハンドラー。",
|
|
4334
|
+
"summary": "「{frame}」に Docker Compose レシピを保存し(サービス「{service}」を公開)、ワークスペースハンドラーを登録します。",
|
|
4335
|
+
"saved": "保存しました。パイプラインが実行されると Deployer がこのスタックをプロビジョニングします。",
|
|
4336
|
+
"save": "設定を保存"
|
|
4337
|
+
},
|
|
4338
|
+
"trial": {
|
|
4339
|
+
"hint": "レシピをテストするため、この環境を今すぐプロビジョニングすることもできます。",
|
|
4340
|
+
"run": "お試しプロビジョニング"
|
|
4341
|
+
}
|
|
4258
4342
|
}
|
|
4259
4343
|
}
|