@cat-factory/app 0.72.0 → 0.74.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/board/nodes/TaskCard.vue +12 -2
- package/app/components/bootstrap/BootstrapModal.vue +23 -7
- package/app/components/brainstorm/BrainstormWindow.vue +2 -0
- package/app/components/clarity/ClarityReviewWindow.vue +2 -0
- package/app/components/consensus/ConsensusSessionWindow.vue +2 -0
- package/app/components/focus/BlockFocusView.vue +2 -0
- package/app/components/followUp/FollowUpWindow.vue +2 -0
- package/app/components/gates/GateResultView.vue +2 -0
- package/app/components/github/AddServiceFromRepoModal.vue +54 -85
- package/app/components/humanTest/HumanTestWindow.vue +2 -0
- package/app/components/layout/ConnectionStatusBanner.vue +81 -0
- package/app/components/layout/NotificationsInbox.vue +15 -0
- package/app/components/panels/GenericStructuredResultView.vue +2 -0
- package/app/components/panels/InspectorPanel.vue +30 -1
- package/app/components/panels/inspector/TaskExecution.vue +25 -1
- package/app/components/pipeline/PipelineBuilder.vue +110 -7
- package/app/components/requirements/RequirementsReviewWindow.vue +2 -0
- package/app/components/spec/ServiceSpecWindow.vue +2 -0
- package/app/components/testing/TestReportWindow.vue +91 -0
- package/app/composables/api/github.ts +8 -3
- package/app/composables/useKeyboardShortcuts.ts +10 -2
- package/app/pages/index.vue +6 -4
- package/app/stores/board.spec.ts +58 -1
- package/app/stores/board.ts +59 -15
- package/app/stores/brainstorm.spec.ts +35 -0
- package/app/stores/brainstorm.ts +11 -2
- package/app/stores/clarity.spec.ts +33 -0
- package/app/stores/clarity.ts +11 -2
- package/app/stores/execution.spec.ts +71 -13
- package/app/stores/execution.ts +44 -6
- package/app/stores/github.ts +12 -3
- package/app/stores/pipelines.ts +53 -0
- package/app/stores/recurringPipelines.ts +5 -1
- package/app/stores/requirements.spec.ts +21 -0
- package/app/stores/requirements.ts +11 -2
- package/app/stores/workspace.ts +1 -1
- package/app/utils/catalog.ts +9 -0
- package/i18n/locales/en.json +56 -5
- package/i18n/locales/es.json +56 -5
- package/i18n/locales/fr.json +56 -5
- package/i18n/locales/he.json +56 -5
- package/i18n/locales/ja.json +56 -5
- package/i18n/locales/pl.json +56 -5
- package/i18n/locales/tr.json +56 -5
- package/i18n/locales/uk.json +56 -5
- package/package.json +2 -2
package/i18n/locales/es.json
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
+
"app": {
|
|
3
|
+
"loading": "Cargando…",
|
|
4
|
+
"loadingBoard": "Cargando tablero…",
|
|
5
|
+
"backendUnreachable": "No se puede conectar con el backend",
|
|
6
|
+
"reconnecting": "Reconectando…"
|
|
7
|
+
},
|
|
2
8
|
"language": {
|
|
3
9
|
"switcher": "Idioma",
|
|
4
10
|
"warning": {
|
|
@@ -68,6 +74,14 @@
|
|
|
68
74
|
"infrastructure": "Infraestructura"
|
|
69
75
|
},
|
|
70
76
|
"board": {
|
|
77
|
+
"toast": {
|
|
78
|
+
"updateFailed": "No se pudieron guardar los cambios",
|
|
79
|
+
"epicFailed": "No se pudo cambiar la épica",
|
|
80
|
+
"moveFailed": "No se pudo mover",
|
|
81
|
+
"deleteFailed": "No se pudo eliminar",
|
|
82
|
+
"linkFailed": "No se pudieron vincular las tareas",
|
|
83
|
+
"recurringDeleteFailed": "No se pudo eliminar el pipeline recurrente"
|
|
84
|
+
},
|
|
71
85
|
"repoTypes": {
|
|
72
86
|
"service": "Servicio",
|
|
73
87
|
"frontend": "Frontend",
|
|
@@ -260,6 +274,11 @@
|
|
|
260
274
|
"openPrOnGithub": "Abrir {pr} en GitHub",
|
|
261
275
|
"review": "Revisar",
|
|
262
276
|
"merge": "Fusionar",
|
|
277
|
+
"mergeConfirm": {
|
|
278
|
+
"title": "¿Fusionar esta pull request?",
|
|
279
|
+
"body": "Esto fusiona la PR en su rama base y completa la tarea. Esto no se puede deshacer.",
|
|
280
|
+
"confirm": "Fusionar"
|
|
281
|
+
},
|
|
263
282
|
"implemented": "implementada",
|
|
264
283
|
"module": "Módulo: {name}",
|
|
265
284
|
"buildSteps": "Pasos de build",
|
|
@@ -601,6 +620,16 @@
|
|
|
601
620
|
"stopTooltip": "Detener la ejecución pero conservarla (legible y reintentable)",
|
|
602
621
|
"reset": "Restablecer",
|
|
603
622
|
"resetTooltip": "Descartar esta ejecución y restablecer la tarea a planificada",
|
|
623
|
+
"resetConfirm": {
|
|
624
|
+
"title": "¿Descartar esta ejecución?",
|
|
625
|
+
"body": "Esto elimina la ejecución y devuelve la tarea a planificada. Esto no se puede deshacer.",
|
|
626
|
+
"confirm": "Descartar ejecución"
|
|
627
|
+
},
|
|
628
|
+
"mergeConfirm": {
|
|
629
|
+
"title": "¿Fusionar esta pull request?",
|
|
630
|
+
"body": "Esto fusiona la PR en su rama base y completa la tarea. Esto no se puede deshacer.",
|
|
631
|
+
"confirm": "Fusionar"
|
|
632
|
+
},
|
|
604
633
|
"viewDetailsOutput": "Ver detalles y leer la salida",
|
|
605
634
|
"viewDetails": "Ver detalles del paso",
|
|
606
635
|
"companion": "Acompañante",
|
|
@@ -1200,7 +1229,9 @@
|
|
|
1200
1229
|
},
|
|
1201
1230
|
"toast": {
|
|
1202
1231
|
"acted": "Marcado como resuelto",
|
|
1203
|
-
"dismissed": "Descartado"
|
|
1232
|
+
"dismissed": "Descartado",
|
|
1233
|
+
"actFailed": "No se pudo completar esa acción",
|
|
1234
|
+
"dismissFailed": "No se pudo descartar"
|
|
1204
1235
|
}
|
|
1205
1236
|
},
|
|
1206
1237
|
"aiProvidersBanner": {
|
|
@@ -2601,6 +2632,10 @@
|
|
|
2601
2632
|
"consensusRevertTooltip": "Consenso activado. Haz clic para volver a un solo agente.",
|
|
2602
2633
|
"followUpEnableTooltip": "Compañero de seguimiento desactivado. Haz clic para activarlo (Coder detecta cabos sueltos / preguntas).",
|
|
2603
2634
|
"followUpDisableTooltip": "Compañero de seguimiento activado. Coder detecta cabos sueltos / subtareas / preguntas; haz clic para desactivarlo.",
|
|
2635
|
+
"testerQualityEnableTooltip": "Compañero de calidad de pruebas desactivado. Haz clic para activarlo (audita la cobertura del informe y reitera el Tester ante lagunas).",
|
|
2636
|
+
"testerQualityDisableTooltip": "Compañero de calidad de pruebas activado. Audita la cobertura del informe antes de la aprobación y reitera el Tester ante lagunas; haz clic para desactivarlo.",
|
|
2637
|
+
"testerQualityLabel": "Compañero de calidad de pruebas",
|
|
2638
|
+
"testerQualityGateTooltip": "Ejecutar la auditoría de calidad solo cuando la estimación de la tarea supere un umbral (requiere un Estimador de Tareas antes)",
|
|
2604
2639
|
"moveUp": "Subir el paso",
|
|
2605
2640
|
"moveDown": "Bajar el paso",
|
|
2606
2641
|
"removeStep": "Quitar este paso del pipeline",
|
|
@@ -3242,6 +3277,15 @@
|
|
|
3242
3277
|
"failed": "Falló",
|
|
3243
3278
|
"addressed": "Abordando"
|
|
3244
3279
|
},
|
|
3280
|
+
"quality": {
|
|
3281
|
+
"heading": "Revisión de cobertura",
|
|
3282
|
+
"reruns": "Reejecuciones del Tester impulsadas por calidad",
|
|
3283
|
+
"rerunCount": "{attempts}/{max} reejecuciones",
|
|
3284
|
+
"exceeded": "Presupuesto agotado",
|
|
3285
|
+
"adequate": "Cobertura adecuada",
|
|
3286
|
+
"inadequate": "Se encontraron lagunas de cobertura",
|
|
3287
|
+
"gaps": "Lagunas por cerrar"
|
|
3288
|
+
},
|
|
3245
3289
|
"empty": {
|
|
3246
3290
|
"title": "Aún no hay informe de pruebas.",
|
|
3247
3291
|
"hint": "El informe aparece cuando el Tester termina una pasada. Mientras se ejecuta, el paso muestra el progreso en vivo en el tablero."
|
|
@@ -3702,6 +3746,7 @@
|
|
|
3702
3746
|
},
|
|
3703
3747
|
"targetRepo": {
|
|
3704
3748
|
"label": "Nombre del repositorio de destino",
|
|
3749
|
+
"namePlaceholder": "payments-service",
|
|
3705
3750
|
"descWithOwner": "Crea un repositorio nuevo con este nombre bajo {owner} y luego la inicialización hace push a él. Un README, .gitignore o licencia ya creados están bien.",
|
|
3706
3751
|
"descNoOwner": "Crea un repositorio nuevo con este nombre y luego la inicialización hace push a él. Un README, .gitignore o licencia ya creados están bien."
|
|
3707
3752
|
},
|
|
@@ -3717,7 +3762,8 @@
|
|
|
3717
3762
|
},
|
|
3718
3763
|
"description": {
|
|
3719
3764
|
"label": "Descripción",
|
|
3720
|
-
"help": "Resumen opcional de una línea para el repositorio."
|
|
3765
|
+
"help": "Resumen opcional de una línea para el repositorio.",
|
|
3766
|
+
"placeholder": "Gestiona intenciones de pago y reembolsos"
|
|
3721
3767
|
},
|
|
3722
3768
|
"instructions": {
|
|
3723
3769
|
"labelReference": "Instrucciones adicionales para el inicializador",
|
|
@@ -3747,18 +3793,23 @@
|
|
|
3747
3793
|
"add": "Añadir",
|
|
3748
3794
|
"pickRepo": {
|
|
3749
3795
|
"label": "Elige un repositorio de GitHub existente",
|
|
3750
|
-
"description": "Elige un repositorio al que tengas acceso para rellenar su propietario y nombre, o introdúcelos manualmente abajo."
|
|
3796
|
+
"description": "Elige un repositorio al que tengas acceso para rellenar su propietario y nombre, o introdúcelos manualmente abajo.",
|
|
3797
|
+
"placeholder": "owner/name"
|
|
3751
3798
|
},
|
|
3752
3799
|
"name": {
|
|
3753
3800
|
"label": "Nombre",
|
|
3754
|
-
"description": "Una etiqueta descriptiva para esta base."
|
|
3801
|
+
"description": "Una etiqueta descriptiva para esta base.",
|
|
3802
|
+
"placeholder": "Plantilla de servicio"
|
|
3755
3803
|
},
|
|
3756
3804
|
"repoOwner": "Propietario del repositorio",
|
|
3805
|
+
"repoOwnerPlaceholder": "acme",
|
|
3757
3806
|
"repoName": "Nombre del repositorio",
|
|
3807
|
+
"repoNamePlaceholder": "service-template",
|
|
3758
3808
|
"descriptionPlaceholder": "Resumen opcional de esta base",
|
|
3759
3809
|
"defaultInstructions": {
|
|
3760
3810
|
"label": "Instrucciones por defecto del inicializador",
|
|
3761
|
-
"description": "Se anteponen a las instrucciones de cada ejecución siempre que se use esta base."
|
|
3811
|
+
"description": "Se anteponen a las instrucciones de cada ejecución siempre que se use esta base.",
|
|
3812
|
+
"placeholder": "p. ej. mantén la estructura; renombra los paquetes para que coincidan con el nuevo servicio"
|
|
3762
3813
|
}
|
|
3763
3814
|
},
|
|
3764
3815
|
"toast": {
|
package/i18n/locales/fr.json
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
+
"app": {
|
|
3
|
+
"loading": "Chargement…",
|
|
4
|
+
"loadingBoard": "Chargement du tableau…",
|
|
5
|
+
"backendUnreachable": "Impossible de joindre le backend",
|
|
6
|
+
"reconnecting": "Reconnexion…"
|
|
7
|
+
},
|
|
2
8
|
"language": {
|
|
3
9
|
"switcher": "Langue",
|
|
4
10
|
"warning": {
|
|
@@ -68,6 +74,14 @@
|
|
|
68
74
|
"infrastructure": "Infrastructure"
|
|
69
75
|
},
|
|
70
76
|
"board": {
|
|
77
|
+
"toast": {
|
|
78
|
+
"updateFailed": "Impossible d'enregistrer les modifications",
|
|
79
|
+
"epicFailed": "Impossible de changer l'épopée",
|
|
80
|
+
"moveFailed": "Impossible de déplacer",
|
|
81
|
+
"deleteFailed": "Impossible de supprimer",
|
|
82
|
+
"linkFailed": "Impossible de lier les tâches",
|
|
83
|
+
"recurringDeleteFailed": "Impossible de supprimer le pipeline récurrent"
|
|
84
|
+
},
|
|
71
85
|
"repoTypes": {
|
|
72
86
|
"service": "Service",
|
|
73
87
|
"frontend": "Frontend",
|
|
@@ -260,6 +274,11 @@
|
|
|
260
274
|
"openPrOnGithub": "Ouvrir {pr} sur GitHub",
|
|
261
275
|
"review": "Revoir",
|
|
262
276
|
"merge": "Fusionner",
|
|
277
|
+
"mergeConfirm": {
|
|
278
|
+
"title": "Fusionner cette pull request ?",
|
|
279
|
+
"body": "Cela fusionne la PR dans sa branche de base et termine la tâche. Cette action est irréversible.",
|
|
280
|
+
"confirm": "Fusionner"
|
|
281
|
+
},
|
|
263
282
|
"implemented": "implémentée",
|
|
264
283
|
"module": "Module : {name}",
|
|
265
284
|
"buildSteps": "Étapes de build",
|
|
@@ -601,6 +620,16 @@
|
|
|
601
620
|
"stopTooltip": "Arrêter l'exécution mais la conserver (lisible et relançable)",
|
|
602
621
|
"reset": "Réinitialiser",
|
|
603
622
|
"resetTooltip": "Abandonner cette exécution et réinitialiser la tâche à planifiée",
|
|
623
|
+
"resetConfirm": {
|
|
624
|
+
"title": "Abandonner cette exécution ?",
|
|
625
|
+
"body": "Cela supprime l'exécution et ramène la tâche à planifiée. Cette action est irréversible.",
|
|
626
|
+
"confirm": "Abandonner l'exécution"
|
|
627
|
+
},
|
|
628
|
+
"mergeConfirm": {
|
|
629
|
+
"title": "Fusionner cette pull request ?",
|
|
630
|
+
"body": "Cela fusionne la PR dans sa branche de base et termine la tâche. Cette action est irréversible.",
|
|
631
|
+
"confirm": "Fusionner"
|
|
632
|
+
},
|
|
604
633
|
"viewDetailsOutput": "Voir les détails et lire la sortie",
|
|
605
634
|
"viewDetails": "Voir les détails de l'étape",
|
|
606
635
|
"companion": "Compagnon",
|
|
@@ -1200,7 +1229,9 @@
|
|
|
1200
1229
|
},
|
|
1201
1230
|
"toast": {
|
|
1202
1231
|
"acted": "Marqué comme traité",
|
|
1203
|
-
"dismissed": "Ignoré"
|
|
1232
|
+
"dismissed": "Ignoré",
|
|
1233
|
+
"actFailed": "Impossible de terminer cette action",
|
|
1234
|
+
"dismissFailed": "Impossible d'ignorer"
|
|
1204
1235
|
}
|
|
1205
1236
|
},
|
|
1206
1237
|
"aiProvidersBanner": {
|
|
@@ -2601,6 +2632,10 @@
|
|
|
2601
2632
|
"consensusRevertTooltip": "Consensus activé. Cliquez pour revenir à un seul agent.",
|
|
2602
2633
|
"followUpEnableTooltip": "Compagnon de suivi désactivé. Cliquez pour l'activer (Coder repère les points en suspens / questions).",
|
|
2603
2634
|
"followUpDisableTooltip": "Compagnon de suivi activé. Coder repère les points en suspens / sous-tâches / questions ; cliquez pour le désactiver.",
|
|
2635
|
+
"testerQualityEnableTooltip": "Compagnon de qualité des tests désactivé. Cliquez pour l'activer (audite la couverture du rapport et relance le Testeur en cas de lacunes).",
|
|
2636
|
+
"testerQualityDisableTooltip": "Compagnon de qualité des tests activé. Audite la couverture du rapport avant le feu vert et relance le Testeur en cas de lacunes ; cliquez pour le désactiver.",
|
|
2637
|
+
"testerQualityLabel": "Compagnon de qualité des tests",
|
|
2638
|
+
"testerQualityGateTooltip": "N'exécuter l'audit de qualité que lorsque l'estimation de la tâche dépasse un seuil (nécessite un Estimateur de tâches en amont)",
|
|
2604
2639
|
"moveUp": "Monter l'étape",
|
|
2605
2640
|
"moveDown": "Descendre l'étape",
|
|
2606
2641
|
"removeStep": "Retirer cette étape du pipeline",
|
|
@@ -3242,6 +3277,15 @@
|
|
|
3242
3277
|
"failed": "Échec",
|
|
3243
3278
|
"addressed": "Corrige"
|
|
3244
3279
|
},
|
|
3280
|
+
"quality": {
|
|
3281
|
+
"heading": "Revue de couverture",
|
|
3282
|
+
"reruns": "Relances du Testeur pilotées par la qualité",
|
|
3283
|
+
"rerunCount": "{attempts}/{max} relances",
|
|
3284
|
+
"exceeded": "Budget épuisé",
|
|
3285
|
+
"adequate": "Couverture adéquate",
|
|
3286
|
+
"inadequate": "Lacunes de couverture détectées",
|
|
3287
|
+
"gaps": "Lacunes à combler"
|
|
3288
|
+
},
|
|
3245
3289
|
"empty": {
|
|
3246
3290
|
"title": "Aucun rapport de tests pour l'instant.",
|
|
3247
3291
|
"hint": "Le rapport apparaît une fois que le Testeur a terminé une passe. Pendant son exécution, l'étape affiche la progression en direct sur le tableau."
|
|
@@ -3702,6 +3746,7 @@
|
|
|
3702
3746
|
},
|
|
3703
3747
|
"targetRepo": {
|
|
3704
3748
|
"label": "Nom du dépôt cible",
|
|
3749
|
+
"namePlaceholder": "payments-service",
|
|
3705
3750
|
"descWithOwner": "Créez un nouveau dépôt portant ce nom sous {owner}, puis l'initialisation y pousse. Un README, un .gitignore ou une licence préremplis conviennent.",
|
|
3706
3751
|
"descNoOwner": "Créez un nouveau dépôt portant ce nom, puis l'initialisation y pousse. Un README, un .gitignore ou une licence préremplis conviennent."
|
|
3707
3752
|
},
|
|
@@ -3717,7 +3762,8 @@
|
|
|
3717
3762
|
},
|
|
3718
3763
|
"description": {
|
|
3719
3764
|
"label": "Description",
|
|
3720
|
-
"help": "Résumé facultatif en une ligne pour le dépôt."
|
|
3765
|
+
"help": "Résumé facultatif en une ligne pour le dépôt.",
|
|
3766
|
+
"placeholder": "Gère les intentions de paiement et les remboursements"
|
|
3721
3767
|
},
|
|
3722
3768
|
"instructions": {
|
|
3723
3769
|
"labelReference": "Instructions supplémentaires pour l'initialiseur",
|
|
@@ -3747,18 +3793,23 @@
|
|
|
3747
3793
|
"add": "Ajouter",
|
|
3748
3794
|
"pickRepo": {
|
|
3749
3795
|
"label": "Choisir un dépôt GitHub existant",
|
|
3750
|
-
"description": "Choisissez un dépôt auquel vous avez accès pour renseigner son propriétaire et son nom, ou saisissez-les manuellement ci-dessous."
|
|
3796
|
+
"description": "Choisissez un dépôt auquel vous avez accès pour renseigner son propriétaire et son nom, ou saisissez-les manuellement ci-dessous.",
|
|
3797
|
+
"placeholder": "owner/name"
|
|
3751
3798
|
},
|
|
3752
3799
|
"name": {
|
|
3753
3800
|
"label": "Nom",
|
|
3754
|
-
"description": "Un libellé convivial pour cette base."
|
|
3801
|
+
"description": "Un libellé convivial pour cette base.",
|
|
3802
|
+
"placeholder": "Modèle de service"
|
|
3755
3803
|
},
|
|
3756
3804
|
"repoOwner": "Propriétaire du dépôt",
|
|
3805
|
+
"repoOwnerPlaceholder": "acme",
|
|
3757
3806
|
"repoName": "Nom du dépôt",
|
|
3807
|
+
"repoNamePlaceholder": "service-template",
|
|
3758
3808
|
"descriptionPlaceholder": "Résumé facultatif de cette base",
|
|
3759
3809
|
"defaultInstructions": {
|
|
3760
3810
|
"label": "Instructions d'initialisation par défaut",
|
|
3761
|
-
"description": "Ajoutées avant les instructions de chaque exécution chaque fois que cette base est utilisée."
|
|
3811
|
+
"description": "Ajoutées avant les instructions de chaque exécution chaque fois que cette base est utilisée.",
|
|
3812
|
+
"placeholder": "p. ex. conserver la structure ; renommer les paquets pour correspondre au nouveau service"
|
|
3762
3813
|
}
|
|
3763
3814
|
},
|
|
3764
3815
|
"toast": {
|
package/i18n/locales/he.json
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
+
"app": {
|
|
3
|
+
"loading": "טוען…",
|
|
4
|
+
"loadingBoard": "טוען לוח…",
|
|
5
|
+
"backendUnreachable": "לא ניתן להתחבר לבקאנד",
|
|
6
|
+
"reconnecting": "מתחבר מחדש…"
|
|
7
|
+
},
|
|
2
8
|
"language": {
|
|
3
9
|
"switcher": "שפה",
|
|
4
10
|
"warning": {
|
|
@@ -68,6 +74,14 @@
|
|
|
68
74
|
"accountSettings": "הגדרות חשבון"
|
|
69
75
|
},
|
|
70
76
|
"board": {
|
|
77
|
+
"toast": {
|
|
78
|
+
"updateFailed": "לא ניתן היה לשמור את השינויים",
|
|
79
|
+
"epicFailed": "לא ניתן היה לשנות את האפיק",
|
|
80
|
+
"moveFailed": "לא ניתן היה להעביר",
|
|
81
|
+
"deleteFailed": "לא ניתן היה למחוק",
|
|
82
|
+
"linkFailed": "לא ניתן היה לקשר משימות",
|
|
83
|
+
"recurringDeleteFailed": "לא ניתן היה למחוק את הצינור החוזר"
|
|
84
|
+
},
|
|
71
85
|
"repoTypes": {
|
|
72
86
|
"service": "שירות",
|
|
73
87
|
"frontend": "פרונט-אנד",
|
|
@@ -260,6 +274,11 @@
|
|
|
260
274
|
"openPrOnGithub": "פתח את {pr} ב-GitHub",
|
|
261
275
|
"review": "סקירה",
|
|
262
276
|
"merge": "מזג",
|
|
277
|
+
"mergeConfirm": {
|
|
278
|
+
"title": "למזג בקשת משיכה זו?",
|
|
279
|
+
"body": "פעולה זו ממזגת את ה-PR לענף הבסיס שלו ומשלימה את המשימה. לא ניתן לבטל פעולה זו.",
|
|
280
|
+
"confirm": "מזג"
|
|
281
|
+
},
|
|
263
282
|
"implemented": "מומש",
|
|
264
283
|
"module": "מודול: {name}",
|
|
265
284
|
"buildSteps": "שלבי בנייה",
|
|
@@ -601,6 +620,16 @@
|
|
|
601
620
|
"stopTooltip": "עצור את ההרצה אך שמור אותה (ניתנת לקריאה ולחזרה)",
|
|
602
621
|
"reset": "אפס",
|
|
603
622
|
"resetTooltip": "השלך הרצה זו ואפס את המשימה למתוכננת",
|
|
623
|
+
"resetConfirm": {
|
|
624
|
+
"title": "להשליך הרצה זו?",
|
|
625
|
+
"body": "פעולה זו מוחקת את ההרצה ומחזירה את המשימה למתוכננת. לא ניתן לבטל פעולה זו.",
|
|
626
|
+
"confirm": "השלך הרצה"
|
|
627
|
+
},
|
|
628
|
+
"mergeConfirm": {
|
|
629
|
+
"title": "למזג בקשת משיכה זו?",
|
|
630
|
+
"body": "פעולה זו ממזגת את ה-PR לענף הבסיס שלו ומשלימה את המשימה. לא ניתן לבטל פעולה זו.",
|
|
631
|
+
"confirm": "מזג"
|
|
632
|
+
},
|
|
604
633
|
"viewDetailsOutput": "הצג פרטים וקרא פלט",
|
|
605
634
|
"viewDetails": "הצג פרטי שלב",
|
|
606
635
|
"companion": "מלווה",
|
|
@@ -1200,7 +1229,9 @@
|
|
|
1200
1229
|
},
|
|
1201
1230
|
"toast": {
|
|
1202
1231
|
"acted": "סומן כטופל",
|
|
1203
|
-
"dismissed": "נדחה"
|
|
1232
|
+
"dismissed": "נדחה",
|
|
1233
|
+
"actFailed": "לא ניתן היה להשלים את הפעולה",
|
|
1234
|
+
"dismissFailed": "לא ניתן היה לבטל"
|
|
1204
1235
|
}
|
|
1205
1236
|
},
|
|
1206
1237
|
"aiProvidersBanner": {
|
|
@@ -2612,6 +2643,10 @@
|
|
|
2612
2643
|
"consensusRevertTooltip": "קונצנזוס מופעל. לחץ כדי לחזור לסוכן יחיד.",
|
|
2613
2644
|
"followUpEnableTooltip": "מלווה המעקב מושבת. לחץ כדי להפעיל (Coder מציף קצוות פתוחים / שאלות).",
|
|
2614
2645
|
"followUpDisableTooltip": "מלווה המעקב מופעל. Coder מציף קצוות פתוחים / משימות צד / שאלות; לחץ כדי להשבית.",
|
|
2646
|
+
"testerQualityEnableTooltip": "מלווה איכות הבדיקות מושבת. לחץ כדי להפעיל (מבקר את כיסוי הדוח ומריץ מחדש את הבודק על פערים).",
|
|
2647
|
+
"testerQualityDisableTooltip": "מלווה איכות הבדיקות פעיל. מבקר את כיסוי הדוח לפני האישור ומריץ מחדש את הבודק על פערים; לחץ כדי להשבית.",
|
|
2648
|
+
"testerQualityLabel": "מלווה איכות הבדיקות",
|
|
2649
|
+
"testerQualityGateTooltip": "הרץ את בדיקת האיכות רק כאשר הערכת המשימה חוצה סף (דורש מעריך משימות לפני כן)",
|
|
2615
2650
|
"moveUp": "הזז שלב למעלה",
|
|
2616
2651
|
"moveDown": "הזז שלב למטה",
|
|
2617
2652
|
"removeStep": "הסר שלב זה מהצינור",
|
|
@@ -3253,6 +3288,15 @@
|
|
|
3253
3288
|
"failed": "נכשל",
|
|
3254
3289
|
"addressed": "מטפל"
|
|
3255
3290
|
},
|
|
3291
|
+
"quality": {
|
|
3292
|
+
"heading": "סקירת כיסוי",
|
|
3293
|
+
"reruns": "הרצות חוזרות של הבודק מבוססות איכות",
|
|
3294
|
+
"rerunCount": "{attempts}/{max} הרצות חוזרות",
|
|
3295
|
+
"exceeded": "התקציב נוצל",
|
|
3296
|
+
"adequate": "הכיסוי מספק",
|
|
3297
|
+
"inadequate": "נמצאו פערי כיסוי",
|
|
3298
|
+
"gaps": "פערים לסגירה"
|
|
3299
|
+
},
|
|
3256
3300
|
"empty": {
|
|
3257
3301
|
"title": "אין דוח בדיקה עדיין.",
|
|
3258
3302
|
"hint": "הדוח מופיע ברגע שהבודק מסיים מעבר. בזמן שהוא רץ, השלב מציג התקדמות חיה על הלוח."
|
|
@@ -3713,6 +3757,7 @@
|
|
|
3713
3757
|
},
|
|
3714
3758
|
"targetRepo": {
|
|
3715
3759
|
"label": "שם מאגר היעד",
|
|
3760
|
+
"namePlaceholder": "payments-service",
|
|
3716
3761
|
"descWithOwner": "צור מאגר חדש בשם הזה תחת {owner}, ואז האתחול דוחף אליו. README, .gitignore או רישיון מאוכלסים מראש הם בסדר.",
|
|
3717
3762
|
"descNoOwner": "צור מאגר חדש בשם הזה, ואז האתחול דוחף אליו. README, .gitignore או רישיון מאוכלסים מראש הם בסדר."
|
|
3718
3763
|
},
|
|
@@ -3728,7 +3773,8 @@
|
|
|
3728
3773
|
},
|
|
3729
3774
|
"description": {
|
|
3730
3775
|
"label": "תיאור",
|
|
3731
|
-
"help": "תקציר אופציונלי בשורה אחת למאגר."
|
|
3776
|
+
"help": "תקציר אופציונלי בשורה אחת למאגר.",
|
|
3777
|
+
"placeholder": "מטפל בכוונות תשלום והחזרים"
|
|
3732
3778
|
},
|
|
3733
3779
|
"instructions": {
|
|
3734
3780
|
"labelReference": "הנחיות נוספות למאתחל",
|
|
@@ -3758,18 +3804,23 @@
|
|
|
3758
3804
|
"add": "הוסף",
|
|
3759
3805
|
"pickRepo": {
|
|
3760
3806
|
"label": "בחר מאגר GitHub קיים",
|
|
3761
|
-
"description": "בחר מאגר שיש לך גישה אליו כדי למלא את הבעלים והשם שלו, או הזן אותם ידנית למטה."
|
|
3807
|
+
"description": "בחר מאגר שיש לך גישה אליו כדי למלא את הבעלים והשם שלו, או הזן אותם ידנית למטה.",
|
|
3808
|
+
"placeholder": "owner/name"
|
|
3762
3809
|
},
|
|
3763
3810
|
"name": {
|
|
3764
3811
|
"label": "שם",
|
|
3765
|
-
"description": "תווית ידידותית לבסיס הזה."
|
|
3812
|
+
"description": "תווית ידידותית לבסיס הזה.",
|
|
3813
|
+
"placeholder": "תבנית שירות"
|
|
3766
3814
|
},
|
|
3767
3815
|
"repoOwner": "בעלי המאגר",
|
|
3816
|
+
"repoOwnerPlaceholder": "acme",
|
|
3768
3817
|
"repoName": "שם המאגר",
|
|
3818
|
+
"repoNamePlaceholder": "service-template",
|
|
3769
3819
|
"descriptionPlaceholder": "תקציר אופציונלי של הבסיס הזה",
|
|
3770
3820
|
"defaultInstructions": {
|
|
3771
3821
|
"label": "הנחיות מאתחל ברירת מחדל",
|
|
3772
|
-
"description": "מצורפות לפני ההנחיות הפר-הרצה בכל פעם שנעשה שימוש בבסיס הזה."
|
|
3822
|
+
"description": "מצורפות לפני ההנחיות הפר-הרצה בכל פעם שנעשה שימוש בבסיס הזה.",
|
|
3823
|
+
"placeholder": "לדוגמה, שמור על המבנה; שנה את שמות החבילות כך שיתאימו לשירות החדש"
|
|
3773
3824
|
}
|
|
3774
3825
|
},
|
|
3775
3826
|
"toast": {
|
package/i18n/locales/ja.json
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
+
"app": {
|
|
3
|
+
"loading": "読み込み中…",
|
|
4
|
+
"loadingBoard": "ボードを読み込み中…",
|
|
5
|
+
"backendUnreachable": "バックエンドに接続できません",
|
|
6
|
+
"reconnecting": "再接続中…"
|
|
7
|
+
},
|
|
2
8
|
"language": {
|
|
3
9
|
"switcher": "言語",
|
|
4
10
|
"warning": {
|
|
@@ -68,6 +74,14 @@
|
|
|
68
74
|
"accountSettings": "アカウント設定"
|
|
69
75
|
},
|
|
70
76
|
"board": {
|
|
77
|
+
"toast": {
|
|
78
|
+
"updateFailed": "変更を保存できませんでした",
|
|
79
|
+
"epicFailed": "エピックを変更できませんでした",
|
|
80
|
+
"moveFailed": "移動できませんでした",
|
|
81
|
+
"deleteFailed": "削除できませんでした",
|
|
82
|
+
"linkFailed": "タスクをリンクできませんでした",
|
|
83
|
+
"recurringDeleteFailed": "定期パイプラインを削除できませんでした"
|
|
84
|
+
},
|
|
71
85
|
"repoTypes": {
|
|
72
86
|
"service": "サービス",
|
|
73
87
|
"frontend": "フロントエンド",
|
|
@@ -260,6 +274,11 @@
|
|
|
260
274
|
"openPrOnGithub": "{pr} を GitHub で開く",
|
|
261
275
|
"review": "レビュー",
|
|
262
276
|
"merge": "マージ",
|
|
277
|
+
"mergeConfirm": {
|
|
278
|
+
"title": "このプルリクエストをマージしますか?",
|
|
279
|
+
"body": "PR をベースブランチにマージし、タスクを完了します。この操作は取り消せません。",
|
|
280
|
+
"confirm": "マージ"
|
|
281
|
+
},
|
|
263
282
|
"implemented": "実装済み",
|
|
264
283
|
"module": "モジュール: {name}",
|
|
265
284
|
"buildSteps": "ビルドステップ",
|
|
@@ -601,6 +620,16 @@
|
|
|
601
620
|
"stopTooltip": "実行を停止しますが保持します (閲覧および再実行が可能)",
|
|
602
621
|
"reset": "リセット",
|
|
603
622
|
"resetTooltip": "この実行を破棄し、タスクを計画済みにリセットします",
|
|
623
|
+
"resetConfirm": {
|
|
624
|
+
"title": "この実行を破棄しますか?",
|
|
625
|
+
"body": "実行を削除し、タスクを計画済みに戻します。この操作は取り消せません。",
|
|
626
|
+
"confirm": "実行を破棄"
|
|
627
|
+
},
|
|
628
|
+
"mergeConfirm": {
|
|
629
|
+
"title": "このプルリクエストをマージしますか?",
|
|
630
|
+
"body": "PR をベースブランチにマージし、タスクを完了します。この操作は取り消せません。",
|
|
631
|
+
"confirm": "マージ"
|
|
632
|
+
},
|
|
604
633
|
"viewDetailsOutput": "詳細を表示して出力を読む",
|
|
605
634
|
"viewDetails": "ステップの詳細を表示",
|
|
606
635
|
"companion": "コンパニオン",
|
|
@@ -1200,7 +1229,9 @@
|
|
|
1200
1229
|
},
|
|
1201
1230
|
"toast": {
|
|
1202
1231
|
"acted": "対応済みにしました",
|
|
1203
|
-
"dismissed": "却下しました"
|
|
1232
|
+
"dismissed": "却下しました",
|
|
1233
|
+
"actFailed": "その操作を完了できませんでした",
|
|
1234
|
+
"dismissFailed": "却下できませんでした"
|
|
1204
1235
|
}
|
|
1205
1236
|
},
|
|
1206
1237
|
"aiProvidersBanner": {
|
|
@@ -2614,6 +2645,10 @@
|
|
|
2614
2645
|
"consensusRevertTooltip": "コンセンサスが有効です。クリックして単一エージェントに戻します。",
|
|
2615
2646
|
"followUpEnableTooltip": "フォローアップコンパニオンは無効です。クリックして有効化します(Coderが未解決事項/質問を提示)。",
|
|
2616
2647
|
"followUpDisableTooltip": "フォローアップコンパニオンが有効です。Coderが未解決事項/サブタスク/質問を提示します。クリックして無効化します。",
|
|
2648
|
+
"testerQualityEnableTooltip": "テスト品質コンパニオンは無効です。クリックして有効化します(レポートのカバレッジを監査し、不足があればテスターを再実行します)。",
|
|
2649
|
+
"testerQualityDisableTooltip": "テスト品質コンパニオンは有効です。承認前にレポートのカバレッジを監査し、不足があればテスターを再実行します。クリックして無効化します。",
|
|
2650
|
+
"testerQualityLabel": "テスト品質コンパニオン",
|
|
2651
|
+
"testerQualityGateTooltip": "タスク見積もりがしきい値を超えた場合のみ品質監査を実行します(前段にタスク見積もりが必要)",
|
|
2617
2652
|
"moveUp": "ステップを上に移動",
|
|
2618
2653
|
"moveDown": "ステップを下に移動",
|
|
2619
2654
|
"removeStep": "このステップをパイプラインから削除",
|
|
@@ -3255,6 +3290,15 @@
|
|
|
3255
3290
|
"failed": "失敗",
|
|
3256
3291
|
"addressed": "対応中"
|
|
3257
3292
|
},
|
|
3293
|
+
"quality": {
|
|
3294
|
+
"heading": "カバレッジレビュー",
|
|
3295
|
+
"reruns": "品質主導のテスター再実行",
|
|
3296
|
+
"rerunCount": "{attempts}/{max} 回再実行",
|
|
3297
|
+
"exceeded": "予算を使い切りました",
|
|
3298
|
+
"adequate": "カバレッジは十分です",
|
|
3299
|
+
"inadequate": "カバレッジの不足が見つかりました",
|
|
3300
|
+
"gaps": "解消すべき不足"
|
|
3301
|
+
},
|
|
3258
3302
|
"empty": {
|
|
3259
3303
|
"title": "テストレポートはまだありません。",
|
|
3260
3304
|
"hint": "Testerがパスを完了するとレポートが表示されます。実行中はボード上でステップのライブ進捗が表示されます。"
|
|
@@ -3715,6 +3759,7 @@
|
|
|
3715
3759
|
},
|
|
3716
3760
|
"targetRepo": {
|
|
3717
3761
|
"label": "ターゲットリポジトリ名",
|
|
3762
|
+
"namePlaceholder": "payments-service",
|
|
3718
3763
|
"descWithOwner": "{owner} の下にこの名前で新しいリポジトリを作成し、ブートストラップがそこにプッシュします。README、.gitignore、ライセンスがあらかじめ入っていても問題ありません。",
|
|
3719
3764
|
"descNoOwner": "この名前で新しいリポジトリを作成し、ブートストラップがそこにプッシュします。README、.gitignore、ライセンスがあらかじめ入っていても問題ありません。"
|
|
3720
3765
|
},
|
|
@@ -3730,7 +3775,8 @@
|
|
|
3730
3775
|
},
|
|
3731
3776
|
"description": {
|
|
3732
3777
|
"label": "説明",
|
|
3733
|
-
"help": "リポジトリの任意の1行要約。"
|
|
3778
|
+
"help": "リポジトリの任意の1行要約。",
|
|
3779
|
+
"placeholder": "支払いインテントと返金を処理します"
|
|
3734
3780
|
},
|
|
3735
3781
|
"instructions": {
|
|
3736
3782
|
"labelReference": "ブートストラッパーへの追加指示",
|
|
@@ -3760,18 +3806,23 @@
|
|
|
3760
3806
|
"add": "追加",
|
|
3761
3807
|
"pickRepo": {
|
|
3762
3808
|
"label": "既存の GitHub リポジトリを選択",
|
|
3763
|
-
"description": "アクセスできるリポジトリを選んでオーナーと名前を入力するか、下で手動で入力してください。"
|
|
3809
|
+
"description": "アクセスできるリポジトリを選んでオーナーと名前を入力するか、下で手動で入力してください。",
|
|
3810
|
+
"placeholder": "owner/name"
|
|
3764
3811
|
},
|
|
3765
3812
|
"name": {
|
|
3766
3813
|
"label": "名前",
|
|
3767
|
-
"description": "このベースのわかりやすいラベル。"
|
|
3814
|
+
"description": "このベースのわかりやすいラベル。",
|
|
3815
|
+
"placeholder": "サービステンプレート"
|
|
3768
3816
|
},
|
|
3769
3817
|
"repoOwner": "リポジトリオーナー",
|
|
3818
|
+
"repoOwnerPlaceholder": "acme",
|
|
3770
3819
|
"repoName": "リポジトリ名",
|
|
3820
|
+
"repoNamePlaceholder": "service-template",
|
|
3771
3821
|
"descriptionPlaceholder": "このベースの任意の要約",
|
|
3772
3822
|
"defaultInstructions": {
|
|
3773
3823
|
"label": "デフォルトのブートストラッパー指示",
|
|
3774
|
-
"description": "このベースを使用するたびに、実行ごとの指示の前に付加されます。"
|
|
3824
|
+
"description": "このベースを使用するたびに、実行ごとの指示の前に付加されます。",
|
|
3825
|
+
"placeholder": "例: 構造を維持し、パッケージ名を新しいサービスに合わせて変更する"
|
|
3775
3826
|
}
|
|
3776
3827
|
},
|
|
3777
3828
|
"toast": {
|