@cat-factory/app 0.201.1 → 0.204.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/README.md +130 -10
- package/app/components/binaryOutput/BinaryOutputReport.vue +186 -0
- package/app/components/initiative/InitiativePlanReview.vue +11 -1
- package/app/components/panels/AgentStepDetail.vue +10 -0
- package/app/components/panels/ResultWindowShell.vue +86 -0
- package/app/components/pipeline/BinaryOutputStepPicker.vue +147 -0
- package/app/components/pipeline/PipelineBuilder.vue +54 -0
- package/app/components/settings/OpenRouterCatalogPanel.vue +6 -3
- package/app/components/tutorial/TutorialCatalogue.logic.spec.ts +103 -0
- package/app/components/tutorial/TutorialCatalogue.logic.ts +102 -0
- package/app/components/tutorial/TutorialCatalogue.vue +150 -0
- package/app/components/tutorial/TutorialOverlay.logic.spec.ts +46 -0
- package/app/components/tutorial/TutorialOverlay.logic.ts +53 -0
- package/app/components/tutorial/TutorialOverlay.vue +296 -40
- package/app/components/tutorial/TutorialPrompt.vue +41 -22
- package/app/composables/useNavContributions.ts +4 -1
- package/app/composables/useTutorialLaunch.ts +50 -0
- package/app/composables/useTutorialTours.ts +37 -9
- package/app/docs/consumer-extensions.md +24 -11
- package/app/modular/agent-kinds.ts +6 -0
- package/app/modular/nav-contributions.spec.ts +7 -0
- package/app/modular/nav-contributions.ts +25 -13
- package/app/modular/slots.ts +5 -2
- package/app/modular/tutorial-tours.spec.ts +189 -53
- package/app/modular/tutorial-tours.ts +57 -8
- package/app/pages/index.vue +7 -2
- package/app/stores/pipelines/draftBinaryOutput.spec.ts +70 -0
- package/app/stores/pipelines/draftStepConfig.ts +38 -2
- package/app/stores/tutorial.spec.ts +167 -0
- package/app/stores/tutorial.ts +140 -4
- package/app/types/domain.ts +9 -0
- package/app/types/execution.ts +5 -0
- package/app/utils/binaryOutput.spec.ts +307 -0
- package/app/utils/binaryOutput.ts +343 -0
- package/app/utils/tutorial.spec.ts +179 -9
- package/app/utils/tutorial.ts +233 -22
- package/i18n/locales/de.json +89 -7
- package/i18n/locales/en.json +101 -7
- package/i18n/locales/es.json +89 -7
- package/i18n/locales/fr.json +89 -7
- package/i18n/locales/he.json +89 -7
- package/i18n/locales/it.json +89 -7
- package/i18n/locales/ja.json +89 -7
- package/i18n/locales/pl.json +89 -7
- package/i18n/locales/tr.json +89 -7
- package/i18n/locales/uk.json +89 -7
- package/package.json +2 -2
package/i18n/locales/es.json
CHANGED
|
@@ -127,7 +127,9 @@
|
|
|
127
127
|
"operatorDashboard": "Observabilidad de la plataforma",
|
|
128
128
|
"reports": "Informes",
|
|
129
129
|
"infrastructure": "Infraestructura",
|
|
130
|
-
"foundationalServices": "Servicios fundamentales"
|
|
130
|
+
"foundationalServices": "Servicios fundamentales",
|
|
131
|
+
"tutorials": "Tutoriales",
|
|
132
|
+
"help": "Ayuda"
|
|
131
133
|
},
|
|
132
134
|
"board": {
|
|
133
135
|
"toast": {
|
|
@@ -2082,7 +2084,6 @@
|
|
|
2082
2084
|
"shortcuts": "Atajos de teclado",
|
|
2083
2085
|
"bugHunt": "Caza de errores",
|
|
2084
2086
|
"toggleUiMode": "Cambiar el modo de interfaz",
|
|
2085
|
-
"tutorial": "Hacer un recorrido",
|
|
2086
2087
|
"foundationalServices": "Servicios fundamentales"
|
|
2087
2088
|
},
|
|
2088
2089
|
"keywords": {
|
|
@@ -4081,7 +4082,17 @@
|
|
|
4081
4082
|
"consensusGroupsActive": "Este paso ejecuta el grupo seleccionado. Deselecciona todos los grupos para configurar aquí los participantes.",
|
|
4082
4083
|
"consensusGroupAlways": "siempre",
|
|
4083
4084
|
"variantLabel": "Variante del prompt",
|
|
4084
|
-
"variantShipped": "Prompt original"
|
|
4085
|
+
"variantShipped": "Prompt original",
|
|
4086
|
+
"binaryOutputStorage": "Almacenar en",
|
|
4087
|
+
"binaryOutputContext": "Contexto de generación",
|
|
4088
|
+
"binaryOutputPlaceholder": "Elige un servicio de almacenamiento",
|
|
4089
|
+
"binaryOutputContextPlaceholder": "Opcional: servicios que delimitan la generación",
|
|
4090
|
+
"binaryOutputNeedsPick": "Un paso que genera salidas binarias no tiene servicio de almacenamiento elegido. Elige uno antes de guardar.",
|
|
4091
|
+
"binaryOutputNoStorage": "Ningún servicio del catálogo de este tablero declara la capacidad {capability}. Registra uno, o añade la capacidad al servicio que tenías en mente, en servicios fundamentales.",
|
|
4092
|
+
"binaryOutputMissing": "Este servicio de almacenamiento ya no está en el catálogo; elige otro.",
|
|
4093
|
+
"binaryOutputNotStorage": "Este servicio ya no declara la capacidad {capability}, así que las ejecuciones se rechazarán; elige otro.",
|
|
4094
|
+
"binaryOutputContextMissing": "Estos servicios de contexto ya no están en el catálogo: {ids}",
|
|
4095
|
+
"binaryOutputUnavailable": "El catálogo de servicios fundamentales no está disponible, así que aún no se puede elegir nada aquí."
|
|
4085
4096
|
},
|
|
4086
4097
|
"progress": {
|
|
4087
4098
|
"status": {
|
|
@@ -5343,6 +5354,47 @@
|
|
|
5343
5354
|
"unlinkSourceFailed": "No se pudo desvincular el repositorio"
|
|
5344
5355
|
}
|
|
5345
5356
|
},
|
|
5357
|
+
"binaryOutput": {
|
|
5358
|
+
"heading": "Salidas binarias",
|
|
5359
|
+
"target": "Servicio de almacenamiento",
|
|
5360
|
+
"targetNone": "No registrado en este paso",
|
|
5361
|
+
"contextServices": "Contexto de generación",
|
|
5362
|
+
"misdirectedBadge": "Otro servicio",
|
|
5363
|
+
"unknownBadge": "Fuera del catálogo",
|
|
5364
|
+
"storedCount": "{outcome}, 1 artefacto | {outcome}, {count} artefactos",
|
|
5365
|
+
"state": {
|
|
5366
|
+
"notStarted": {
|
|
5367
|
+
"summary": "Aún no ha empezado",
|
|
5368
|
+
"detail": "Este paso todavía no ha empezado. Cuando se ejecute, almacenará sus salidas binarias a través del servicio indicado abajo."
|
|
5369
|
+
},
|
|
5370
|
+
"configured": {
|
|
5371
|
+
"summary": "Aún sin registrar nada",
|
|
5372
|
+
"detail": "Este paso está configurado para almacenar salidas binarias, pero aún no ha informado de ninguna. Sigue en curso, o terminó antes de informar."
|
|
5373
|
+
},
|
|
5374
|
+
"undeclared": {
|
|
5375
|
+
"summary": "Sin declaración",
|
|
5376
|
+
"detail": "Este paso terminó sin declarar qué almacenó. Puede que almacenara algo o puede que no; en cualquier caso, no se registró nada."
|
|
5377
|
+
},
|
|
5378
|
+
"parseFailed": {
|
|
5379
|
+
"summary": "Declaración ilegible",
|
|
5380
|
+
"detail": "Este paso terminó con una declaración que la plataforma no pudo leer, así que no se registró nada. Lo que almacenara falta en la lista de abajo."
|
|
5381
|
+
},
|
|
5382
|
+
"declaredNone": {
|
|
5383
|
+
"summary": "No almacenó nada",
|
|
5384
|
+
"detail": "El agente informó de que no almacenó ningún artefacto binario. Es un resultado válido, no un fallo."
|
|
5385
|
+
},
|
|
5386
|
+
"stored": {
|
|
5387
|
+
"summary": "Almacenado"
|
|
5388
|
+
}
|
|
5389
|
+
},
|
|
5390
|
+
"warning": {
|
|
5391
|
+
"unknownServices": "Nombró un servicio que el catálogo no contiene: {ids}. La entrada se conserva tal como se declaró; comprueba el identificador con el catálogo del tablero. | Nombró servicios que el catálogo no contiene: {ids}. Sus entradas se conservan tal como se declararon; comprueba los identificadores con el catálogo del tablero.",
|
|
5392
|
+
"targetUnknown": "El catálogo ya no contiene el servicio de almacenamiento de este paso ({id}), así que nada de lo de abajo pudo comprobarse contra él. Vuelve a registrarlo, o apunta el paso a otro servicio.",
|
|
5393
|
+
"misdirected": "1 artefacto fue a un servicio distinto de {target}. | {count} artefactos fueron a un servicio distinto de {target}.",
|
|
5394
|
+
"invalidEntries": "Se descartó 1 entrada declarada: no nombraba servicio ni ubicación. | Se descartaron {count} entradas declaradas: no nombraban servicio ni ubicación.",
|
|
5395
|
+
"omitted": "Se declaró 1 artefacto más por encima del límite del informe y no aparece en la lista. | Se declararon {count} artefactos más por encima del límite del informe y no aparecen en la lista."
|
|
5396
|
+
}
|
|
5397
|
+
},
|
|
5346
5398
|
"sandbox": {
|
|
5347
5399
|
"title": "Sandbox: pruebas de prompts y modelos",
|
|
5348
5400
|
"description": "Prueba versiones de prompts y modelos contra fixtures calificados, evaluados por un modelo juez.",
|
|
@@ -6113,12 +6165,41 @@
|
|
|
6113
6165
|
"prompt": {
|
|
6114
6166
|
"title": "¿Hacer un recorrido rápido?",
|
|
6115
6167
|
"intro": "Los recorridos guiados te muestran la aplicación directamente en esta pantalla: resaltan los controles reales y te dicen dónde hacer clic.",
|
|
6116
|
-
"start": "Empezar",
|
|
6117
|
-
"restart": "Repetir",
|
|
6118
|
-
"completed": "Completado",
|
|
6119
6168
|
"decline": "No, gracias",
|
|
6120
6169
|
"later": "Quizás más tarde",
|
|
6121
|
-
"empty": "Todavía no hay recorridos disponibles para tu rol en este tablero."
|
|
6170
|
+
"empty": "Todavía no hay recorridos disponibles para tu rol en este tablero.",
|
|
6171
|
+
"browse": "Ver todos los tutoriales"
|
|
6172
|
+
},
|
|
6173
|
+
"catalogue": {
|
|
6174
|
+
"title": "Tutoriales",
|
|
6175
|
+
"intro": "Recorridos guiados que resaltan los controles reales sobre la marcha. Puedes empezar cualquiera cuando quieras y repetirlo tantas veces como necesites.",
|
|
6176
|
+
"progress": "{completed} de {total} completados",
|
|
6177
|
+
"steps": "1 paso | {count} pasos",
|
|
6178
|
+
"blocked": "Disponible cuando tengas:",
|
|
6179
|
+
"notApplicable": "Ahora mismo no hay nada en este tablero que este recorrido pueda mostrar.",
|
|
6180
|
+
"empty": "Esta instalación no incluye tutoriales.",
|
|
6181
|
+
"reset": "Restablecer progreso",
|
|
6182
|
+
"resetHint": "Olvida qué tutoriales has completado y vuelve a ofrecerte el recorrido en tu próxima visita."
|
|
6183
|
+
},
|
|
6184
|
+
"action": {
|
|
6185
|
+
"start": "Empezar",
|
|
6186
|
+
"resume": "Reanudar",
|
|
6187
|
+
"restart": "Repetir",
|
|
6188
|
+
"continue": "Volver al recorrido"
|
|
6189
|
+
},
|
|
6190
|
+
"status": {
|
|
6191
|
+
"notStarted": "Sin empezar",
|
|
6192
|
+
"inProgress": "En curso",
|
|
6193
|
+
"paused": "En pausa",
|
|
6194
|
+
"completed": "Completado"
|
|
6195
|
+
},
|
|
6196
|
+
"requirements": {
|
|
6197
|
+
"boardWrite": "Permiso para editar este tablero",
|
|
6198
|
+
"sourceControl": "Un proveedor de control de código conectado",
|
|
6199
|
+
"service": "Un servicio en el tablero",
|
|
6200
|
+
"task": "Una tarea en el tablero",
|
|
6201
|
+
"waitingAnswer": "Una ejecución esperando tu respuesta",
|
|
6202
|
+
"finishedRun": "Una ejecución terminada correctamente"
|
|
6122
6203
|
},
|
|
6123
6204
|
"overlay": {
|
|
6124
6205
|
"next": "Siguiente",
|
|
@@ -6127,6 +6208,7 @@
|
|
|
6127
6208
|
"done": "Finalizar",
|
|
6128
6209
|
"progress": "Paso {current} de {total}",
|
|
6129
6210
|
"ariaLabel": "Paso del tutorial",
|
|
6211
|
+
"announcement": "Paso {current} de {total}. {title}. {body}",
|
|
6130
6212
|
"abridged": "Se omitió 1 paso: ese control no forma parte de este tablero. | Se omitieron {count} pasos: esos controles no forman parte de este tablero.",
|
|
6131
6213
|
"searching": "Buscando el control resaltado...",
|
|
6132
6214
|
"clickHint": "Haz clic en el control resaltado para continuar"
|
package/i18n/locales/fr.json
CHANGED
|
@@ -127,7 +127,9 @@
|
|
|
127
127
|
"operatorDashboard": "Observabilité de la plateforme",
|
|
128
128
|
"reports": "Rapports",
|
|
129
129
|
"infrastructure": "Infrastructure",
|
|
130
|
-
"foundationalServices": "Services fondamentaux"
|
|
130
|
+
"foundationalServices": "Services fondamentaux",
|
|
131
|
+
"tutorials": "Tutoriels",
|
|
132
|
+
"help": "Aide"
|
|
131
133
|
},
|
|
132
134
|
"board": {
|
|
133
135
|
"toast": {
|
|
@@ -2082,7 +2084,6 @@
|
|
|
2082
2084
|
"shortcuts": "Raccourcis clavier",
|
|
2083
2085
|
"bugHunt": "Chasse aux bugs",
|
|
2084
2086
|
"toggleUiMode": "Changer le mode d'interface",
|
|
2085
|
-
"tutorial": "Faire une visite guidée",
|
|
2086
2087
|
"foundationalServices": "Services fondamentaux"
|
|
2087
2088
|
},
|
|
2088
2089
|
"keywords": {
|
|
@@ -4081,7 +4082,17 @@
|
|
|
4081
4082
|
"consensusGroupsActive": "Cette étape exécute le groupe sélectionné. Désélectionne tous les groupes pour configurer les participants ici.",
|
|
4082
4083
|
"consensusGroupAlways": "toujours",
|
|
4083
4084
|
"variantLabel": "Variante de prompt",
|
|
4084
|
-
"variantShipped": "Prompt fourni"
|
|
4085
|
+
"variantShipped": "Prompt fourni",
|
|
4086
|
+
"binaryOutputStorage": "Stocker via",
|
|
4087
|
+
"binaryOutputContext": "Contexte de génération",
|
|
4088
|
+
"binaryOutputPlaceholder": "Choisir un service de stockage",
|
|
4089
|
+
"binaryOutputContextPlaceholder": "Facultatif : services qui délimitent la génération",
|
|
4090
|
+
"binaryOutputNeedsPick": "Une étape qui génère des sorties binaires n'a aucun service de stockage choisi. Choisissez-en un avant d'enregistrer.",
|
|
4091
|
+
"binaryOutputNoStorage": "Aucun service du catalogue de ce tableau ne déclare la capacité {capability}. Enregistrez-en un, ou ajoutez la capacité au service que vous visiez, dans les services fondamentaux.",
|
|
4092
|
+
"binaryOutputMissing": "Ce service de stockage n'est plus dans le catalogue ; choisissez-en un autre.",
|
|
4093
|
+
"binaryOutputNotStorage": "Ce service ne déclare plus la capacité {capability}, les exécutions seront donc refusées ; choisissez-en un autre.",
|
|
4094
|
+
"binaryOutputContextMissing": "Ces services de contexte ne sont plus dans le catalogue : {ids}",
|
|
4095
|
+
"binaryOutputUnavailable": "Le catalogue des services fondamentaux est injoignable, rien ne peut donc encore être choisi ici."
|
|
4085
4096
|
},
|
|
4086
4097
|
"progress": {
|
|
4087
4098
|
"status": {
|
|
@@ -5343,6 +5354,47 @@
|
|
|
5343
5354
|
"unlinkSourceFailed": "Impossible de délier le dépôt"
|
|
5344
5355
|
}
|
|
5345
5356
|
},
|
|
5357
|
+
"binaryOutput": {
|
|
5358
|
+
"heading": "Sorties binaires",
|
|
5359
|
+
"target": "Service de stockage",
|
|
5360
|
+
"targetNone": "Non enregistré pour cette étape",
|
|
5361
|
+
"contextServices": "Contexte de génération",
|
|
5362
|
+
"misdirectedBadge": "Autre service",
|
|
5363
|
+
"unknownBadge": "Hors catalogue",
|
|
5364
|
+
"storedCount": "{outcome}, 1 artefact | {outcome}, {count} artefacts",
|
|
5365
|
+
"state": {
|
|
5366
|
+
"notStarted": {
|
|
5367
|
+
"summary": "Pas encore démarrée",
|
|
5368
|
+
"detail": "Cette étape n'a pas encore démarré. Lorsqu'elle s'exécutera, elle stockera ses sorties binaires via le service indiqué ci-dessous."
|
|
5369
|
+
},
|
|
5370
|
+
"configured": {
|
|
5371
|
+
"summary": "Rien d'enregistré pour l'instant",
|
|
5372
|
+
"detail": "Cette étape est configurée pour stocker des sorties binaires, mais elle n'en a encore signalé aucune. Elle est toujours en cours, ou elle s'est terminée avant de le signaler."
|
|
5373
|
+
},
|
|
5374
|
+
"undeclared": {
|
|
5375
|
+
"summary": "Rien de déclaré",
|
|
5376
|
+
"detail": "Cette étape s'est terminée sans déclarer ce qu'elle avait stocké. Elle a peut-être stocké quelque chose, peut-être pas ; dans les deux cas, rien n'a été enregistré."
|
|
5377
|
+
},
|
|
5378
|
+
"parseFailed": {
|
|
5379
|
+
"summary": "Déclaration illisible",
|
|
5380
|
+
"detail": "Cette étape s'est terminée avec une déclaration que la plateforme n'a pas pu lire, donc rien n'a été enregistré. Ce qu'elle a stocké manque dans la liste ci-dessous."
|
|
5381
|
+
},
|
|
5382
|
+
"declaredNone": {
|
|
5383
|
+
"summary": "Rien de stocké",
|
|
5384
|
+
"detail": "L'agent a signalé n'avoir stocké aucun artefact binaire. C'est un résultat valide, pas un échec."
|
|
5385
|
+
},
|
|
5386
|
+
"stored": {
|
|
5387
|
+
"summary": "Stocké"
|
|
5388
|
+
}
|
|
5389
|
+
},
|
|
5390
|
+
"warning": {
|
|
5391
|
+
"unknownServices": "A nommé un service absent du catalogue : {ids}. L'entrée est conservée telle que déclarée ; vérifiez l'identifiant dans le catalogue du tableau. | A nommé des services absents du catalogue : {ids}. Leurs entrées sont conservées telles que déclarées ; vérifiez les identifiants dans le catalogue du tableau.",
|
|
5392
|
+
"targetUnknown": "Le catalogue ne contient plus le service de stockage propre à cette étape ({id}), donc rien ci-dessous n'a pu être vérifié par rapport à lui. Enregistrez-le de nouveau, ou orientez l'étape vers un autre service.",
|
|
5393
|
+
"misdirected": "1 artefact est allé vers un service autre que {target}. | {count} artefacts sont allés vers un service autre que {target}.",
|
|
5394
|
+
"invalidEntries": "1 entrée déclarée a été écartée : elle ne nommait ni service ni emplacement. | {count} entrées déclarées ont été écartées : elles ne nommaient ni service ni emplacement.",
|
|
5395
|
+
"omitted": "1 artefact supplémentaire a été déclaré au-delà de la limite du rapport et n'est pas listé. | {count} artefacts supplémentaires ont été déclarés au-delà de la limite du rapport et ne sont pas listés."
|
|
5396
|
+
}
|
|
5397
|
+
},
|
|
5346
5398
|
"sandbox": {
|
|
5347
5399
|
"title": "Bac à sable : test de prompts et de modèles",
|
|
5348
5400
|
"description": "Testez des versions de prompts et des modèles sur des fixtures notées, évaluées par un modèle juge.",
|
|
@@ -6113,12 +6165,41 @@
|
|
|
6113
6165
|
"prompt": {
|
|
6114
6166
|
"title": "Faire une visite rapide ?",
|
|
6115
6167
|
"intro": "Les visites guidées vous montrent l'application directement à l'écran : elles mettent en évidence les vrais contrôles et vous indiquent où cliquer.",
|
|
6116
|
-
"start": "Commencer",
|
|
6117
|
-
"restart": "Refaire",
|
|
6118
|
-
"completed": "Terminée",
|
|
6119
6168
|
"decline": "Non merci",
|
|
6120
6169
|
"later": "Peut-être plus tard",
|
|
6121
|
-
"empty": "Aucune visite n'est encore disponible pour votre rôle sur ce tableau."
|
|
6170
|
+
"empty": "Aucune visite n'est encore disponible pour votre rôle sur ce tableau.",
|
|
6171
|
+
"browse": "Voir tous les tutoriels"
|
|
6172
|
+
},
|
|
6173
|
+
"catalogue": {
|
|
6174
|
+
"title": "Tutoriels",
|
|
6175
|
+
"intro": "Des visites guidées qui mettent en évidence les vrais contrôles au fur et à mesure. Vous pouvez en lancer une à tout moment et la refaire autant de fois que vous voulez.",
|
|
6176
|
+
"progress": "{completed} sur {total} terminées",
|
|
6177
|
+
"steps": "1 étape | {count} étapes",
|
|
6178
|
+
"blocked": "Disponible dès que vous aurez :",
|
|
6179
|
+
"notApplicable": "Rien sur ce tableau ne correspond à cette visite pour le moment.",
|
|
6180
|
+
"empty": "Cette installation ne propose aucun tutoriel.",
|
|
6181
|
+
"reset": "Réinitialiser la progression",
|
|
6182
|
+
"resetHint": "Oublie les tutoriels que vous avez terminés et vous reproposera la visite à votre prochaine connexion."
|
|
6183
|
+
},
|
|
6184
|
+
"action": {
|
|
6185
|
+
"start": "Commencer",
|
|
6186
|
+
"resume": "Reprendre",
|
|
6187
|
+
"restart": "Refaire",
|
|
6188
|
+
"continue": "Revenir à la visite"
|
|
6189
|
+
},
|
|
6190
|
+
"status": {
|
|
6191
|
+
"notStarted": "Non commencée",
|
|
6192
|
+
"inProgress": "En cours",
|
|
6193
|
+
"paused": "En pause",
|
|
6194
|
+
"completed": "Terminée"
|
|
6195
|
+
},
|
|
6196
|
+
"requirements": {
|
|
6197
|
+
"boardWrite": "L'autorisation de modifier ce tableau",
|
|
6198
|
+
"sourceControl": "Un gestionnaire de code source connecté",
|
|
6199
|
+
"service": "Un service sur le tableau",
|
|
6200
|
+
"task": "Une tâche sur le tableau",
|
|
6201
|
+
"waitingAnswer": "Une exécution en attente de votre réponse",
|
|
6202
|
+
"finishedRun": "Une exécution terminée avec succès"
|
|
6122
6203
|
},
|
|
6123
6204
|
"overlay": {
|
|
6124
6205
|
"next": "Suivant",
|
|
@@ -6127,6 +6208,7 @@
|
|
|
6127
6208
|
"done": "Terminer",
|
|
6128
6209
|
"progress": "Étape {current} sur {total}",
|
|
6129
6210
|
"ariaLabel": "Étape du tutoriel",
|
|
6211
|
+
"announcement": "Étape {current} sur {total}. {title}. {body}",
|
|
6130
6212
|
"abridged": "1 étape a été ignorée : ce contrôle ne fait pas partie de ce tableau. | {count} étapes ont été ignorées : ces contrôles ne font pas partie de ce tableau.",
|
|
6131
6213
|
"searching": "Recherche du contrôle mis en évidence...",
|
|
6132
6214
|
"clickHint": "Cliquez sur le contrôle mis en évidence pour continuer"
|
package/i18n/locales/he.json
CHANGED
|
@@ -127,7 +127,9 @@
|
|
|
127
127
|
"accountSettings": "הגדרות חשבון",
|
|
128
128
|
"operatorDashboard": "תצפית על הפלטפורמה",
|
|
129
129
|
"reports": "דוחות",
|
|
130
|
-
"foundationalServices": "שירותי תשתית"
|
|
130
|
+
"foundationalServices": "שירותי תשתית",
|
|
131
|
+
"tutorials": "מדריכים",
|
|
132
|
+
"help": "עזרה"
|
|
131
133
|
},
|
|
132
134
|
"board": {
|
|
133
135
|
"toast": {
|
|
@@ -2082,7 +2084,6 @@
|
|
|
2082
2084
|
"shortcuts": "קיצורי מקלדת",
|
|
2083
2085
|
"bugHunt": "ציד באגים",
|
|
2084
2086
|
"toggleUiMode": "החלפת מצב ממשק",
|
|
2085
|
-
"tutorial": "צא לסיור",
|
|
2086
2087
|
"foundationalServices": "שירותי תשתית"
|
|
2087
2088
|
},
|
|
2088
2089
|
"keywords": {
|
|
@@ -4092,7 +4093,17 @@
|
|
|
4092
4093
|
"consensusGroupsActive": "השלב הזה מריץ את הקבוצה שנבחרה. בטל את הבחירה מכל הקבוצות כדי להגדיר כאן משתתפים.",
|
|
4093
4094
|
"consensusGroupAlways": "תמיד",
|
|
4094
4095
|
"variantLabel": "וריאנט של הפרומפט",
|
|
4095
|
-
"variantShipped": "הפרומפט המקורי"
|
|
4096
|
+
"variantShipped": "הפרומפט המקורי",
|
|
4097
|
+
"binaryOutputStorage": "לאחסן דרך",
|
|
4098
|
+
"binaryOutputContext": "הקשר ליצירה",
|
|
4099
|
+
"binaryOutputPlaceholder": "בחר שירות אחסון",
|
|
4100
|
+
"binaryOutputContextPlaceholder": "לא חובה: שירותים שמגדירים את היקף היצירה",
|
|
4101
|
+
"binaryOutputNeedsPick": "לשלב שמייצר פלטים בינאריים לא נבחר שירות אחסון. בחר אחד לפני השמירה.",
|
|
4102
|
+
"binaryOutputNoStorage": "אף שירות בקטלוג של לוח זה אינו מצהיר על יכולת {capability}. רשום שירות כזה, או הוסף את היכולת לשירות שהתכוונת אליו, תחת שירותי בסיס.",
|
|
4103
|
+
"binaryOutputMissing": "שירות אחסון זה כבר אינו בקטלוג; בחר אחר.",
|
|
4104
|
+
"binaryOutputNotStorage": "השירות הזה כבר אינו מצהיר על יכולת {capability}, ולכן הרצות יידחו; בחר אחר.",
|
|
4105
|
+
"binaryOutputContextMissing": "שירותי ההקשר האלה כבר אינם בקטלוג: {ids}",
|
|
4106
|
+
"binaryOutputUnavailable": "קטלוג שירותי הבסיס אינו זמין, ולכן עדיין אי אפשר לבחור כאן דבר."
|
|
4096
4107
|
},
|
|
4097
4108
|
"progress": {
|
|
4098
4109
|
"status": {
|
|
@@ -5354,6 +5365,47 @@
|
|
|
5354
5365
|
"unlinkSourceFailed": "לא ניתן היה לנתק את המאגר"
|
|
5355
5366
|
}
|
|
5356
5367
|
},
|
|
5368
|
+
"binaryOutput": {
|
|
5369
|
+
"heading": "פלטים בינאריים",
|
|
5370
|
+
"target": "שירות אחסון",
|
|
5371
|
+
"targetNone": "לא נרשם בשלב זה",
|
|
5372
|
+
"contextServices": "הקשר ליצירה",
|
|
5373
|
+
"misdirectedBadge": "שירות אחר",
|
|
5374
|
+
"unknownBadge": "לא בקטלוג",
|
|
5375
|
+
"storedCount": "{outcome}, פריט אחד | {outcome}, {count} פריטים",
|
|
5376
|
+
"state": {
|
|
5377
|
+
"notStarted": {
|
|
5378
|
+
"summary": "טרם התחיל",
|
|
5379
|
+
"detail": "השלב הזה טרם התחיל. כשהוא ירוץ, הוא יאחסן את הפלטים הבינאריים שלו דרך השירות שלהלן."
|
|
5380
|
+
},
|
|
5381
|
+
"configured": {
|
|
5382
|
+
"summary": "טרם נרשם דבר",
|
|
5383
|
+
"detail": "השלב הזה מוגדר לאחסן פלטים בינאריים, אך טרם דיווח על אף אחד מהם. הוא עדיין רץ, או שהסתיים לפני שדיווח."
|
|
5384
|
+
},
|
|
5385
|
+
"undeclared": {
|
|
5386
|
+
"summary": "לא הוצהרה דבר",
|
|
5387
|
+
"detail": "השלב הזה הסתיים בלי להצהיר מה איחסן. ייתכן שאיחסן משהו וייתכן שלא; בכל מקרה לא נרשם דבר."
|
|
5388
|
+
},
|
|
5389
|
+
"parseFailed": {
|
|
5390
|
+
"summary": "ההצהרה אינה קריאה",
|
|
5391
|
+
"detail": "השלב הזה הסתיים בהצהרה שהפלטפורמה לא הצליחה לקרוא, ולכן לא נרשם דבר. כל מה שאולי אוחסן חסר ברשימה שלהלן."
|
|
5392
|
+
},
|
|
5393
|
+
"declaredNone": {
|
|
5394
|
+
"summary": "לא אוחסן דבר",
|
|
5395
|
+
"detail": "הסוכן דיווח שלא איחסן פריטים בינאריים. זו תוצאה תקפה, לא כשל."
|
|
5396
|
+
},
|
|
5397
|
+
"stored": {
|
|
5398
|
+
"summary": "אוחסן"
|
|
5399
|
+
}
|
|
5400
|
+
},
|
|
5401
|
+
"warning": {
|
|
5402
|
+
"unknownServices": "צוין שירות שאינו בקטלוג: {ids}. הרשומה נשמרת כפי שהוצהרה; בדוק את המזהה מול קטלוג הלוח. | צוינו שירותים שאינם בקטלוג: {ids}. הרשומות נשמרות כפי שהוצהרו; בדוק את המזהים מול קטלוג הלוח.",
|
|
5403
|
+
"targetUnknown": "הקטלוג כבר אינו מכיל את שירות האחסון של השלב הזה ({id}), ולכן לא ניתן היה להשוות מולו דבר ממה שלהלן. רשום אותו מחדש, או הפנה את השלב לשירות אחר.",
|
|
5404
|
+
"misdirected": "פריט אחד הגיע לשירות אחר מ- {target}. | {count} פריטים הגיעו לשירות אחר מ- {target}.",
|
|
5405
|
+
"invalidEntries": "רשומה מוצהרת אחת נדחתה: לא צוינו בה שירות ומיקום. | {count} רשומות מוצהרות נדחו: לא צוינו בהן שירות ומיקום.",
|
|
5406
|
+
"omitted": "פריט נוסף אחד הוצהר מעבר למגבלת הדוח ואינו מופיע ברשימה. | {count} פריטים נוספים הוצהרו מעבר למגבלת הדוח ואינם מופיעים ברשימה."
|
|
5407
|
+
}
|
|
5408
|
+
},
|
|
5357
5409
|
"sandbox": {
|
|
5358
5410
|
"title": "Sandbox: בדיקת פרומפטים ומודלים",
|
|
5359
5411
|
"description": "נסה גרסאות פרומפט ומודלים מול fixtures מנוקדים, בניקוד של מודל שופט.",
|
|
@@ -6124,12 +6176,41 @@
|
|
|
6124
6176
|
"prompt": {
|
|
6125
6177
|
"title": "לצאת לסיור קצר?",
|
|
6126
6178
|
"intro": "סיורים מודרכים מציגים את האפליקציה ישירות על המסך: הם מדגישים את הפקדים האמיתיים ואומרים לך על מה ללחוץ.",
|
|
6127
|
-
"start": "התחל",
|
|
6128
|
-
"restart": "התחל שוב",
|
|
6129
|
-
"completed": "הושלם",
|
|
6130
6179
|
"decline": "לא תודה",
|
|
6131
6180
|
"later": "אולי מאוחר יותר",
|
|
6132
|
-
"empty": "אין עדיין סיורים זמינים לתפקיד שלך בלוח הזה."
|
|
6181
|
+
"empty": "אין עדיין סיורים זמינים לתפקיד שלך בלוח הזה.",
|
|
6182
|
+
"browse": "הצג את כל המדריכים"
|
|
6183
|
+
},
|
|
6184
|
+
"catalogue": {
|
|
6185
|
+
"title": "מדריכים",
|
|
6186
|
+
"intro": "סיורים מודרכים שמדגישים את הפקדים האמיתיים תוך כדי התקדמות. אפשר להתחיל כל אחד מהם בכל רגע ולחזור עליו כמה פעמים שתרצה.",
|
|
6187
|
+
"progress": "{completed} מתוך {total} הושלמו",
|
|
6188
|
+
"steps": "שלב אחד | {count} שלבים",
|
|
6189
|
+
"blocked": "יהיה זמין כאשר יהיו לך:",
|
|
6190
|
+
"notApplicable": "אין כרגע בלוח הזה דבר שהסיור הזה יכול להראות.",
|
|
6191
|
+
"empty": "בהתקנה הזו אין מדריכים.",
|
|
6192
|
+
"reset": "אפס התקדמות",
|
|
6193
|
+
"resetHint": "שוכח אילו מדריכים סיימת ומציע לך את הסיור שוב בכניסה הבאה."
|
|
6194
|
+
},
|
|
6195
|
+
"action": {
|
|
6196
|
+
"start": "התחל",
|
|
6197
|
+
"resume": "המשך",
|
|
6198
|
+
"restart": "התחל שוב",
|
|
6199
|
+
"continue": "חזרה לסיור"
|
|
6200
|
+
},
|
|
6201
|
+
"status": {
|
|
6202
|
+
"notStarted": "טרם הותחל",
|
|
6203
|
+
"inProgress": "בתהליך",
|
|
6204
|
+
"paused": "מושהה",
|
|
6205
|
+
"completed": "הושלם"
|
|
6206
|
+
},
|
|
6207
|
+
"requirements": {
|
|
6208
|
+
"boardWrite": "הרשאה לערוך את הלוח הזה",
|
|
6209
|
+
"sourceControl": "חיבור למערכת ניהול קוד",
|
|
6210
|
+
"service": "שירות בלוח",
|
|
6211
|
+
"task": "משימה בלוח",
|
|
6212
|
+
"waitingAnswer": "ריצה שממתינה לתשובה שלך",
|
|
6213
|
+
"finishedRun": "ריצה שהסתיימה בהצלחה"
|
|
6133
6214
|
},
|
|
6134
6215
|
"overlay": {
|
|
6135
6216
|
"next": "הבא",
|
|
@@ -6138,6 +6219,7 @@
|
|
|
6138
6219
|
"done": "סיום",
|
|
6139
6220
|
"progress": "שלב {current} מתוך {total}",
|
|
6140
6221
|
"ariaLabel": "שלב במדריך",
|
|
6222
|
+
"announcement": "שלב {current} מתוך {total}. {title}. {body}",
|
|
6141
6223
|
"abridged": "דילגנו על שלב אחד: הפקד הזה אינו חלק מהלוח הזה. | דילגנו על {count} שלבים: הפקדים האלה אינם חלק מהלוח הזה.",
|
|
6142
6224
|
"searching": "מחפש את הפקד המודגש...",
|
|
6143
6225
|
"clickHint": "לחץ על הפקד המודגש כדי להמשיך"
|
package/i18n/locales/it.json
CHANGED
|
@@ -2162,7 +2162,6 @@
|
|
|
2162
2162
|
"shortcuts": "Scorciatoie da tastiera",
|
|
2163
2163
|
"bugHunt": "Caccia ai bug",
|
|
2164
2164
|
"toggleUiMode": "Cambia modalità interfaccia",
|
|
2165
|
-
"tutorial": "Fai un tour",
|
|
2166
2165
|
"foundationalServices": "Servizi fondamentali"
|
|
2167
2166
|
},
|
|
2168
2167
|
"keywords": {
|
|
@@ -3733,7 +3732,17 @@
|
|
|
3733
3732
|
"consensusGroupsActive": "Questo passo esegue il gruppo selezionato. Deseleziona tutti i gruppi per configurare qui i partecipanti.",
|
|
3734
3733
|
"consensusGroupAlways": "sempre",
|
|
3735
3734
|
"variantLabel": "Variante del prompt",
|
|
3736
|
-
"variantShipped": "Prompt predefinito"
|
|
3735
|
+
"variantShipped": "Prompt predefinito",
|
|
3736
|
+
"binaryOutputStorage": "Archivia tramite",
|
|
3737
|
+
"binaryOutputContext": "Contesto della generazione",
|
|
3738
|
+
"binaryOutputPlaceholder": "Scegli un servizio di archiviazione",
|
|
3739
|
+
"binaryOutputContextPlaceholder": "Facoltativo: servizi che delimitano la generazione",
|
|
3740
|
+
"binaryOutputNeedsPick": "Un passo che genera output binari non ha un servizio di archiviazione scelto. Scegline uno prima di salvare.",
|
|
3741
|
+
"binaryOutputNoStorage": "Nessun servizio nel catalogo di questa board dichiara la capacità {capability}. Registrane uno, oppure aggiungi la capacità al servizio che intendevi, nei servizi fondamentali.",
|
|
3742
|
+
"binaryOutputMissing": "Questo servizio di archiviazione non è più nel catalogo; scegline un altro.",
|
|
3743
|
+
"binaryOutputNotStorage": "Questo servizio non dichiara più la capacità {capability}, quindi le esecuzioni verranno rifiutate; scegline un altro.",
|
|
3744
|
+
"binaryOutputContextMissing": "Questi servizi di contesto non sono più nel catalogo: {ids}",
|
|
3745
|
+
"binaryOutputUnavailable": "Il catalogo dei servizi fondamentali non è raggiungibile, quindi qui non si può ancora scegliere nulla."
|
|
3737
3746
|
},
|
|
3738
3747
|
"progress": {
|
|
3739
3748
|
"status": {
|
|
@@ -4384,6 +4393,47 @@
|
|
|
4384
4393
|
"unlinkSourceFailed": "Impossibile scollegare il repository"
|
|
4385
4394
|
}
|
|
4386
4395
|
},
|
|
4396
|
+
"binaryOutput": {
|
|
4397
|
+
"heading": "Output binari",
|
|
4398
|
+
"target": "Servizio di archiviazione",
|
|
4399
|
+
"targetNone": "Non registrato per questo passo",
|
|
4400
|
+
"contextServices": "Contesto della generazione",
|
|
4401
|
+
"misdirectedBadge": "Altro servizio",
|
|
4402
|
+
"unknownBadge": "Fuori catalogo",
|
|
4403
|
+
"storedCount": "{outcome}, 1 artefatto | {outcome}, {count} artefatti",
|
|
4404
|
+
"state": {
|
|
4405
|
+
"notStarted": {
|
|
4406
|
+
"summary": "Non ancora avviato",
|
|
4407
|
+
"detail": "Questo passo non è ancora iniziato. Quando verrà eseguito, archivierà i suoi output binari tramite il servizio indicato sotto."
|
|
4408
|
+
},
|
|
4409
|
+
"configured": {
|
|
4410
|
+
"summary": "Ancora nulla di registrato",
|
|
4411
|
+
"detail": "Questo passo è configurato per archiviare output binari, ma non ne ha ancora segnalato alcuno. È ancora in corso, oppure si è concluso prima di segnalarlo."
|
|
4412
|
+
},
|
|
4413
|
+
"undeclared": {
|
|
4414
|
+
"summary": "Nessuna dichiarazione",
|
|
4415
|
+
"detail": "Questo passo si è concluso senza dichiarare che cosa avesse archiviato. Potrebbe aver archiviato qualcosa oppure no; in entrambi i casi non è stato registrato nulla."
|
|
4416
|
+
},
|
|
4417
|
+
"parseFailed": {
|
|
4418
|
+
"summary": "Dichiarazione illeggibile",
|
|
4419
|
+
"detail": "Questo passo si è concluso con una dichiarazione che la piattaforma non ha potuto leggere, quindi non è stato registrato nulla. Ciò che ha archiviato manca nell'elenco qui sotto."
|
|
4420
|
+
},
|
|
4421
|
+
"declaredNone": {
|
|
4422
|
+
"summary": "Nulla archiviato",
|
|
4423
|
+
"detail": "L'agente ha segnalato di non aver archiviato alcun artefatto binario. È un esito valido, non un errore."
|
|
4424
|
+
},
|
|
4425
|
+
"stored": {
|
|
4426
|
+
"summary": "Archiviato"
|
|
4427
|
+
}
|
|
4428
|
+
},
|
|
4429
|
+
"warning": {
|
|
4430
|
+
"unknownServices": "Ha indicato un servizio che il catalogo non contiene: {ids}. La voce viene conservata come dichiarata; verifica l'identificativo nel catalogo della board. | Ha indicato servizi che il catalogo non contiene: {ids}. Le voci vengono conservate come dichiarate; verifica gli identificativi nel catalogo della board.",
|
|
4431
|
+
"targetUnknown": "Il catalogo non contiene più il servizio di archiviazione di questo passo ({id}), quindi nulla di quanto segue ha potuto essere verificato rispetto ad esso. Registralo di nuovo, oppure indirizza il passo a un altro servizio.",
|
|
4432
|
+
"misdirected": "1 artefatto è finito su un servizio diverso da {target}. | {count} artefatti sono finiti su un servizio diverso da {target}.",
|
|
4433
|
+
"invalidEntries": "1 voce dichiarata è stata scartata: non indicava né servizio né posizione. | {count} voci dichiarate sono state scartate: non indicavano né servizio né posizione.",
|
|
4434
|
+
"omitted": "È stato dichiarato 1 altro artefatto oltre il limite del rapporto e non compare nell'elenco. | Sono stati dichiarati altri {count} artefatti oltre il limite del rapporto e non compaiono nell'elenco."
|
|
4435
|
+
}
|
|
4436
|
+
},
|
|
4387
4437
|
"brainstorm": {
|
|
4388
4438
|
"title": {
|
|
4389
4439
|
"architecture": "Brainstorm sull'architettura",
|
|
@@ -4823,7 +4873,9 @@
|
|
|
4823
4873
|
"accountSettings": "Impostazioni dell'account",
|
|
4824
4874
|
"operatorDashboard": "Osservabilità della piattaforma",
|
|
4825
4875
|
"reports": "Report",
|
|
4826
|
-
"foundationalServices": "Servizi fondamentali"
|
|
4876
|
+
"foundationalServices": "Servizi fondamentali",
|
|
4877
|
+
"tutorials": "Tutorial",
|
|
4878
|
+
"help": "Aiuto"
|
|
4827
4879
|
},
|
|
4828
4880
|
"errors": {
|
|
4829
4881
|
"generic": {
|
|
@@ -6125,12 +6177,41 @@
|
|
|
6125
6177
|
"prompt": {
|
|
6126
6178
|
"title": "Fare un rapido tour?",
|
|
6127
6179
|
"intro": "I tour guidati ti mostrano l’applicazione direttamente sullo schermo: evidenziano i controlli reali e ti dicono dove cliccare.",
|
|
6128
|
-
"start": "Inizia",
|
|
6129
|
-
"restart": "Ripeti",
|
|
6130
|
-
"completed": "Completato",
|
|
6131
6180
|
"decline": "No grazie",
|
|
6132
6181
|
"later": "Forse più tardi",
|
|
6133
|
-
"empty": "Non ci sono ancora tour disponibili per il tuo ruolo su questa board."
|
|
6182
|
+
"empty": "Non ci sono ancora tour disponibili per il tuo ruolo su questa board.",
|
|
6183
|
+
"browse": "Vedi tutti i tutorial"
|
|
6184
|
+
},
|
|
6185
|
+
"catalogue": {
|
|
6186
|
+
"title": "Tutorial",
|
|
6187
|
+
"intro": "Tour guidati che evidenziano i controlli reali mentre procedi. Puoi avviarne uno quando vuoi e ripeterlo tutte le volte che ti serve.",
|
|
6188
|
+
"progress": "{completed} di {total} completati",
|
|
6189
|
+
"steps": "1 passaggio | {count} passaggi",
|
|
6190
|
+
"blocked": "Disponibile quando avrai:",
|
|
6191
|
+
"notApplicable": "In questo momento non c'è nulla su questa board che questo tour possa mostrare.",
|
|
6192
|
+
"empty": "Questa installazione non include tutorial.",
|
|
6193
|
+
"reset": "Reimposta i progressi",
|
|
6194
|
+
"resetHint": "Dimentica quali tutorial hai completato e ti riproporrà il tour al prossimo accesso."
|
|
6195
|
+
},
|
|
6196
|
+
"action": {
|
|
6197
|
+
"start": "Inizia",
|
|
6198
|
+
"resume": "Riprendi",
|
|
6199
|
+
"restart": "Ripeti",
|
|
6200
|
+
"continue": "Torna al tour"
|
|
6201
|
+
},
|
|
6202
|
+
"status": {
|
|
6203
|
+
"notStarted": "Non iniziato",
|
|
6204
|
+
"inProgress": "In corso",
|
|
6205
|
+
"paused": "In pausa",
|
|
6206
|
+
"completed": "Completato"
|
|
6207
|
+
},
|
|
6208
|
+
"requirements": {
|
|
6209
|
+
"boardWrite": "L'autorizzazione a modificare questa board",
|
|
6210
|
+
"sourceControl": "Un sistema di controllo del codice collegato",
|
|
6211
|
+
"service": "Un servizio sulla board",
|
|
6212
|
+
"task": "Un'attività sulla board",
|
|
6213
|
+
"waitingAnswer": "Un'esecuzione in attesa di una tua risposta",
|
|
6214
|
+
"finishedRun": "Un'esecuzione conclusa con successo"
|
|
6134
6215
|
},
|
|
6135
6216
|
"overlay": {
|
|
6136
6217
|
"next": "Avanti",
|
|
@@ -6139,6 +6220,7 @@
|
|
|
6139
6220
|
"done": "Fine",
|
|
6140
6221
|
"progress": "Passaggio {current} di {total}",
|
|
6141
6222
|
"ariaLabel": "Passaggio del tutorial",
|
|
6223
|
+
"announcement": "Passaggio {current} di {total}. {title}. {body}",
|
|
6142
6224
|
"abridged": "1 passaggio è stato saltato: quel controllo non fa parte di questa board. | {count} passaggi sono stati saltati: quei controlli non fanno parte di questa board.",
|
|
6143
6225
|
"searching": "Ricerca del controllo evidenziato...",
|
|
6144
6226
|
"clickHint": "Clicca sul controllo evidenziato per continuare"
|