@cat-factory/app 0.256.3 → 0.258.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/binaryCandidates/BinaryCandidatesWindow.vue +284 -0
- package/app/components/binaryOutput/BinaryOutputReport.vue +75 -0
- package/app/components/board/AddTaskModal.vue +38 -12
- package/app/components/board/RecurringPipelineModal.vue +24 -12
- package/app/components/board/nodes/TaskCard.vue +34 -7
- package/app/components/forkDecision/ForkDecisionWindow.vue +3 -1
- package/app/components/panels/AgentStepDetail.vue +42 -20
- package/app/components/panels/InspectorPanel.vue +39 -0
- package/app/components/panels/ResultWindowShell.logic.spec.ts +4 -0
- package/app/components/panels/inspector/TaskExecution.vue +34 -34
- package/app/components/pipeline/BinaryOutputStepPicker.logic.spec.ts +119 -1
- package/app/components/pipeline/BinaryOutputStepPicker.logic.ts +115 -1
- package/app/components/pipeline/BinaryOutputStepPicker.vue +463 -1
- package/app/components/pipeline/PipelineBuilder.vue +44 -0
- package/app/components/pipeline/PipelinePreview.vue +20 -1
- package/app/components/pipeline/PipelineProgress.vue +50 -0
- package/app/composables/api/binaryCandidates.ts +36 -0
- package/app/composables/api/execution.ts +19 -0
- package/app/composables/useApi.ts +2 -0
- package/app/composables/usePipelineHealth.spec.ts +42 -5
- package/app/composables/usePipelineHealth.ts +109 -48
- package/app/modular/agent-kinds.ts +5 -0
- package/app/modular/result-views.ts +4 -0
- package/app/stores/binaryCandidates.ts +89 -0
- package/app/stores/environmentWizard/context.ts +0 -2
- package/app/stores/environmentWizard/flow.ts +11 -6
- package/app/stores/environmentWizard.ts +12 -11
- package/app/stores/execution/commands.ts +26 -1
- package/app/stores/pipelines/draftActions.ts +2 -0
- package/app/stores/pipelines/draftStepConfig.ts +4 -161
- package/app/stores/pipelines/draftStepOptions.ts +204 -0
- package/app/stores/ui/resultViews.ts +8 -6
- package/app/stores/ui/runStepOpeners.ts +23 -1
- package/app/types/domain.ts +6 -0
- package/app/types/execution.ts +5 -0
- package/app/utils/agentPalette.spec.ts +26 -0
- package/app/utils/agentPalette.ts +9 -4
- package/app/utils/binaryCandidates.spec.ts +110 -0
- package/app/utils/binaryCandidates.ts +126 -0
- package/app/utils/binaryOutput.spec.ts +122 -1
- package/app/utils/binaryOutput.ts +149 -2
- package/app/utils/catalog.spec.ts +24 -0
- package/app/utils/catalog.ts +21 -4
- package/app/utils/pipeline.spec.ts +35 -3
- package/app/utils/pipeline.ts +54 -3
- package/app/utils/pipelineRender.spec.ts +122 -1
- package/app/utils/pipelineRender.ts +113 -2
- package/i18n/locales/de.json +107 -3
- package/i18n/locales/en.json +107 -3
- package/i18n/locales/es.json +107 -3
- package/i18n/locales/fr.json +107 -3
- package/i18n/locales/he.json +107 -3
- package/i18n/locales/it.json +107 -3
- package/i18n/locales/ja.json +107 -3
- package/i18n/locales/pl.json +107 -3
- package/i18n/locales/tr.json +107 -3
- package/i18n/locales/uk.json +107 -3
- package/i18n/plural-forms.spec.ts +15 -0
- package/package.json +2 -2
package/i18n/locales/es.json
CHANGED
|
@@ -1109,6 +1109,7 @@
|
|
|
1109
1109
|
},
|
|
1110
1110
|
"chooseApproach": "Elegir enfoque",
|
|
1111
1111
|
"triageFollowUps": "Decidir seguimientos",
|
|
1112
|
+
"chooseCandidates": "Decidir candidatos",
|
|
1112
1113
|
"elapsedTooltip": "Tiempo transcurrido en este paso",
|
|
1113
1114
|
"reviewFindings": "Revisar hallazgos",
|
|
1114
1115
|
"dryRun": "Ejecución de prueba",
|
|
@@ -1387,8 +1388,10 @@
|
|
|
1387
1388
|
"decisionRequired": "Se requiere una decisión",
|
|
1388
1389
|
"followUpsParked": "El Coder planteó seguimientos que necesitan una decisión antes de que la ejecución pueda continuar. Resuelve cada elemento (crear, devolver, responder o descartar) en la ventana de seguimientos.",
|
|
1389
1390
|
"forkParked": "Este paso del Coder espera a que se elija un enfoque de implementación antes de escribir código. Elige un enfoque propuesto (o introduce el tuyo) en la ventana de decisión.",
|
|
1391
|
+
"candidatesParked": "Este paso generó candidatos y espera a que alguien elija cuáles conservar antes de entregar nada. Compáralos y conserva los que quieras en la ventana de candidatos.",
|
|
1390
1392
|
"openFollowUps": "Abrir seguimientos",
|
|
1391
1393
|
"chooseApproach": "Elegir enfoque",
|
|
1394
|
+
"chooseCandidates": "Elegir candidatos",
|
|
1392
1395
|
"expandAll": "Expandir todas las secciones",
|
|
1393
1396
|
"collapseAll": "Contraer todas las secciones",
|
|
1394
1397
|
"copyRawOutput": "Copiar salida sin procesar",
|
|
@@ -1545,6 +1548,8 @@
|
|
|
1545
1548
|
"priorDocHint": "De la revisión anterior. Úsalo como base: edita la descripción de arriba y reenvíala.",
|
|
1546
1549
|
"bootstrapping": "Inicializando…",
|
|
1547
1550
|
"viewRequirements": "Ver requisitos",
|
|
1551
|
+
"mapService": "Mapear servicio",
|
|
1552
|
+
"mapServiceNoRepo": "Vincula primero un repositorio a este servicio: todavía no hay nada que mapear.",
|
|
1548
1553
|
"reRun": "Reejecutar",
|
|
1549
1554
|
"run": "Ejecutar",
|
|
1550
1555
|
"focus": "Enfocar",
|
|
@@ -4600,7 +4605,11 @@
|
|
|
4600
4605
|
"preview": {
|
|
4601
4606
|
"stepCount": "{count} paso | {count} pasos",
|
|
4602
4607
|
"gateCount": "{count} aprobación | {count} aprobaciones",
|
|
4603
|
-
"gated": "Aprobación humana después de este paso"
|
|
4608
|
+
"gated": "Aprobación humana después de este paso",
|
|
4609
|
+
"conditionalCount": "{count} paso condicional | {count} pasos condicionales",
|
|
4610
|
+
"conditionEstimate": "Se ejecuta solo si la estimación de la tarea supera los umbrales de este paso",
|
|
4611
|
+
"conditionFrontend": "Se ejecuta solo si la tarea modifica un servicio de frontend",
|
|
4612
|
+
"conditionBackend": "Se ejecuta solo si la tarea modifica un servicio que no es de frontend"
|
|
4604
4613
|
},
|
|
4605
4614
|
"picker": {
|
|
4606
4615
|
"noneHint": "Sin pipeline predeterminado. Eliges uno al ejecutar la tarea.",
|
|
@@ -4686,6 +4695,11 @@
|
|
|
4686
4695
|
"edit": "Editar este pipeline",
|
|
4687
4696
|
"delete": "Eliminar este pipeline",
|
|
4688
4697
|
"disabledStepTooltip": "Desactivado, omitido al ejecutar",
|
|
4698
|
+
"condition": {
|
|
4699
|
+
"always": "Se ejecuta en todas las tareas: haz clic para condicionarlo",
|
|
4700
|
+
"frontend": "Se ejecuta solo en tareas que modifican un servicio de frontend",
|
|
4701
|
+
"backend": "Se ejecuta solo en tareas que modifican un servicio que no es de frontend"
|
|
4702
|
+
},
|
|
4689
4703
|
"cancelEdit": "Cancelar edición",
|
|
4690
4704
|
"clear": "Limpiar",
|
|
4691
4705
|
"update": "Actualizar pipeline",
|
|
@@ -4766,7 +4780,51 @@
|
|
|
4766
4780
|
"3d-model": "Modelos 3D",
|
|
4767
4781
|
"3d-scene": "Escenas 3D",
|
|
4768
4782
|
"document": "Documentos"
|
|
4769
|
-
}
|
|
4783
|
+
},
|
|
4784
|
+
"binaryCapability": {
|
|
4785
|
+
"reference-image": "Imagen de referencia",
|
|
4786
|
+
"multi-reference": "Varias imágenes de referencia",
|
|
4787
|
+
"instruction-edit": "Edición por instrucción",
|
|
4788
|
+
"mask-edit": "Edición con máscara",
|
|
4789
|
+
"negative-prompt": "Prompt negativo",
|
|
4790
|
+
"seed": "Semilla fija",
|
|
4791
|
+
"aspect-ratio": "Relación de aspecto",
|
|
4792
|
+
"exact-size": "Tamaño exacto",
|
|
4793
|
+
"candidate-batch": "Varios candidatos por llamada",
|
|
4794
|
+
"upscale": "Ampliación",
|
|
4795
|
+
"transparent-background": "Fondo transparente",
|
|
4796
|
+
"tileable": "Mosaico sin costuras"
|
|
4797
|
+
},
|
|
4798
|
+
"binaryCapabilityUnknown": "{capability} (una capacidad que esta instalación no define)",
|
|
4799
|
+
"binaryCapabilityUnsupported": "Ninguna integración seleccionada admite {capabilities}, que las opciones de generación de este paso solicitan. Quita la opción o selecciona una integración que declare la capacidad.",
|
|
4800
|
+
"binaryCapabilityUnverifiable": "Ninguna integración seleccionada declara admitir {capabilities}, pero una de ellas no declara capacidad alguna, así que no se pudo comprobar. El paso arranca igualmente; confírmalo en la API de la integración.",
|
|
4801
|
+
"binaryReferenceImages": "Imágenes de referencia",
|
|
4802
|
+
"binaryReferenceImagesPlaceholder": "rol{'|'}ubicación{'|'}servicio, una por línea",
|
|
4803
|
+
"binaryReferenceImagesUnusable": "No se guardaron como referencia: {entries}. Cada línea debe ser rol{'|'}ubicación, con el rol style, subject, composition o base.",
|
|
4804
|
+
"binaryEditMode": "Editar existente",
|
|
4805
|
+
"binaryEditModeNone": "Generar nuevo",
|
|
4806
|
+
"binaryEditModeInstruction": "Con una instrucción",
|
|
4807
|
+
"binaryEditModeMask": "Región enmascarada",
|
|
4808
|
+
"binaryEditInstruction": "Qué cambiar",
|
|
4809
|
+
"binaryEditInstructionPlaceholder": "p. ej. sustituir el cielo",
|
|
4810
|
+
"binaryNegativePrompt": "Prompt negativo",
|
|
4811
|
+
"binaryNegativePromptPlaceholder": "qué evitar",
|
|
4812
|
+
"binaryAspectRatio": "Relación de aspecto",
|
|
4813
|
+
"binaryAspectRatioPlaceholder": "16:9",
|
|
4814
|
+
"binaryOutputSize": "Tamaño de salida",
|
|
4815
|
+
"binaryOutputSizeWidth": "Ancho",
|
|
4816
|
+
"binaryOutputSizeHeight": "Alto",
|
|
4817
|
+
"binaryOutputSizeIncomplete": "No se guardó: un tamaño exacto necesita un ancho y un alto.",
|
|
4818
|
+
"binaryOutputSizeAmbiguous": "Un tamaño de salida exacto no se puede combinar con {options}: cada uno indica las dimensiones entregadas por segunda vez. Conserva el que sea el requisito.",
|
|
4819
|
+
"binarySeed": "Semilla",
|
|
4820
|
+
"binarySeedPlaceholder": "semilla fija",
|
|
4821
|
+
"binaryTransparent": "Fondo transparente",
|
|
4822
|
+
"binaryTileable": "Mosaico sin costuras",
|
|
4823
|
+
"binaryUpscale": "Ampliar el resultado",
|
|
4824
|
+
"binaryComparison": "Comparar candidatos antes de entregar",
|
|
4825
|
+
"binaryPerGenerator": "Candidatos por integración",
|
|
4826
|
+
"binaryMultiSelect": "Permitir conservar más de uno",
|
|
4827
|
+
"binaryComparisonUnreachable": "Este paso solo puede producir un candidato por sujeto, así que no habría nada que comparar y el único se conservaría sin preguntar. Selecciona una segunda integración o sube el número de candidatos por integración."
|
|
4770
4828
|
},
|
|
4771
4829
|
"progress": {
|
|
4772
4830
|
"status": {
|
|
@@ -4813,9 +4871,20 @@
|
|
|
4813
4871
|
"proposing": "Proponiendo enfoques…",
|
|
4814
4872
|
"choose": "Elegir un enfoque"
|
|
4815
4873
|
},
|
|
4874
|
+
"binaryCandidates": {
|
|
4875
|
+
"choose": "Elegir candidatos"
|
|
4876
|
+
},
|
|
4816
4877
|
"elapsedTooltip": "Tiempo transcurrido en este paso",
|
|
4817
4878
|
"prReview": {
|
|
4818
4879
|
"review": "Revisar hallazgos"
|
|
4880
|
+
},
|
|
4881
|
+
"skipped": {
|
|
4882
|
+
"gated": "Omitido: la estimación de la tarea quedó por debajo de los umbrales de este paso.",
|
|
4883
|
+
"conditionFrontend": "Omitido: esta tarea no modifica ningún servicio de frontend, así que no hay interfaz que probar.",
|
|
4884
|
+
"conditionBackend": "Omitido: esta tarea solo modifica un servicio de frontend, así que no hay API detrás que probar.",
|
|
4885
|
+
"producerSkipped": "Omitido: el paso que revisa fue omitido, así que no hay nada que evaluar.",
|
|
4886
|
+
"runComplete": "Omitido: la ejecución terminó antes de este paso y no quedaba nada que hacer.",
|
|
4887
|
+
"unknown": "Omitido: este paso no se ejecutó."
|
|
4819
4888
|
}
|
|
4820
4889
|
},
|
|
4821
4890
|
"health": {
|
|
@@ -6259,13 +6328,21 @@
|
|
|
6259
6328
|
"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.",
|
|
6260
6329
|
"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.",
|
|
6261
6330
|
"undeliveredMediaTypes": "Este paso debía entregar {formats} y ningún artefacto de abajo informa ese formato. | Este paso debía entregar {formats} y ningún artefacto de abajo informa esos formatos.",
|
|
6331
|
+
"missized": "1 artefacto se entregó con un tamaño distinto de {width}×{height}. | {count} artefactos se entregaron con un tamaño distinto de {width}×{height}.",
|
|
6332
|
+
"sizeUnreported": "1 artefacto no informa dimensiones, así que no se pudo comprobar su tamaño. | {count} artefactos no informan dimensiones, así que no se pudieron comprobar sus tamaños.",
|
|
6262
6333
|
"misdirected": "1 artefacto fue a un servicio distinto de {target}. | {count} artefactos fueron a un servicio distinto de {target}.",
|
|
6263
6334
|
"invalidEntries": "Se descartó 1 entrada declarada: no nombraba servicio ni ubicación. | Se descartaron {count} entradas declaradas: no nombraban servicio ni ubicación.",
|
|
6264
6335
|
"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.",
|
|
6265
6336
|
"unknownGenerators": "Nombró una integración generativa que esta instalación no registra: {ids}. La entrada se conserva tal como se declaró; la integración se registra en el código de la instalación, no en este espacio de trabajo. | Nombró integraciones generativas que esta instalación no registra: {ids}. Sus entradas se conservan tal como se declararon; las integraciones se registran en el código de la instalación, no en este espacio de trabajo.",
|
|
6266
6337
|
"generatorsUnverified": "No se han podido leer las integraciones generativas de esta instalación al cerrarse el paso, así que las integraciones indicadas abajo no se han contrastado con ellas. Las entradas se conservan tal como se declararon."
|
|
6267
6338
|
},
|
|
6268
|
-
"unknownGeneratorBadge": "No registrada"
|
|
6339
|
+
"unknownGeneratorBadge": "No registrada",
|
|
6340
|
+
"missizedBadge": "Tamaño incorrecto",
|
|
6341
|
+
"candidates": {
|
|
6342
|
+
"automatic": "Se generó {total} candidato y se conservó automáticamente, sin revisión.",
|
|
6343
|
+
"chosen": "Se conservaron {kept} de {total} candidatos generados.",
|
|
6344
|
+
"awaiting": "Se generaron {total} candidatos y están a la espera de compararse."
|
|
6345
|
+
}
|
|
6269
6346
|
},
|
|
6270
6347
|
"sandbox": {
|
|
6271
6348
|
"title": "Sandbox: pruebas de prompts y modelos",
|
|
@@ -7551,5 +7628,32 @@
|
|
|
7551
7628
|
"resolverFailed": "Esta herramienta falló al calcular su dirección. La causa está en la consola del navegador, para quien mantiene esta instalación.",
|
|
7552
7629
|
"unsafeUrl": "Esta herramienta devolvió una dirección que no es un enlace web, así que no se abrió."
|
|
7553
7630
|
}
|
|
7631
|
+
},
|
|
7632
|
+
"binaryCandidates": {
|
|
7633
|
+
"title": "Candidatos generados",
|
|
7634
|
+
"titleWithBlock": "Candidatos generados: {title}",
|
|
7635
|
+
"subtitle": "Compara lo que produjo cada integración y conserva lo que quieras",
|
|
7636
|
+
"automatic": "Solo se generó un candidato, así que se conservó automáticamente. Nadie lo revisó.",
|
|
7637
|
+
"unlabelledSubject": "Sin sujeto declarado",
|
|
7638
|
+
"noPreview": "Sin vista previa disponible",
|
|
7639
|
+
"fromGenerator": "De {generator}",
|
|
7640
|
+
"unattributed": "Sin integración registrada",
|
|
7641
|
+
"kept": "Conservado",
|
|
7642
|
+
"keptAs": "Conservado como {id}",
|
|
7643
|
+
"storeAsPlaceholder": "guardar con este id",
|
|
7644
|
+
"notePlaceholder": "Algo que cambiar al guardarlos (opcional)",
|
|
7645
|
+
"missingAlias": "Da a cada candidato conservado su propio id, o todos se guardarían con el mismo nombre.",
|
|
7646
|
+
"duplicateAlias": "Dos candidatos conservados comparten un id. Dos artefactos en una ubicación son un artefacto.",
|
|
7647
|
+
"keepAction": "Conservar {count}",
|
|
7648
|
+
"warning": {
|
|
7649
|
+
"omitted": "Se descartaron {count} candidatos por encima del límite, así que esta lista es un prefijo. ",
|
|
7650
|
+
"invalid": "{count} entradas declaradas eran ilegibles y faltan aquí. ",
|
|
7651
|
+
"previews": "Se rechazaron {count} enlaces de vista previa, así que esos candidatos se muestran sin imagen."
|
|
7652
|
+
},
|
|
7653
|
+
"noChoice": {
|
|
7654
|
+
"undeclared": "El paso nunca declaró sus candidatos, así que no había nada que comparar. La ejecución continuó.",
|
|
7655
|
+
"parseFailed": "No se pudo leer la declaración de candidatos del paso, así que no había nada que comparar. La ejecución continuó.",
|
|
7656
|
+
"noCandidates": "El paso no preparó ningún candidato, así que no había nada que comparar. La ejecución continuó."
|
|
7657
|
+
}
|
|
7554
7658
|
}
|
|
7555
7659
|
}
|
package/i18n/locales/fr.json
CHANGED
|
@@ -1109,6 +1109,7 @@
|
|
|
1109
1109
|
},
|
|
1110
1110
|
"chooseApproach": "Choisir l'approche",
|
|
1111
1111
|
"triageFollowUps": "Trancher les suivis",
|
|
1112
|
+
"chooseCandidates": "Trancher les candidats",
|
|
1112
1113
|
"elapsedTooltip": "Temps écoulé sur cette étape",
|
|
1113
1114
|
"reviewFindings": "Examiner les remarques",
|
|
1114
1115
|
"dryRun": "Exécution à blanc",
|
|
@@ -1387,8 +1388,10 @@
|
|
|
1387
1388
|
"decisionRequired": "Décision requise",
|
|
1388
1389
|
"followUpsParked": "Le Coder a soulevé des suivis qui doivent être tranchés avant que l'exécution puisse continuer. Traitez chaque élément (créer, renvoyer, répondre ou écarter) dans la fenêtre des suivis.",
|
|
1389
1390
|
"forkParked": "Cette étape du Coder attend le choix d'une approche d'implémentation avant d'écrire du code. Choisissez une approche proposée (ou saisissez la vôtre) dans la fenêtre de décision.",
|
|
1391
|
+
"candidatesParked": "Cette étape a généré des candidats et attend que quelqu'un choisisse ceux à conserver avant de livrer quoi que ce soit. Comparez-les et conservez ceux que vous voulez dans la fenêtre des candidats.",
|
|
1390
1392
|
"openFollowUps": "Ouvrir les suivis",
|
|
1391
1393
|
"chooseApproach": "Choisir l'approche",
|
|
1394
|
+
"chooseCandidates": "Choisir les candidats",
|
|
1392
1395
|
"expandAll": "Développer toutes les sections",
|
|
1393
1396
|
"collapseAll": "Réduire toutes les sections",
|
|
1394
1397
|
"copyRawOutput": "Copier la sortie brute",
|
|
@@ -1545,6 +1548,8 @@
|
|
|
1545
1548
|
"priorDocHint": "Issu de la revue précédente. Utilisez-le comme base : modifiez la description ci-dessus et resoumettez.",
|
|
1546
1549
|
"bootstrapping": "Initialisation…",
|
|
1547
1550
|
"viewRequirements": "Voir les exigences",
|
|
1551
|
+
"mapService": "Cartographier le service",
|
|
1552
|
+
"mapServiceNoRepo": "Liez d'abord un dépôt à ce service : il n'y a encore rien à cartographier.",
|
|
1548
1553
|
"reRun": "Relancer",
|
|
1549
1554
|
"run": "Exécuter",
|
|
1550
1555
|
"focus": "Cibler",
|
|
@@ -4600,7 +4605,11 @@
|
|
|
4600
4605
|
"preview": {
|
|
4601
4606
|
"stepCount": "{count} étape | {count} étapes",
|
|
4602
4607
|
"gateCount": "{count} validation | {count} validations",
|
|
4603
|
-
"gated": "Validation humaine après cette étape"
|
|
4608
|
+
"gated": "Validation humaine après cette étape",
|
|
4609
|
+
"conditionalCount": "{count} étape conditionnelle | {count} étapes conditionnelles",
|
|
4610
|
+
"conditionEstimate": "S'exécute uniquement si l'estimation de la tâche dépasse les seuils de cette étape",
|
|
4611
|
+
"conditionFrontend": "S'exécute uniquement si la tâche modifie un service frontend",
|
|
4612
|
+
"conditionBackend": "S'exécute uniquement si la tâche modifie un service non frontend"
|
|
4604
4613
|
},
|
|
4605
4614
|
"picker": {
|
|
4606
4615
|
"noneHint": "Aucun pipeline par défaut. Vous en choisissez un au lancement de la tâche.",
|
|
@@ -4686,6 +4695,11 @@
|
|
|
4686
4695
|
"edit": "Modifier ce pipeline",
|
|
4687
4696
|
"delete": "Supprimer ce pipeline",
|
|
4688
4697
|
"disabledStepTooltip": "Désactivée, ignorée à l'exécution",
|
|
4698
|
+
"condition": {
|
|
4699
|
+
"always": "S'exécute pour chaque tâche — cliquez pour le rendre conditionnel",
|
|
4700
|
+
"frontend": "S'exécute uniquement pour les tâches qui modifient un service frontend",
|
|
4701
|
+
"backend": "S'exécute uniquement pour les tâches qui modifient un service non frontend"
|
|
4702
|
+
},
|
|
4689
4703
|
"cancelEdit": "Annuler la modification",
|
|
4690
4704
|
"clear": "Effacer",
|
|
4691
4705
|
"update": "Mettre à jour le pipeline",
|
|
@@ -4766,7 +4780,51 @@
|
|
|
4766
4780
|
"3d-model": "Modèles 3D",
|
|
4767
4781
|
"3d-scene": "Scènes 3D",
|
|
4768
4782
|
"document": "Documents"
|
|
4769
|
-
}
|
|
4783
|
+
},
|
|
4784
|
+
"binaryCapability": {
|
|
4785
|
+
"reference-image": "Image de référence",
|
|
4786
|
+
"multi-reference": "Plusieurs images de référence",
|
|
4787
|
+
"instruction-edit": "Édition par instruction",
|
|
4788
|
+
"mask-edit": "Édition par masque",
|
|
4789
|
+
"negative-prompt": "Prompt négatif",
|
|
4790
|
+
"seed": "Graine fixe",
|
|
4791
|
+
"aspect-ratio": "Format d’image",
|
|
4792
|
+
"exact-size": "Taille exacte",
|
|
4793
|
+
"candidate-batch": "Plusieurs candidats par appel",
|
|
4794
|
+
"upscale": "Agrandissement",
|
|
4795
|
+
"transparent-background": "Fond transparent",
|
|
4796
|
+
"tileable": "Motif raccordable"
|
|
4797
|
+
},
|
|
4798
|
+
"binaryCapabilityUnknown": "{capability} (une capacité que ce déploiement ne définit pas)",
|
|
4799
|
+
"binaryCapabilityUnsupported": "Aucune intégration sélectionnée ne prend en charge {capabilities}, que les options de génération de cette étape demandent. Retirez l’option ou sélectionnez une intégration qui déclare la capacité.",
|
|
4800
|
+
"binaryCapabilityUnverifiable": "Aucune intégration sélectionnée ne déclare prendre en charge {capabilities}, mais l’une d’elles ne déclare aucune capacité, la vérification est donc impossible. L’étape démarre quand même ; confirmez-le dans l’API de l’intégration.",
|
|
4801
|
+
"binaryReferenceImages": "Images de référence",
|
|
4802
|
+
"binaryReferenceImagesPlaceholder": "rôle{'|'}emplacement{'|'}service, une par ligne",
|
|
4803
|
+
"binaryReferenceImagesUnusable": "Non enregistrées comme référence : {entries}. Chaque ligne doit être rôle{'|'}emplacement, le rôle étant style, subject, composition ou base.",
|
|
4804
|
+
"binaryEditMode": "Modifier l’existant",
|
|
4805
|
+
"binaryEditModeNone": "Générer du neuf",
|
|
4806
|
+
"binaryEditModeInstruction": "À partir d’une instruction",
|
|
4807
|
+
"binaryEditModeMask": "Zone masquée",
|
|
4808
|
+
"binaryEditInstruction": "Ce qu’il faut changer",
|
|
4809
|
+
"binaryEditInstructionPlaceholder": "ex. remplacer le ciel",
|
|
4810
|
+
"binaryNegativePrompt": "Prompt négatif",
|
|
4811
|
+
"binaryNegativePromptPlaceholder": "ce qu’il faut éviter",
|
|
4812
|
+
"binaryAspectRatio": "Format d’image",
|
|
4813
|
+
"binaryAspectRatioPlaceholder": "16:9",
|
|
4814
|
+
"binaryOutputSize": "Taille de sortie",
|
|
4815
|
+
"binaryOutputSizeWidth": "Largeur",
|
|
4816
|
+
"binaryOutputSizeHeight": "Hauteur",
|
|
4817
|
+
"binaryOutputSizeIncomplete": "Non enregistré : une taille exacte demande une largeur et une hauteur.",
|
|
4818
|
+
"binaryOutputSizeAmbiguous": "Une taille de sortie exacte ne se combine pas avec {options} : chacun énonce une seconde fois les dimensions livrées. Gardez celui qui est l’exigence.",
|
|
4819
|
+
"binarySeed": "Graine",
|
|
4820
|
+
"binarySeedPlaceholder": "graine fixe",
|
|
4821
|
+
"binaryTransparent": "Fond transparent",
|
|
4822
|
+
"binaryTileable": "Motif raccordable",
|
|
4823
|
+
"binaryUpscale": "Agrandir le résultat",
|
|
4824
|
+
"binaryComparison": "Comparer les candidats avant livraison",
|
|
4825
|
+
"binaryPerGenerator": "Candidats par intégration",
|
|
4826
|
+
"binaryMultiSelect": "Autoriser à en conserver plusieurs",
|
|
4827
|
+
"binaryComparisonUnreachable": "Cette étape ne peut produire qu’un candidat par sujet : il n’y aurait rien à comparer et le seul serait conservé sans être présenté. Sélectionnez une deuxième intégration ou augmentez le nombre de candidats par intégration."
|
|
4770
4828
|
},
|
|
4771
4829
|
"progress": {
|
|
4772
4830
|
"status": {
|
|
@@ -4813,9 +4871,20 @@
|
|
|
4813
4871
|
"proposing": "Proposition d'approches…",
|
|
4814
4872
|
"choose": "Choisir une approche"
|
|
4815
4873
|
},
|
|
4874
|
+
"binaryCandidates": {
|
|
4875
|
+
"choose": "Choisir des candidats"
|
|
4876
|
+
},
|
|
4816
4877
|
"elapsedTooltip": "Temps écoulé sur cette étape",
|
|
4817
4878
|
"prReview": {
|
|
4818
4879
|
"review": "Examiner les remarques"
|
|
4880
|
+
},
|
|
4881
|
+
"skipped": {
|
|
4882
|
+
"gated": "Étape ignorée : l’estimation de la tâche est restée sous les seuils de cette étape.",
|
|
4883
|
+
"conditionFrontend": "Étape ignorée : cette tâche ne modifie aucun service frontend, il n’y a donc pas d’interface à tester.",
|
|
4884
|
+
"conditionBackend": "Étape ignorée : cette tâche ne modifie qu’un service frontend, il n’y a donc pas d’API derrière à tester.",
|
|
4885
|
+
"producerSkipped": "Étape ignorée : l’étape qu’elle relit a été ignorée, il n’y a rien à évaluer.",
|
|
4886
|
+
"runComplete": "Étape ignorée : l’exécution s’est terminée avant elle, sans rien à faire.",
|
|
4887
|
+
"unknown": "Étape ignorée : elle n’a pas été exécutée."
|
|
4819
4888
|
}
|
|
4820
4889
|
},
|
|
4821
4890
|
"health": {
|
|
@@ -6259,13 +6328,21 @@
|
|
|
6259
6328
|
"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.",
|
|
6260
6329
|
"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.",
|
|
6261
6330
|
"undeliveredMediaTypes": "Cette étape devait livrer {formats}, et aucun artefact ci-dessous ne signale ce format. | Cette étape devait livrer {formats}, et aucun artefact ci-dessous ne signale ces formats.",
|
|
6331
|
+
"missized": "1 artefact a été livré dans une taille autre que {width}×{height}. | {count} artefacts ont été livrés dans une taille autre que {width}×{height}.",
|
|
6332
|
+
"sizeUnreported": "1 artefact ne signale aucune dimension, sa taille n’a donc pas pu être vérifiée. | {count} artefacts ne signalent aucune dimension, leurs tailles n’ont donc pas pu être vérifiées.",
|
|
6262
6333
|
"misdirected": "1 artefact est allé vers un service autre que {target}. | {count} artefacts sont allés vers un service autre que {target}.",
|
|
6263
6334
|
"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.",
|
|
6264
6335
|
"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.",
|
|
6265
6336
|
"unknownGenerators": "A nommé une intégration générative que ce déploiement n'enregistre pas : {ids}. L'entrée est conservée telle que déclarée ; l'intégration s'enregistre dans le code du déploiement, pas dans cet espace de travail. | A nommé des intégrations génératives que ce déploiement n'enregistre pas : {ids}. Leurs entrées sont conservées telles que déclarées ; les intégrations s'enregistrent dans le code du déploiement, pas dans cet espace de travail.",
|
|
6266
6337
|
"generatorsUnverified": "Les intégrations génératives de ce déploiement n'ont pas pu être lues à la clôture de l'étape, les intégrations citées ci-dessous n'ont donc pas été vérifiées. Les entrées sont conservées telles que déclarées."
|
|
6267
6338
|
},
|
|
6268
|
-
"unknownGeneratorBadge": "Non enregistrée"
|
|
6339
|
+
"unknownGeneratorBadge": "Non enregistrée",
|
|
6340
|
+
"missizedBadge": "Mauvaise taille",
|
|
6341
|
+
"candidates": {
|
|
6342
|
+
"automatic": "{total} candidat a été généré et conservé automatiquement, sans examen.",
|
|
6343
|
+
"chosen": "{kept} des {total} candidats générés ont été conservés.",
|
|
6344
|
+
"awaiting": "{total} candidats ont été générés et attendent d’être comparés."
|
|
6345
|
+
}
|
|
6269
6346
|
},
|
|
6270
6347
|
"sandbox": {
|
|
6271
6348
|
"title": "Bac à sable : test de prompts et de modèles",
|
|
@@ -7551,5 +7628,32 @@
|
|
|
7551
7628
|
"resolverFailed": "Cet outil a échoué lors du calcul de son adresse. La cause se trouve dans la console du navigateur, pour les responsables de ce déploiement.",
|
|
7552
7629
|
"unsafeUrl": "Cet outil a fourni une adresse qui n'est pas un lien web, elle n'a donc pas été ouverte."
|
|
7553
7630
|
}
|
|
7631
|
+
},
|
|
7632
|
+
"binaryCandidates": {
|
|
7633
|
+
"title": "Candidats générés",
|
|
7634
|
+
"titleWithBlock": "Candidats générés : {title}",
|
|
7635
|
+
"subtitle": "Comparez ce que chaque intégration a produit et conservez ce que vous voulez",
|
|
7636
|
+
"automatic": "Un seul candidat a été généré, il a donc été conservé automatiquement. Personne ne l’a examiné.",
|
|
7637
|
+
"unlabelledSubject": "Aucun sujet déclaré",
|
|
7638
|
+
"noPreview": "Aucun aperçu disponible",
|
|
7639
|
+
"fromGenerator": "De {generator}",
|
|
7640
|
+
"unattributed": "Aucune intégration enregistrée",
|
|
7641
|
+
"kept": "Conservé",
|
|
7642
|
+
"keptAs": "Conservé sous {id}",
|
|
7643
|
+
"storeAsPlaceholder": "enregistrer sous cet id",
|
|
7644
|
+
"notePlaceholder": "Ce qu’il faut changer au moment de l’enregistrement (facultatif)",
|
|
7645
|
+
"missingAlias": "Donnez à chaque candidat conservé son propre id, sinon ils seraient tous enregistrés sous le même nom.",
|
|
7646
|
+
"duplicateAlias": "Deux candidats conservés partagent un id. Deux artefacts au même emplacement, c’est un artefact.",
|
|
7647
|
+
"keepAction": "Conserver {count}",
|
|
7648
|
+
"warning": {
|
|
7649
|
+
"omitted": "{count} candidats ont été écartés au-delà de la limite, cette liste est donc un préfixe. ",
|
|
7650
|
+
"invalid": "{count} entrées déclarées étaient illisibles et manquent ici. ",
|
|
7651
|
+
"previews": "{count} liens d’aperçu ont été refusés, ces candidats s’affichent donc sans image."
|
|
7652
|
+
},
|
|
7653
|
+
"noChoice": {
|
|
7654
|
+
"undeclared": "L’étape n’a jamais déclaré ses candidats, il n’y avait donc rien à comparer. L’exécution a continué.",
|
|
7655
|
+
"parseFailed": "La déclaration de candidats de l’étape était illisible, il n’y avait donc rien à comparer. L’exécution a continué.",
|
|
7656
|
+
"noCandidates": "L’étape n’a préparé aucun candidat, il n’y avait donc rien à comparer. L’exécution a continué."
|
|
7657
|
+
}
|
|
7554
7658
|
}
|
|
7555
7659
|
}
|
package/i18n/locales/he.json
CHANGED
|
@@ -1109,6 +1109,7 @@
|
|
|
1109
1109
|
},
|
|
1110
1110
|
"chooseApproach": "בחר גישה",
|
|
1111
1111
|
"triageFollowUps": "הכרע בהמשכים",
|
|
1112
|
+
"chooseCandidates": "הכרע במועמדים",
|
|
1112
1113
|
"elapsedTooltip": "הזמן שחלף בשלב זה",
|
|
1113
1114
|
"reviewFindings": "עיין בממצאים",
|
|
1114
1115
|
"dryRun": "הרצת יבש",
|
|
@@ -1387,8 +1388,10 @@
|
|
|
1387
1388
|
"decisionRequired": "נדרשת החלטה",
|
|
1388
1389
|
"followUpsParked": "ה-Coder העלה המשכים שדורשים הכרעה לפני שהריצה תוכל להמשיך. טפל בכל פריט (תייק, החזר, ענה או דחה) בחלון ההמשכים.",
|
|
1389
1390
|
"forkParked": "שלב ה-Coder הזה ממתין לבחירת גישת מימוש לפני כתיבת קוד. בחר גישה מוצעת (או הזן גישה משלך) בחלון ההחלטה.",
|
|
1391
|
+
"candidatesParked": "השלב הזה יצר מועמדים וממתין שמישהו יבחר אילו לשמור לפני שיספק דבר. השווה ביניהם ושמור את מה שתרצה בחלון המועמדים.",
|
|
1390
1392
|
"openFollowUps": "פתח את ההמשכים",
|
|
1391
1393
|
"chooseApproach": "בחר גישה",
|
|
1394
|
+
"chooseCandidates": "בחר מועמדים",
|
|
1392
1395
|
"expandAll": "הרחב את כל המקטעים",
|
|
1393
1396
|
"collapseAll": "כווץ את כל המקטעים",
|
|
1394
1397
|
"copyRawOutput": "העתק פלט גולמי",
|
|
@@ -1545,6 +1548,8 @@
|
|
|
1545
1548
|
"priorDocHint": "מהסקירה הקודמת. השתמש בו כבסיס: ערוך את התיאור למעלה ושלח מחדש.",
|
|
1546
1549
|
"bootstrapping": "מאתחל…",
|
|
1547
1550
|
"viewRequirements": "הצג דרישות",
|
|
1551
|
+
"mapService": "מיפוי שירות",
|
|
1552
|
+
"mapServiceNoRepo": "קשרו תחילה מאגר לשירות הזה — אין עדיין מה למפות.",
|
|
1548
1553
|
"reRun": "הרץ מחדש",
|
|
1549
1554
|
"run": "הרץ",
|
|
1550
1555
|
"focus": "מקד",
|
|
@@ -4600,7 +4605,11 @@
|
|
|
4600
4605
|
"preview": {
|
|
4601
4606
|
"stepCount": "שלב אחד | שני שלבים | {count} שלבים",
|
|
4602
4607
|
"gateCount": "אישור אחד | שני אישורים | {count} אישורים",
|
|
4603
|
-
"gated": "אישור אנושי אחרי שלב זה"
|
|
4608
|
+
"gated": "אישור אנושי אחרי שלב זה",
|
|
4609
|
+
"conditionalCount": "שלב מותנה אחד | שני שלבים מותנים | {count} שלבים מותנים",
|
|
4610
|
+
"conditionEstimate": "פועל רק כאשר הערכת המשימה עוברת את הספים של השלב הזה",
|
|
4611
|
+
"conditionFrontend": "פועל רק כאשר המשימה משנה שירות פרונטאנד",
|
|
4612
|
+
"conditionBackend": "פועל רק כאשר המשימה משנה שירות שאינו פרונטאנד"
|
|
4604
4613
|
},
|
|
4605
4614
|
"picker": {
|
|
4606
4615
|
"noneHint": "אין צינור ברירת מחדל. בוחרים אחד כשמריצים את המשימה.",
|
|
@@ -4686,6 +4695,11 @@
|
|
|
4686
4695
|
"edit": "ערוך צינור זה",
|
|
4687
4696
|
"delete": "מחק צינור זה",
|
|
4688
4697
|
"disabledStepTooltip": "מושבת, מדולג בהרצה",
|
|
4698
|
+
"condition": {
|
|
4699
|
+
"always": "פועל בכל משימה — לחצו כדי להפוך אותו למותנה",
|
|
4700
|
+
"frontend": "פועל רק במשימות שמשנות שירות פרונטאנד",
|
|
4701
|
+
"backend": "פועל רק במשימות שמשנות שירות שאינו פרונטאנד"
|
|
4702
|
+
},
|
|
4689
4703
|
"cancelEdit": "בטל עריכה",
|
|
4690
4704
|
"clear": "נקה",
|
|
4691
4705
|
"update": "עדכן צינור",
|
|
@@ -4766,7 +4780,51 @@
|
|
|
4766
4780
|
"3d-model": "מודלים תלת-ממדיים",
|
|
4767
4781
|
"3d-scene": "סצנות תלת-ממדיות",
|
|
4768
4782
|
"document": "מסמכים"
|
|
4769
|
-
}
|
|
4783
|
+
},
|
|
4784
|
+
"binaryCapability": {
|
|
4785
|
+
"reference-image": "תמונת ייחוס",
|
|
4786
|
+
"multi-reference": "כמה תמונות ייחוס",
|
|
4787
|
+
"instruction-edit": "עריכה לפי הנחיה",
|
|
4788
|
+
"mask-edit": "עריכה עם מסכה",
|
|
4789
|
+
"negative-prompt": "הנחיה שלילית",
|
|
4790
|
+
"seed": "זרע קבוע",
|
|
4791
|
+
"aspect-ratio": "יחס גובה-רוחב",
|
|
4792
|
+
"exact-size": "גודל מדויק",
|
|
4793
|
+
"candidate-batch": "כמה מועמדים בקריאה אחת",
|
|
4794
|
+
"upscale": "הגדלה",
|
|
4795
|
+
"transparent-background": "רקע שקוף",
|
|
4796
|
+
"tileable": "ריצוף חלק"
|
|
4797
|
+
},
|
|
4798
|
+
"binaryCapabilityUnknown": "{capability} (יכולת שההתקנה הזו אינה מגדירה)",
|
|
4799
|
+
"binaryCapabilityUnsupported": "אף אינטגרציה שנבחרה אינה תומכת ב-{capabilities}, שאותה מבקשות אפשרויות היצירה של שלב זה. הסירו את האפשרות או בחרו אינטגרציה שמצהירה על היכולת.",
|
|
4800
|
+
"binaryCapabilityUnverifiable": "אף אינטגרציה שנבחרה אינה מצהירה על תמיכה ב-{capabilities}, אך אחת מהן אינה מצהירה על יכולות כלל, ולכן לא ניתן היה לבדוק זאת. השלב עדיין יתחיל; אשרו זאת מול ה-API של האינטגרציה.",
|
|
4801
|
+
"binaryReferenceImages": "תמונות ייחוס",
|
|
4802
|
+
"binaryReferenceImagesPlaceholder": "תפקיד{'|'}מיקום{'|'}שירות, אחת בכל שורה",
|
|
4803
|
+
"binaryReferenceImagesUnusable": "לא נשמרו כייחוס: {entries}. כל שורה חייבת להיות תפקיד{'|'}מיקום, כאשר התפקיד הוא style, subject, composition או base.",
|
|
4804
|
+
"binaryEditMode": "עריכת קיים",
|
|
4805
|
+
"binaryEditModeNone": "יצירה חדשה",
|
|
4806
|
+
"binaryEditModeInstruction": "לפי הנחיה",
|
|
4807
|
+
"binaryEditModeMask": "אזור ממוסך",
|
|
4808
|
+
"binaryEditInstruction": "מה לשנות",
|
|
4809
|
+
"binaryEditInstructionPlaceholder": "למשל להחליף את השמיים",
|
|
4810
|
+
"binaryNegativePrompt": "הנחיה שלילית",
|
|
4811
|
+
"binaryNegativePromptPlaceholder": "ממה להימנע",
|
|
4812
|
+
"binaryAspectRatio": "יחס גובה-רוחב",
|
|
4813
|
+
"binaryAspectRatioPlaceholder": "16:9",
|
|
4814
|
+
"binaryOutputSize": "גודל הפלט",
|
|
4815
|
+
"binaryOutputSizeWidth": "רוחב",
|
|
4816
|
+
"binaryOutputSizeHeight": "גובה",
|
|
4817
|
+
"binaryOutputSizeIncomplete": "לא נשמר: גודל מדויק דורש רוחב וגובה.",
|
|
4818
|
+
"binaryOutputSizeAmbiguous": "אי אפשר לשלב גודל פלט מדויק עם {options}: כל אחד מהם מציין שוב את המידות שיסופקו. השאירו את מה שהוא הדרישה.",
|
|
4819
|
+
"binarySeed": "זרע",
|
|
4820
|
+
"binarySeedPlaceholder": "זרע קבוע",
|
|
4821
|
+
"binaryTransparent": "רקע שקוף",
|
|
4822
|
+
"binaryTileable": "ריצוף חלק",
|
|
4823
|
+
"binaryUpscale": "הגדלת התוצאה",
|
|
4824
|
+
"binaryComparison": "להשוות מועמדים לפני מסירה",
|
|
4825
|
+
"binaryPerGenerator": "מועמדים לכל אינטגרציה",
|
|
4826
|
+
"binaryMultiSelect": "לאפשר לשמור יותר מאחד",
|
|
4827
|
+
"binaryComparisonUnreachable": "השלב הזה יכול להפיק רק מועמד אחד לכל נושא, כך שלא יהיה מה להשוות והיחיד יישמר בלי לשאול. בחרו אינטגרציה נוספת או העלו את מספר המועמדים לכל אינטגרציה."
|
|
4770
4828
|
},
|
|
4771
4829
|
"progress": {
|
|
4772
4830
|
"status": {
|
|
@@ -4813,9 +4871,20 @@
|
|
|
4813
4871
|
"proposing": "מציע גישות…",
|
|
4814
4872
|
"choose": "בחר גישה"
|
|
4815
4873
|
},
|
|
4874
|
+
"binaryCandidates": {
|
|
4875
|
+
"choose": "בחר מועמדים"
|
|
4876
|
+
},
|
|
4816
4877
|
"elapsedTooltip": "הזמן שחלף בשלב זה",
|
|
4817
4878
|
"prReview": {
|
|
4818
4879
|
"review": "עיין בממצאים"
|
|
4880
|
+
},
|
|
4881
|
+
"skipped": {
|
|
4882
|
+
"gated": "דולג: האומדן של המשימה היה מתחת לספי השלב הזה.",
|
|
4883
|
+
"conditionFrontend": "דולג: המשימה אינה משנה שום שירות צד-לקוח, לכן אין ממשק לבדיקה.",
|
|
4884
|
+
"conditionBackend": "דולג: המשימה משנה רק שירות צד-לקוח, לכן אין מאחוריו API לבדיקה.",
|
|
4885
|
+
"producerSkipped": "דולג: השלב שהוא בודק דולג, לכן אין מה להעריך.",
|
|
4886
|
+
"runComplete": "דולג: הריצה הסתיימה לפני השלב הזה, ולא נותר מה לעשות.",
|
|
4887
|
+
"unknown": "דולג: השלב הזה לא רץ."
|
|
4819
4888
|
}
|
|
4820
4889
|
},
|
|
4821
4890
|
"health": {
|
|
@@ -6259,13 +6328,21 @@
|
|
|
6259
6328
|
"unknownServices": "צוין שירות שאינו בקטלוג: {ids}. הרשומה נשמרת כפי שהוצהרה; בדוק את המזהה מול קטלוג הלוח. | צוינו שני שירותים שאינם בקטלוג: {ids}. הרשומות נשמרות כפי שהוצהרו; בדוק את המזהים מול קטלוג הלוח. | צוינו שירותים שאינם בקטלוג: {ids}. הרשומות נשמרות כפי שהוצהרו; בדוק את המזהים מול קטלוג הלוח.",
|
|
6260
6329
|
"targetUnknown": "הקטלוג כבר אינו מכיל את שירות האחסון של השלב הזה ({id}), ולכן לא ניתן היה להשוות מולו דבר ממה שלהלן. רשום אותו מחדש, או הפנה את השלב לשירות אחר.",
|
|
6261
6330
|
"undeliveredMediaTypes": "השלב הזה אמור היה לספק {formats}, ואף פריט למטה אינו מדווח על הפורמט הזה. | השלב הזה אמור היה לספק {formats}, ואף פריט למטה אינו מדווח על שני הפורמטים האלה. | השלב הזה אמור היה לספק {formats}, ואף פריט למטה אינו מדווח על הפורמטים האלה.",
|
|
6331
|
+
"missized": "פריט אחד סופק בגודל שאינו {width}×{height}. | שני פריטים סופקו בגודל שאינו {width}×{height}. | {count} פריטים סופקו בגודל שאינו {width}×{height}.",
|
|
6332
|
+
"sizeUnreported": "פריט אחד אינו מדווח על מידות, ולכן לא ניתן היה לבדוק את גודלו. | שני פריטים אינם מדווחים על מידות, ולכן לא ניתן היה לבדוק את גודלם. | {count} פריטים אינם מדווחים על מידות, ולכן לא ניתן היה לבדוק את גודלם.",
|
|
6262
6333
|
"misdirected": "פריט אחד הגיע לשירות אחר מ- {target}. | שני פריטים הגיעו לשירות אחר מ- {target}. | {count} פריטים הגיעו לשירות אחר מ- {target}.",
|
|
6263
6334
|
"invalidEntries": "רשומה מוצהרת אחת נדחתה: לא צוינו בה שירות ומיקום. | שתי רשומות מוצהרות נדחו: לא צוינו בהן שירות ומיקום. | {count} רשומות מוצהרות נדחו: לא צוינו בהן שירות ומיקום.",
|
|
6264
6335
|
"omitted": "פריט נוסף אחד הוצהר מעבר למגבלת הדוח ואינו מופיע ברשימה. | שני פריטים נוספים הוצהרו מעבר למגבלת הדוח ואינם מופיעים ברשימה. | {count} פריטים נוספים הוצהרו מעבר למגבלת הדוח ואינם מופיעים ברשימה.",
|
|
6265
6336
|
"unknownGenerators": "צוינה אינטגרציה גנרטיבית שההתקנה הזו אינה רושמת: {ids}. הרשומה נשמרת כפי שהוצהרה; האינטגרציה נרשמת בקוד ההתקנה, לא במרחב העבודה הזה. | צוינו שתי אינטגרציות גנרטיביות שההתקנה הזו אינה רושמת: {ids}. הרשומות נשמרות כפי שהוצהרו; אינטגרציות נרשמות בקוד ההתקנה, לא במרחב העבודה הזה. | צוינו אינטגרציות גנרטיביות שההתקנה הזו אינה רושמת: {ids}. הרשומות נשמרות כפי שהוצהרו; אינטגרציות נרשמות בקוד ההתקנה, לא במרחב העבודה הזה.",
|
|
6266
6337
|
"generatorsUnverified": "לא ניתן היה לקרוא את האינטגרציות הגנרטיביות של הפריסה הזו בעת סיום השלב, ולכן האינטגרציות המצוינות למטה לא נבדקו מולן. הרשומות נשמרות כפי שהוצהרו."
|
|
6267
6338
|
},
|
|
6268
|
-
"unknownGeneratorBadge": "לא רשומה"
|
|
6339
|
+
"unknownGeneratorBadge": "לא רשומה",
|
|
6340
|
+
"missizedBadge": "גודל שגוי",
|
|
6341
|
+
"candidates": {
|
|
6342
|
+
"automatic": "נוצר {total} מועמד ונשמר אוטומטית, ללא בדיקה.",
|
|
6343
|
+
"chosen": "נשמרו {kept} מתוך {total} מועמדים שנוצרו.",
|
|
6344
|
+
"awaiting": "נוצרו {total} מועמדים והם ממתינים להשוואה."
|
|
6345
|
+
}
|
|
6269
6346
|
},
|
|
6270
6347
|
"sandbox": {
|
|
6271
6348
|
"title": "Sandbox: בדיקת פרומפטים ומודלים",
|
|
@@ -7551,5 +7628,32 @@
|
|
|
7551
7628
|
"resolverFailed": "הכלי הזה נכשל בעת חישוב הכתובת שלו. הסיבה מופיעה במסוף הדפדפן, עבור מי שמתחזק את ההתקנה הזו.",
|
|
7552
7629
|
"unsafeUrl": "הכלי הזה החזיר כתובת שאינה קישור אינטרנט, ולכן היא לא נפתחה."
|
|
7553
7630
|
}
|
|
7631
|
+
},
|
|
7632
|
+
"binaryCandidates": {
|
|
7633
|
+
"title": "מועמדים שנוצרו",
|
|
7634
|
+
"titleWithBlock": "מועמדים שנוצרו: {title}",
|
|
7635
|
+
"subtitle": "השוו מה כל אינטגרציה יצרה ושמרו את מה שאתם רוצים",
|
|
7636
|
+
"automatic": "נוצר מועמד אחד בלבד, ולכן הוא נשמר אוטומטית. אף אחד לא בדק אותו.",
|
|
7637
|
+
"unlabelledSubject": "לא הוצהר נושא",
|
|
7638
|
+
"noPreview": "אין תצוגה מקדימה",
|
|
7639
|
+
"fromGenerator": "מ-{generator}",
|
|
7640
|
+
"unattributed": "לא נרשמה אינטגרציה",
|
|
7641
|
+
"kept": "נשמר",
|
|
7642
|
+
"keptAs": "נשמר בשם {id}",
|
|
7643
|
+
"storeAsPlaceholder": "לשמור במזהה הזה",
|
|
7644
|
+
"notePlaceholder": "מה לשנות בעת השמירה (רשות)",
|
|
7645
|
+
"missingAlias": "תנו לכל מועמד שנשמר מזהה משלו, אחרת כולם יישמרו באותו שם.",
|
|
7646
|
+
"duplicateAlias": "לשני מועמדים שנשמרו יש אותו מזהה. שני פריטים במיקום אחד הם פריט אחד.",
|
|
7647
|
+
"keepAction": "לשמור {count}",
|
|
7648
|
+
"warning": {
|
|
7649
|
+
"omitted": "{count} מועמדים הושמטו מעבר לתקרה, ולכן הרשימה הזו היא רק ההתחלה. ",
|
|
7650
|
+
"invalid": "{count} רשומות שהוצהרו לא היו קריאות וחסרות כאן. ",
|
|
7651
|
+
"previews": "{count} קישורי תצוגה מקדימה נדחו, ולכן המועמדים האלה מוצגים ללא תמונה."
|
|
7652
|
+
},
|
|
7653
|
+
"noChoice": {
|
|
7654
|
+
"undeclared": "השלב מעולם לא הצהיר על מועמדים, ולכן לא היה מה להשוות. הריצה המשיכה.",
|
|
7655
|
+
"parseFailed": "לא ניתן היה לקרוא את הצהרת המועמדים של השלב, ולכן לא היה מה להשוות. הריצה המשיכה.",
|
|
7656
|
+
"noCandidates": "השלב לא הכין אף מועמד, ולכן לא היה מה להשוות. הריצה המשיכה."
|
|
7657
|
+
}
|
|
7554
7658
|
}
|
|
7555
7659
|
}
|