@cat-factory/app 0.158.3 → 0.159.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/judge/JudgeResultView.vue +300 -0
- package/app/components/layout/NotificationsInbox.vue +15 -0
- package/app/components/panels/inspector/ServiceTestConfig.vue +13 -0
- package/app/components/slack/SlackPanel.vue +1 -0
- package/app/composables/api/judge.ts +28 -0
- package/app/composables/useApi.ts +2 -0
- package/app/composables/usePipelineErrorToast.ts +9 -0
- package/app/modular/result-views.ts +4 -0
- package/app/stores/judge.ts +83 -0
- package/app/types/execution.ts +7 -0
- package/i18n/locales/de.json +43 -2
- package/i18n/locales/en.json +46 -2
- package/i18n/locales/es.json +43 -2
- package/i18n/locales/fr.json +43 -2
- package/i18n/locales/he.json +43 -2
- package/i18n/locales/it.json +43 -2
- package/i18n/locales/ja.json +43 -2
- package/i18n/locales/pl.json +43 -2
- package/i18n/locales/tr.json +43 -2
- package/i18n/locales/uk.json +43 -2
- package/package.json +2 -2
package/i18n/locales/en.json
CHANGED
|
@@ -534,7 +534,8 @@
|
|
|
534
534
|
"env_test_not_a_frame": "Not a service",
|
|
535
535
|
"env_test_infraless": "Nothing to test",
|
|
536
536
|
"env_test_not_provisionable": "Environment handler not configured",
|
|
537
|
-
"env_test_no_vcs": "Git provider not connected"
|
|
537
|
+
"env_test_no_vcs": "Git provider not connected",
|
|
538
|
+
"env_test_connection_failed": "Environment connection failed"
|
|
538
539
|
},
|
|
539
540
|
"description": {
|
|
540
541
|
"dependencies_unmet": "This task depends on others that aren't finished yet. Complete or unblock them, then start it again.",
|
|
@@ -556,7 +557,12 @@
|
|
|
556
557
|
"env_test_not_provisionable": "This service has a provision type, but no workspace handler resolves for it yet, so provisioning can't run. Configure an environment handler.",
|
|
557
558
|
"env_test_not_provisionable_no_handler": "No workspace environment handler is configured for this service's provision type. In Infrastructure → Test environments, register one — for a custom provider, a Custom (remote-custom) handler whose accepted manifest id matches the one this service pins.",
|
|
558
559
|
"env_test_not_provisionable_type_mismatch": "More than one environment handler could match this service's provision type. Pin a manifest id for this service so exactly one resolves, or remove the overlapping handler in Infrastructure → Test environments.",
|
|
559
|
-
"env_test_no_vcs": "The self-test needs a git provider to create and delete its throwaway branch, but this workspace isn't connected to one."
|
|
560
|
+
"env_test_no_vcs": "The self-test needs a git provider to create and delete its throwaway branch, but this workspace isn't connected to one.",
|
|
561
|
+
"env_test_connection_failed": "The environment handler for this service failed its connection test. Check its endpoint, credentials and project settings, then re-test the connection.",
|
|
562
|
+
"env_test_connection_failed_detail": "The environment handler for this service failed its connection test: {detail}. Check its endpoint, credentials and project settings, then re-test the connection.",
|
|
563
|
+
"@env_test_connection_failed_detail": {
|
|
564
|
+
"description": "Keep the named placeholder for the failure detail intact (the environment provider's connection-test error message, injected at runtime)."
|
|
565
|
+
}
|
|
560
566
|
},
|
|
561
567
|
"action": {
|
|
562
568
|
"connectGitHub": "Connect GitHub",
|
|
@@ -1790,6 +1796,7 @@
|
|
|
1790
1796
|
"initiative": "Mark read",
|
|
1791
1797
|
"markRead": "Mark read",
|
|
1792
1798
|
"fork_decision_pending": "Mark read",
|
|
1799
|
+
"judge_review": "Mark read",
|
|
1793
1800
|
"pr_review_ready": "Mark read",
|
|
1794
1801
|
"budget_paused": "Mark read",
|
|
1795
1802
|
"key_drift": "Drop stale credentials",
|
|
@@ -3883,6 +3890,43 @@
|
|
|
3883
3890
|
"footer": "A gate runs a programmatic precheck and only spins up the {helper} when it fails; a green check advances with nothing spun up."
|
|
3884
3891
|
}
|
|
3885
3892
|
},
|
|
3893
|
+
"judge": {
|
|
3894
|
+
"subtitle": "Scores this run's work against a rubric, then advances, asks, or sends it back",
|
|
3895
|
+
"empty": "This step has not produced a verdict yet.",
|
|
3896
|
+
"notScored": "Not scored",
|
|
3897
|
+
"threshold": "threshold {threshold}",
|
|
3898
|
+
"rubricOverridden": "workspace rubric",
|
|
3899
|
+
"reworkRounds": "rework {spent}/{budget}",
|
|
3900
|
+
"findingsHeading": "What the rubric flagged",
|
|
3901
|
+
"roundsHeading": "Review rounds",
|
|
3902
|
+
"round": "Round {round}",
|
|
3903
|
+
"decisionHeading": "Your decision",
|
|
3904
|
+
"decisionDescription": "Proceed anyway, send the work back for rework, or stop the run.",
|
|
3905
|
+
"feedbackPlaceholder": "Optional guidance to include when sending the work back…",
|
|
3906
|
+
"proceed": "Proceed anyway",
|
|
3907
|
+
"bounce": "Send back for rework",
|
|
3908
|
+
"stop": "Stop the run",
|
|
3909
|
+
"status": {
|
|
3910
|
+
"evaluating": "Reviewing",
|
|
3911
|
+
"awaitingDecision": "Needs a decision",
|
|
3912
|
+
"bouncing": "Reworking",
|
|
3913
|
+
"passed": "Passed",
|
|
3914
|
+
"failed": "Failed",
|
|
3915
|
+
"skipped": "Skipped"
|
|
3916
|
+
},
|
|
3917
|
+
"severity": {
|
|
3918
|
+
"low": "Low",
|
|
3919
|
+
"medium": "Medium",
|
|
3920
|
+
"high": "High",
|
|
3921
|
+
"critical": "Critical"
|
|
3922
|
+
},
|
|
3923
|
+
"disposition": {
|
|
3924
|
+
"pass": "Passed",
|
|
3925
|
+
"park": "Asked a human",
|
|
3926
|
+
"bounce": "Sent back for rework",
|
|
3927
|
+
"fail": "Failed the run"
|
|
3928
|
+
}
|
|
3929
|
+
},
|
|
3886
3930
|
"requirements": {
|
|
3887
3931
|
"title": "Requirements review",
|
|
3888
3932
|
"iteration": "Iteration {current} / {max}",
|
package/i18n/locales/es.json
CHANGED
|
@@ -492,7 +492,8 @@
|
|
|
492
492
|
"env_test_not_a_frame": "No es un servicio",
|
|
493
493
|
"env_test_infraless": "Nada que probar",
|
|
494
494
|
"env_test_not_provisionable": "Gestor de entorno no configurado",
|
|
495
|
-
"env_test_no_vcs": "Proveedor de Git no conectado"
|
|
495
|
+
"env_test_no_vcs": "Proveedor de Git no conectado",
|
|
496
|
+
"env_test_connection_failed": "Fallo de conexión del entorno"
|
|
496
497
|
},
|
|
497
498
|
"description": {
|
|
498
499
|
"dependencies_unmet": "Esta tarea depende de otras que aún no están terminadas. Complétalas o desbloquéalas y vuelve a iniciarla.",
|
|
@@ -514,7 +515,9 @@
|
|
|
514
515
|
"env_test_not_provisionable": "Este servicio tiene un tipo de aprovisionamiento, pero aún no hay ningún gestor del espacio de trabajo para él, así que el aprovisionamiento no puede ejecutarse. Configura un gestor de entornos.",
|
|
515
516
|
"env_test_not_provisionable_no_handler": "No hay ningún gestor de entorno del espacio de trabajo configurado para el tipo de aprovisionamiento de este servicio. En Infraestructura → Entornos de prueba, registra uno; para un proveedor personalizado, un gestor Custom (remote-custom) cuyo manifest id aceptado coincida con el que fija este servicio.",
|
|
516
517
|
"env_test_not_provisionable_type_mismatch": "Más de un gestor de entorno podría coincidir con el tipo de aprovisionamiento de este servicio. Fija un manifest id para este servicio de modo que se resuelva exactamente uno, o elimina el gestor superpuesto en Infraestructura → Entornos de prueba.",
|
|
517
|
-
"env_test_no_vcs": "La autoprueba necesita un proveedor de Git para crear y eliminar su rama desechable, pero este espacio de trabajo no está conectado a ninguno."
|
|
518
|
+
"env_test_no_vcs": "La autoprueba necesita un proveedor de Git para crear y eliminar su rama desechable, pero este espacio de trabajo no está conectado a ninguno.",
|
|
519
|
+
"env_test_connection_failed": "El gestor de entornos de este servicio no superó su prueba de conexión. Revisa su endpoint, sus credenciales y la configuración del proyecto, y vuelve a probar la conexión.",
|
|
520
|
+
"env_test_connection_failed_detail": "El gestor de entornos de este servicio no superó su prueba de conexión: {detail}. Revisa su endpoint, sus credenciales y la configuración del proyecto, y vuelve a probar la conexión."
|
|
518
521
|
},
|
|
519
522
|
"action": {
|
|
520
523
|
"connectGitHub": "Conectar GitHub",
|
|
@@ -1721,6 +1724,7 @@
|
|
|
1721
1724
|
"initiative": "Marcar como leída",
|
|
1722
1725
|
"markRead": "Marcar como leída",
|
|
1723
1726
|
"fork_decision_pending": "Marcar como leído",
|
|
1727
|
+
"judge_review": "Marcar como leído",
|
|
1724
1728
|
"pr_review_ready": "Marcar como leída",
|
|
1725
1729
|
"budget_paused": "Marcar como leída",
|
|
1726
1730
|
"key_drift": "Descartar credenciales obsoletas",
|
|
@@ -3740,6 +3744,43 @@
|
|
|
3740
3744
|
"footer": "Una compuerta ejecuta una comprobación previa programática y solo pone en marcha el {helper} cuando falla; una comprobación en verde avanza sin poner nada en marcha."
|
|
3741
3745
|
}
|
|
3742
3746
|
},
|
|
3747
|
+
"judge": {
|
|
3748
|
+
"subtitle": "Puntúa el trabajo de esta ejecución según una rúbrica y luego avanza, pregunta o lo devuelve",
|
|
3749
|
+
"empty": "Este paso todavía no ha producido un veredicto.",
|
|
3750
|
+
"notScored": "Sin puntuar",
|
|
3751
|
+
"threshold": "umbral {threshold}",
|
|
3752
|
+
"rubricOverridden": "rúbrica del espacio de trabajo",
|
|
3753
|
+
"reworkRounds": "revisión {spent}/{budget}",
|
|
3754
|
+
"findingsHeading": "Lo que señaló la rúbrica",
|
|
3755
|
+
"roundsHeading": "Rondas de revisión",
|
|
3756
|
+
"round": "Ronda {round}",
|
|
3757
|
+
"decisionHeading": "Tu decisión",
|
|
3758
|
+
"decisionDescription": "Continuar igualmente, devolver el trabajo para revisarlo o detener la ejecución.",
|
|
3759
|
+
"feedbackPlaceholder": "Indicaciones opcionales para incluir al devolver el trabajo…",
|
|
3760
|
+
"proceed": "Continuar igualmente",
|
|
3761
|
+
"bounce": "Devolver para revisión",
|
|
3762
|
+
"stop": "Detener la ejecución",
|
|
3763
|
+
"status": {
|
|
3764
|
+
"evaluating": "Revisando",
|
|
3765
|
+
"awaitingDecision": "Necesita una decisión",
|
|
3766
|
+
"bouncing": "En revisión",
|
|
3767
|
+
"passed": "Aprobado",
|
|
3768
|
+
"failed": "Fallido",
|
|
3769
|
+
"skipped": "Omitido"
|
|
3770
|
+
},
|
|
3771
|
+
"severity": {
|
|
3772
|
+
"low": "Baja",
|
|
3773
|
+
"medium": "Media",
|
|
3774
|
+
"high": "Alta",
|
|
3775
|
+
"critical": "Crítica"
|
|
3776
|
+
},
|
|
3777
|
+
"disposition": {
|
|
3778
|
+
"pass": "Aprobado",
|
|
3779
|
+
"park": "Consultó a una persona",
|
|
3780
|
+
"bounce": "Devuelto para revisión",
|
|
3781
|
+
"fail": "Ejecución fallida"
|
|
3782
|
+
}
|
|
3783
|
+
},
|
|
3743
3784
|
"requirements": {
|
|
3744
3785
|
"title": "Revisión de requisitos",
|
|
3745
3786
|
"iteration": "Iteración {current} / {max}",
|
package/i18n/locales/fr.json
CHANGED
|
@@ -492,7 +492,8 @@
|
|
|
492
492
|
"env_test_not_a_frame": "Pas un service",
|
|
493
493
|
"env_test_infraless": "Rien à tester",
|
|
494
494
|
"env_test_not_provisionable": "Gestionnaire d'environnement non configuré",
|
|
495
|
-
"env_test_no_vcs": "Fournisseur Git non connecté"
|
|
495
|
+
"env_test_no_vcs": "Fournisseur Git non connecté",
|
|
496
|
+
"env_test_connection_failed": "Échec de la connexion à l'environnement"
|
|
496
497
|
},
|
|
497
498
|
"description": {
|
|
498
499
|
"dependencies_unmet": "Cette tâche dépend d'autres qui ne sont pas encore terminées. Terminez-les ou débloquez-les, puis relancez-la.",
|
|
@@ -514,7 +515,9 @@
|
|
|
514
515
|
"env_test_not_provisionable": "Ce service a un type de provisionnement, mais aucun gestionnaire de l'espace de travail ne s'y applique encore, le provisionnement ne peut donc pas s'exécuter. Configurez un gestionnaire d'environnement.",
|
|
515
516
|
"env_test_not_provisionable_no_handler": "Aucun gestionnaire d'environnement de l'espace de travail n'est configuré pour le type de provisionnement de ce service. Dans Infrastructure → Environnements de test, enregistrez-en un — pour un fournisseur personnalisé, un gestionnaire Custom (remote-custom) dont le manifest id accepté correspond à celui que ce service épingle.",
|
|
516
517
|
"env_test_not_provisionable_type_mismatch": "Plusieurs gestionnaires d'environnement pourraient correspondre au type de provisionnement de ce service. Épinglez un manifest id pour ce service afin qu'un seul se résolve, ou supprimez le gestionnaire qui se chevauche dans Infrastructure → Environnements de test.",
|
|
517
|
-
"env_test_no_vcs": "L'auto-test a besoin d'un fournisseur Git pour créer et supprimer sa branche jetable, mais cet espace de travail n'est connecté à aucun."
|
|
518
|
+
"env_test_no_vcs": "L'auto-test a besoin d'un fournisseur Git pour créer et supprimer sa branche jetable, mais cet espace de travail n'est connecté à aucun.",
|
|
519
|
+
"env_test_connection_failed": "Le gestionnaire d'environnement de ce service a échoué à son test de connexion. Vérifiez son point de terminaison, ses identifiants et les paramètres du projet, puis retestez la connexion.",
|
|
520
|
+
"env_test_connection_failed_detail": "Le gestionnaire d'environnement de ce service a échoué à son test de connexion : {detail}. Vérifiez son point de terminaison, ses identifiants et les paramètres du projet, puis retestez la connexion."
|
|
518
521
|
},
|
|
519
522
|
"action": {
|
|
520
523
|
"connectGitHub": "Connecter GitHub",
|
|
@@ -1721,6 +1724,7 @@
|
|
|
1721
1724
|
"initiative": "Marquer comme lu",
|
|
1722
1725
|
"markRead": "Marquer comme lu",
|
|
1723
1726
|
"fork_decision_pending": "Marquer comme lu",
|
|
1727
|
+
"judge_review": "Marquer comme lu",
|
|
1724
1728
|
"pr_review_ready": "Marquer comme lu",
|
|
1725
1729
|
"budget_paused": "Marquer comme lu",
|
|
1726
1730
|
"key_drift": "Supprimer les identifiants obsolètes",
|
|
@@ -3740,6 +3744,43 @@
|
|
|
3740
3744
|
"footer": "Une condition exécute une vérification préalable programmatique et ne lance le {helper} qu'en cas d'échec ; une vérification verte avance sans rien lancer."
|
|
3741
3745
|
}
|
|
3742
3746
|
},
|
|
3747
|
+
"judge": {
|
|
3748
|
+
"subtitle": "Note le travail de cette exécution selon une grille, puis poursuit, demande ou le renvoie",
|
|
3749
|
+
"empty": "Cette étape n'a pas encore produit de verdict.",
|
|
3750
|
+
"notScored": "Non noté",
|
|
3751
|
+
"threshold": "seuil {threshold}",
|
|
3752
|
+
"rubricOverridden": "grille de l'espace de travail",
|
|
3753
|
+
"reworkRounds": "reprise {spent}/{budget}",
|
|
3754
|
+
"findingsHeading": "Ce que la grille a signalé",
|
|
3755
|
+
"roundsHeading": "Tours de revue",
|
|
3756
|
+
"round": "Tour {round}",
|
|
3757
|
+
"decisionHeading": "Votre décision",
|
|
3758
|
+
"decisionDescription": "Poursuivre malgré tout, renvoyer le travail pour reprise ou arrêter l'exécution.",
|
|
3759
|
+
"feedbackPlaceholder": "Consignes facultatives à joindre au renvoi…",
|
|
3760
|
+
"proceed": "Poursuivre malgré tout",
|
|
3761
|
+
"bounce": "Renvoyer pour reprise",
|
|
3762
|
+
"stop": "Arrêter l'exécution",
|
|
3763
|
+
"status": {
|
|
3764
|
+
"evaluating": "Revue en cours",
|
|
3765
|
+
"awaitingDecision": "Décision requise",
|
|
3766
|
+
"bouncing": "Reprise en cours",
|
|
3767
|
+
"passed": "Réussi",
|
|
3768
|
+
"failed": "Échoué",
|
|
3769
|
+
"skipped": "Ignoré"
|
|
3770
|
+
},
|
|
3771
|
+
"severity": {
|
|
3772
|
+
"low": "Faible",
|
|
3773
|
+
"medium": "Moyenne",
|
|
3774
|
+
"high": "Élevée",
|
|
3775
|
+
"critical": "Critique"
|
|
3776
|
+
},
|
|
3777
|
+
"disposition": {
|
|
3778
|
+
"pass": "Réussi",
|
|
3779
|
+
"park": "A demandé à une personne",
|
|
3780
|
+
"bounce": "Renvoyé pour reprise",
|
|
3781
|
+
"fail": "Exécution échouée"
|
|
3782
|
+
}
|
|
3783
|
+
},
|
|
3743
3784
|
"requirements": {
|
|
3744
3785
|
"title": "Revue des exigences",
|
|
3745
3786
|
"iteration": "Itération {current} / {max}",
|
package/i18n/locales/he.json
CHANGED
|
@@ -492,7 +492,8 @@
|
|
|
492
492
|
"env_test_not_a_frame": "לא שירות",
|
|
493
493
|
"env_test_infraless": "אין מה לבדוק",
|
|
494
494
|
"env_test_not_provisionable": "מטפל הסביבה אינו מוגדר",
|
|
495
|
-
"env_test_no_vcs": "ספק Git אינו מחובר"
|
|
495
|
+
"env_test_no_vcs": "ספק Git אינו מחובר",
|
|
496
|
+
"env_test_connection_failed": "החיבור לסביבה נכשל"
|
|
496
497
|
},
|
|
497
498
|
"description": {
|
|
498
499
|
"dependencies_unmet": "משימה זו תלויה במשימות אחרות שטרם הושלמו. השלם או שחרר אותן, ולאחר מכן הפעל אותה שוב.",
|
|
@@ -514,7 +515,9 @@
|
|
|
514
515
|
"env_test_not_provisionable": "לשירות זה יש סוג הקצאה, אך עדיין אין עבורו מטפל בסביבת העבודה, ולכן ההקצאה אינה יכולה לרוץ. הגדר מטפל סביבה.",
|
|
515
516
|
"env_test_not_provisionable_no_handler": "לא מוגדר מטפל סביבה של סביבת העבודה עבור סוג ההקצאה של שירות זה. בתשתית → סביבות בדיקה, רשום אחד — עבור ספק מותאם אישית, מטפל Custom (remote-custom) שה-manifest id המקובל שלו תואם לזה ששירות זה מקבע.",
|
|
516
517
|
"env_test_not_provisionable_type_mismatch": "יותר ממטפל סביבה אחד יכול להתאים לסוג ההקצאה של שירות זה. קבע manifest id עבור שירות זה כך שרק אחד ייפתר, או הסר את המטפל החופף בתשתית → סביבות בדיקה.",
|
|
517
|
-
"env_test_no_vcs": "הבדיקה העצמית זקוקה לספק Git כדי ליצור ולמחוק את הענף החד-פעמי שלה, אך סביבת עבודה זו אינה מחוברת לאף אחד."
|
|
518
|
+
"env_test_no_vcs": "הבדיקה העצמית זקוקה לספק Git כדי ליצור ולמחוק את הענף החד-פעמי שלה, אך סביבת עבודה זו אינה מחוברת לאף אחד.",
|
|
519
|
+
"env_test_connection_failed": "מנהל הסביבה של שירות זה נכשל בבדיקת החיבור. בדקו את נקודת הקצה, פרטי ההזדהות והגדרות הפרויקט, ולאחר מכן בדקו שוב את החיבור.",
|
|
520
|
+
"env_test_connection_failed_detail": "מנהל הסביבה של שירות זה נכשל בבדיקת החיבור: {detail}. בדקו את נקודת הקצה, פרטי ההזדהות והגדרות הפרויקט, ולאחר מכן בדקו שוב את החיבור."
|
|
518
521
|
},
|
|
519
522
|
"action": {
|
|
520
523
|
"connectGitHub": "חבר את GitHub",
|
|
@@ -1721,6 +1724,7 @@
|
|
|
1721
1724
|
"initiative": "סמן כנקרא",
|
|
1722
1725
|
"markRead": "סמן כנקרא",
|
|
1723
1726
|
"fork_decision_pending": "סמן כנקרא",
|
|
1727
|
+
"judge_review": "סמן כנקרא",
|
|
1724
1728
|
"pr_review_ready": "סמן כנקרא",
|
|
1725
1729
|
"budget_paused": "סמן כנקרא",
|
|
1726
1730
|
"key_drift": "מחק אישורים מיושנים",
|
|
@@ -3751,6 +3755,43 @@
|
|
|
3751
3755
|
"footer": "שער מריץ בדיקה מקדימה תכנותית ומפעיל את {helper} רק כשהיא נכשלת; בדיקה ירוקה מתקדמת בלי להפעיל דבר."
|
|
3752
3756
|
}
|
|
3753
3757
|
},
|
|
3758
|
+
"judge": {
|
|
3759
|
+
"subtitle": "מעריך את עבודת ההרצה מול מחוון, ואז ממשיך, שואל או מחזיר אותה",
|
|
3760
|
+
"empty": "שלב זה עדיין לא הפיק פסיקה.",
|
|
3761
|
+
"notScored": "לא נוקד",
|
|
3762
|
+
"threshold": "סף {threshold}",
|
|
3763
|
+
"rubricOverridden": "מחוון סביבת העבודה",
|
|
3764
|
+
"reworkRounds": "עיבוד מחדש {spent}/{budget}",
|
|
3765
|
+
"findingsHeading": "מה שהמחוון סימן",
|
|
3766
|
+
"roundsHeading": "סבבי בדיקה",
|
|
3767
|
+
"round": "סבב {round}",
|
|
3768
|
+
"decisionHeading": "ההחלטה שלך",
|
|
3769
|
+
"decisionDescription": "להמשיך בכל זאת, להחזיר את העבודה לעיבוד מחדש או לעצור את ההרצה.",
|
|
3770
|
+
"feedbackPlaceholder": "הנחיות רשות שיצורפו בעת ההחזרה…",
|
|
3771
|
+
"proceed": "להמשיך בכל זאת",
|
|
3772
|
+
"bounce": "להחזיר לעיבוד מחדש",
|
|
3773
|
+
"stop": "לעצור את ההרצה",
|
|
3774
|
+
"status": {
|
|
3775
|
+
"evaluating": "בבדיקה",
|
|
3776
|
+
"awaitingDecision": "נדרשת החלטה",
|
|
3777
|
+
"bouncing": "בעיבוד מחדש",
|
|
3778
|
+
"passed": "עבר",
|
|
3779
|
+
"failed": "נכשל",
|
|
3780
|
+
"skipped": "דולג"
|
|
3781
|
+
},
|
|
3782
|
+
"severity": {
|
|
3783
|
+
"low": "נמוכה",
|
|
3784
|
+
"medium": "בינונית",
|
|
3785
|
+
"high": "גבוהה",
|
|
3786
|
+
"critical": "קריטית"
|
|
3787
|
+
},
|
|
3788
|
+
"disposition": {
|
|
3789
|
+
"pass": "עבר",
|
|
3790
|
+
"park": "פנה לאדם",
|
|
3791
|
+
"bounce": "הוחזר לעיבוד מחדש",
|
|
3792
|
+
"fail": "ההרצה נכשלה"
|
|
3793
|
+
}
|
|
3794
|
+
},
|
|
3754
3795
|
"requirements": {
|
|
3755
3796
|
"title": "סקירת דרישות",
|
|
3756
3797
|
"iteration": "איטרציה {current} / {max}",
|
package/i18n/locales/it.json
CHANGED
|
@@ -1831,6 +1831,7 @@
|
|
|
1831
1831
|
"initiative": "Segna come letto",
|
|
1832
1832
|
"markRead": "Segna come letto",
|
|
1833
1833
|
"fork_decision_pending": "Segna come letto",
|
|
1834
|
+
"judge_review": "Segna come letto",
|
|
1834
1835
|
"pr_review_ready": "Segna come letto",
|
|
1835
1836
|
"budget_paused": "Segna come letto",
|
|
1836
1837
|
"key_drift": "Elimina credenziali obsolete",
|
|
@@ -4162,7 +4163,8 @@
|
|
|
4162
4163
|
"env_test_not_a_frame": "Non è un servizio",
|
|
4163
4164
|
"env_test_infraless": "Niente da testare",
|
|
4164
4165
|
"env_test_not_provisionable": "Handler dell'ambiente non configurato",
|
|
4165
|
-
"env_test_no_vcs": "Provider Git non connesso"
|
|
4166
|
+
"env_test_no_vcs": "Provider Git non connesso",
|
|
4167
|
+
"env_test_connection_failed": "Connessione all'ambiente non riuscita"
|
|
4166
4168
|
},
|
|
4167
4169
|
"description": {
|
|
4168
4170
|
"dependencies_unmet": "Questa attività dipende da altre non ancora completate. Completale o sbloccale, poi avviala di nuovo.",
|
|
@@ -4184,7 +4186,9 @@
|
|
|
4184
4186
|
"env_test_not_provisionable": "Questo servizio ha un tipo di provisioning, ma non è ancora disponibile alcun handler del workspace, quindi il provisioning non può essere eseguito. Configura un handler dell'ambiente.",
|
|
4185
4187
|
"env_test_not_provisionable_no_handler": "Nessun handler dell'ambiente del workspace è configurato per il tipo di provisioning di questo servizio. In Infrastruttura → Ambienti di test, registrane uno — per un provider personalizzato, un handler Custom (remote-custom) il cui manifest id accettato corrisponde a quello che questo servizio fissa.",
|
|
4186
4188
|
"env_test_not_provisionable_type_mismatch": "Più di un handler dell'ambiente potrebbe corrispondere al tipo di provisioning di questo servizio. Fissa un manifest id per questo servizio in modo che se ne risolva esattamente uno, oppure rimuovi l'handler sovrapposto in Infrastruttura → Ambienti di test.",
|
|
4187
|
-
"env_test_no_vcs": "L'autotest ha bisogno di un provider Git per creare ed eliminare il suo branch usa e getta, ma questo workspace non è collegato a nessuno."
|
|
4189
|
+
"env_test_no_vcs": "L'autotest ha bisogno di un provider Git per creare ed eliminare il suo branch usa e getta, ma questo workspace non è collegato a nessuno.",
|
|
4190
|
+
"env_test_connection_failed": "Il gestore dell'ambiente di questo servizio non ha superato il test di connessione. Controlla endpoint, credenziali e impostazioni del progetto, poi ripeti il test della connessione.",
|
|
4191
|
+
"env_test_connection_failed_detail": "Il gestore dell'ambiente di questo servizio non ha superato il test di connessione: {detail}. Controlla endpoint, credenziali e impostazioni del progetto, poi ripeti il test della connessione."
|
|
4188
4192
|
},
|
|
4189
4193
|
"action": {
|
|
4190
4194
|
"connectGitHub": "Collega GitHub",
|
|
@@ -4373,6 +4377,43 @@
|
|
|
4373
4377
|
"footer": "Un gate esegue una verifica preliminare programmatica e avvia il {helper} solo in caso di esito negativo; un controllo verde avanza senza avviare nulla."
|
|
4374
4378
|
}
|
|
4375
4379
|
},
|
|
4380
|
+
"judge": {
|
|
4381
|
+
"subtitle": "Valuta il lavoro di questa esecuzione con una rubrica, poi prosegue, chiede o lo rimanda indietro",
|
|
4382
|
+
"empty": "Questo passo non ha ancora prodotto un verdetto.",
|
|
4383
|
+
"notScored": "Non valutato",
|
|
4384
|
+
"threshold": "soglia {threshold}",
|
|
4385
|
+
"rubricOverridden": "rubrica dello spazio di lavoro",
|
|
4386
|
+
"reworkRounds": "revisione {spent}/{budget}",
|
|
4387
|
+
"findingsHeading": "Cosa ha segnalato la rubrica",
|
|
4388
|
+
"roundsHeading": "Cicli di revisione",
|
|
4389
|
+
"round": "Ciclo {round}",
|
|
4390
|
+
"decisionHeading": "La tua decisione",
|
|
4391
|
+
"decisionDescription": "Procedere comunque, rimandare il lavoro in revisione o fermare l'esecuzione.",
|
|
4392
|
+
"feedbackPlaceholder": "Indicazioni facoltative da allegare al rinvio…",
|
|
4393
|
+
"proceed": "Procedi comunque",
|
|
4394
|
+
"bounce": "Rimanda in revisione",
|
|
4395
|
+
"stop": "Ferma l'esecuzione",
|
|
4396
|
+
"status": {
|
|
4397
|
+
"evaluating": "In revisione",
|
|
4398
|
+
"awaitingDecision": "Serve una decisione",
|
|
4399
|
+
"bouncing": "In rilavorazione",
|
|
4400
|
+
"passed": "Superato",
|
|
4401
|
+
"failed": "Fallito",
|
|
4402
|
+
"skipped": "Saltato"
|
|
4403
|
+
},
|
|
4404
|
+
"severity": {
|
|
4405
|
+
"low": "Bassa",
|
|
4406
|
+
"medium": "Media",
|
|
4407
|
+
"high": "Alta",
|
|
4408
|
+
"critical": "Critica"
|
|
4409
|
+
},
|
|
4410
|
+
"disposition": {
|
|
4411
|
+
"pass": "Superato",
|
|
4412
|
+
"park": "Ha chiesto a una persona",
|
|
4413
|
+
"bounce": "Rimandato in revisione",
|
|
4414
|
+
"fail": "Esecuzione fallita"
|
|
4415
|
+
}
|
|
4416
|
+
},
|
|
4376
4417
|
"consensus": {
|
|
4377
4418
|
"titlePrefix": "Consenso",
|
|
4378
4419
|
"participantCount": "nessun partecipante | un partecipante | {count} partecipanti",
|
package/i18n/locales/ja.json
CHANGED
|
@@ -492,7 +492,8 @@
|
|
|
492
492
|
"env_test_not_a_frame": "サービスではありません",
|
|
493
493
|
"env_test_infraless": "テストする対象がありません",
|
|
494
494
|
"env_test_not_provisionable": "環境ハンドラーが設定されていません",
|
|
495
|
-
"env_test_no_vcs": "Git プロバイダーが未接続です"
|
|
495
|
+
"env_test_no_vcs": "Git プロバイダーが未接続です",
|
|
496
|
+
"env_test_connection_failed": "環境への接続に失敗しました"
|
|
496
497
|
},
|
|
497
498
|
"description": {
|
|
498
499
|
"dependencies_unmet": "このタスクは、まだ完了していない他のタスクに依存しています。それらを完了または解除してから、もう一度開始してください。",
|
|
@@ -514,7 +515,9 @@
|
|
|
514
515
|
"env_test_not_provisionable": "このサービスにはプロビジョニングタイプがありますが、対応するワークスペースハンドラーがまだ解決されないため、プロビジョニングを実行できません。環境ハンドラーを設定してください。",
|
|
515
516
|
"env_test_not_provisionable_no_handler": "このサービスのプロビジョニングタイプに対して、ワークスペースの環境ハンドラーが設定されていません。インフラストラクチャ → テスト環境 で 1 つ登録してください。カスタムプロバイダーの場合は、受け入れる manifest id がこのサービスが固定するものと一致する Custom (remote-custom) ハンドラーを登録します。",
|
|
516
517
|
"env_test_not_provisionable_type_mismatch": "複数の環境ハンドラーがこのサービスのプロビジョニングタイプに一致する可能性があります。ちょうど 1 つだけが解決されるように、このサービスに manifest id を固定するか、インフラストラクチャ → テスト環境 で重複するハンドラーを削除してください。",
|
|
517
|
-
"env_test_no_vcs": "セルフテストは使い捨てブランチの作成と削除のために Git プロバイダーを必要としますが、このワークスペースはいずれにも接続されていません。"
|
|
518
|
+
"env_test_no_vcs": "セルフテストは使い捨てブランチの作成と削除のために Git プロバイダーを必要としますが、このワークスペースはいずれにも接続されていません。",
|
|
519
|
+
"env_test_connection_failed": "このサービスの環境ハンドラーが接続テストに失敗しました。エンドポイント、認証情報、プロジェクト設定を確認してから、接続を再テストしてください。",
|
|
520
|
+
"env_test_connection_failed_detail": "このサービスの環境ハンドラーが接続テストに失敗しました: {detail}。エンドポイント、認証情報、プロジェクト設定を確認してから、接続を再テストしてください。"
|
|
518
521
|
},
|
|
519
522
|
"action": {
|
|
520
523
|
"connectGitHub": "GitHub に接続",
|
|
@@ -1721,6 +1724,7 @@
|
|
|
1721
1724
|
"initiative": "既読にする",
|
|
1722
1725
|
"markRead": "既読にする",
|
|
1723
1726
|
"fork_decision_pending": "既読にする",
|
|
1727
|
+
"judge_review": "既読にする",
|
|
1724
1728
|
"pr_review_ready": "既読にする",
|
|
1725
1729
|
"budget_paused": "既読にする",
|
|
1726
1730
|
"key_drift": "古い認証情報を削除",
|
|
@@ -3752,6 +3756,43 @@
|
|
|
3752
3756
|
"footer": "ゲートはプログラムによるプリチェックを実行し、失敗した場合のみ {helper} を起動します。グリーンのチェックは何も起動せずに進行します。"
|
|
3753
3757
|
}
|
|
3754
3758
|
},
|
|
3759
|
+
"judge": {
|
|
3760
|
+
"subtitle": "この実行の成果をルーブリックで採点し、先に進めるか、確認を求めるか、差し戻します",
|
|
3761
|
+
"empty": "このステップはまだ判定を出していません。",
|
|
3762
|
+
"notScored": "未採点",
|
|
3763
|
+
"threshold": "しきい値 {threshold}",
|
|
3764
|
+
"rubricOverridden": "ワークスペースのルーブリック",
|
|
3765
|
+
"reworkRounds": "手戻り {spent}/{budget}",
|
|
3766
|
+
"findingsHeading": "ルーブリックが指摘した点",
|
|
3767
|
+
"roundsHeading": "レビューの回数",
|
|
3768
|
+
"round": "第 {round} 回",
|
|
3769
|
+
"decisionHeading": "あなたの判断",
|
|
3770
|
+
"decisionDescription": "このまま進める、作業を差し戻す、または実行を停止します。",
|
|
3771
|
+
"feedbackPlaceholder": "差し戻す際に添える任意の指示…",
|
|
3772
|
+
"proceed": "このまま進める",
|
|
3773
|
+
"bounce": "差し戻して修正させる",
|
|
3774
|
+
"stop": "実行を停止する",
|
|
3775
|
+
"status": {
|
|
3776
|
+
"evaluating": "レビュー中",
|
|
3777
|
+
"awaitingDecision": "判断が必要",
|
|
3778
|
+
"bouncing": "修正中",
|
|
3779
|
+
"passed": "合格",
|
|
3780
|
+
"failed": "失敗",
|
|
3781
|
+
"skipped": "スキップ"
|
|
3782
|
+
},
|
|
3783
|
+
"severity": {
|
|
3784
|
+
"low": "低",
|
|
3785
|
+
"medium": "中",
|
|
3786
|
+
"high": "高",
|
|
3787
|
+
"critical": "重大"
|
|
3788
|
+
},
|
|
3789
|
+
"disposition": {
|
|
3790
|
+
"pass": "合格",
|
|
3791
|
+
"park": "人に確認を求めた",
|
|
3792
|
+
"bounce": "差し戻した",
|
|
3793
|
+
"fail": "実行を失敗させた"
|
|
3794
|
+
}
|
|
3795
|
+
},
|
|
3755
3796
|
"requirements": {
|
|
3756
3797
|
"title": "要件レビュー",
|
|
3757
3798
|
"iteration": "イテレーション {current} / {max}",
|
package/i18n/locales/pl.json
CHANGED
|
@@ -492,7 +492,8 @@
|
|
|
492
492
|
"env_test_not_a_frame": "To nie usługa",
|
|
493
493
|
"env_test_infraless": "Nie ma czego testować",
|
|
494
494
|
"env_test_not_provisionable": "Handler środowiska nie jest skonfigurowany",
|
|
495
|
-
"env_test_no_vcs": "Dostawca Git nie jest połączony"
|
|
495
|
+
"env_test_no_vcs": "Dostawca Git nie jest połączony",
|
|
496
|
+
"env_test_connection_failed": "Połączenie ze środowiskiem nie powiodło się"
|
|
496
497
|
},
|
|
497
498
|
"description": {
|
|
498
499
|
"dependencies_unmet": "To zadanie zależy od innych, które nie zostały jeszcze ukończone. Ukończ je lub odblokuj, a następnie uruchom je ponownie.",
|
|
@@ -514,7 +515,9 @@
|
|
|
514
515
|
"env_test_not_provisionable": "Ta usługa ma typ udostępniania, ale nie ma jeszcze dla niego żadnego mechanizmu obsługi w przestrzeni roboczej, więc udostępnianie nie może zostać uruchomione. Skonfiguruj mechanizm obsługi środowiska.",
|
|
515
516
|
"env_test_not_provisionable_no_handler": "Dla typu udostępniania tej usługi nie skonfigurowano żadnego mechanizmu obsługi środowiska w przestrzeni roboczej. W sekcji Infrastruktura → Środowiska testowe zarejestruj jeden — dla dostawcy niestandardowego mechanizm obsługi Custom (remote-custom), którego akceptowany manifest id odpowiada temu, który przypina ta usługa.",
|
|
516
517
|
"env_test_not_provisionable_type_mismatch": "Do typu udostępniania tej usługi może pasować więcej niż jeden mechanizm obsługi środowiska. Przypnij manifest id do tej usługi, aby rozwiązywany był dokładnie jeden, albo usuń nakładający się mechanizm obsługi w sekcji Infrastruktura → Środowiska testowe.",
|
|
517
|
-
"env_test_no_vcs": "Autotest potrzebuje dostawcy Git, aby utworzyć i usunąć swoją jednorazową gałąź, ale ta przestrzeń robocza nie jest połączona z żadnym."
|
|
518
|
+
"env_test_no_vcs": "Autotest potrzebuje dostawcy Git, aby utworzyć i usunąć swoją jednorazową gałąź, ale ta przestrzeń robocza nie jest połączona z żadnym.",
|
|
519
|
+
"env_test_connection_failed": "Obsługa środowiska dla tej usługi nie przeszła testu połączenia. Sprawdź jej punkt końcowy, poświadczenia i ustawienia projektu, a następnie ponownie przetestuj połączenie.",
|
|
520
|
+
"env_test_connection_failed_detail": "Obsługa środowiska dla tej usługi nie przeszła testu połączenia: {detail}. Sprawdź jej punkt końcowy, poświadczenia i ustawienia projektu, a następnie ponownie przetestuj połączenie."
|
|
518
521
|
},
|
|
519
522
|
"action": {
|
|
520
523
|
"connectGitHub": "Połącz GitHub",
|
|
@@ -1721,6 +1724,7 @@
|
|
|
1721
1724
|
"initiative": "Oznacz jako przeczytane",
|
|
1722
1725
|
"markRead": "Oznacz jako przeczytane",
|
|
1723
1726
|
"fork_decision_pending": "Oznacz jako przeczytane",
|
|
1727
|
+
"judge_review": "Oznacz jako przeczytane",
|
|
1724
1728
|
"pr_review_ready": "Oznacz jako przeczytane",
|
|
1725
1729
|
"budget_paused": "Oznacz jako przeczytane",
|
|
1726
1730
|
"key_drift": "Usuń nieaktualne poświadczenia",
|
|
@@ -3740,6 +3744,43 @@
|
|
|
3740
3744
|
"footer": "Bramka wykonuje programowe wstępne sprawdzenie i uruchamia {helper} tylko, gdy się nie powiedzie; zielone sprawdzenie przechodzi dalej bez uruchamiania czegokolwiek."
|
|
3741
3745
|
}
|
|
3742
3746
|
},
|
|
3747
|
+
"judge": {
|
|
3748
|
+
"subtitle": "Ocenia pracę tego przebiegu według rubryki, a potem kontynuuje, pyta lub odsyła ją z powrotem",
|
|
3749
|
+
"empty": "Ten krok nie wydał jeszcze werdyktu.",
|
|
3750
|
+
"notScored": "Bez oceny",
|
|
3751
|
+
"threshold": "próg {threshold}",
|
|
3752
|
+
"rubricOverridden": "rubryka przestrzeni roboczej",
|
|
3753
|
+
"reworkRounds": "poprawki {spent}/{budget}",
|
|
3754
|
+
"findingsHeading": "Co zgłosiła rubryka",
|
|
3755
|
+
"roundsHeading": "Rundy przeglądu",
|
|
3756
|
+
"round": "Runda {round}",
|
|
3757
|
+
"decisionHeading": "Twoja decyzja",
|
|
3758
|
+
"decisionDescription": "Kontynuuj mimo wszystko, odeślij pracę do poprawki albo zatrzymaj przebieg.",
|
|
3759
|
+
"feedbackPlaceholder": "Opcjonalne wskazówki dołączane przy odsyłaniu pracy…",
|
|
3760
|
+
"proceed": "Kontynuuj mimo wszystko",
|
|
3761
|
+
"bounce": "Odeślij do poprawki",
|
|
3762
|
+
"stop": "Zatrzymaj przebieg",
|
|
3763
|
+
"status": {
|
|
3764
|
+
"evaluating": "Przegląd",
|
|
3765
|
+
"awaitingDecision": "Wymaga decyzji",
|
|
3766
|
+
"bouncing": "W poprawkach",
|
|
3767
|
+
"passed": "Zaliczone",
|
|
3768
|
+
"failed": "Niezaliczone",
|
|
3769
|
+
"skipped": "Pominięte"
|
|
3770
|
+
},
|
|
3771
|
+
"severity": {
|
|
3772
|
+
"low": "Niska",
|
|
3773
|
+
"medium": "Średnia",
|
|
3774
|
+
"high": "Wysoka",
|
|
3775
|
+
"critical": "Krytyczna"
|
|
3776
|
+
},
|
|
3777
|
+
"disposition": {
|
|
3778
|
+
"pass": "Zaliczone",
|
|
3779
|
+
"park": "Zapytano człowieka",
|
|
3780
|
+
"bounce": "Odesłane do poprawki",
|
|
3781
|
+
"fail": "Przebieg nieudany"
|
|
3782
|
+
}
|
|
3783
|
+
},
|
|
3743
3784
|
"requirements": {
|
|
3744
3785
|
"title": "Przegląd wymagań",
|
|
3745
3786
|
"iteration": "Iteracja {current} / {max}",
|
package/i18n/locales/tr.json
CHANGED
|
@@ -492,7 +492,8 @@
|
|
|
492
492
|
"env_test_not_a_frame": "Bir hizmet değil",
|
|
493
493
|
"env_test_infraless": "Test edilecek bir şey yok",
|
|
494
494
|
"env_test_not_provisionable": "Ortam işleyicisi yapılandırılmamış",
|
|
495
|
-
"env_test_no_vcs": "Git sağlayıcısı bağlı değil"
|
|
495
|
+
"env_test_no_vcs": "Git sağlayıcısı bağlı değil",
|
|
496
|
+
"env_test_connection_failed": "Ortam bağlantısı başarısız"
|
|
496
497
|
},
|
|
497
498
|
"description": {
|
|
498
499
|
"dependencies_unmet": "Bu görev henüz tamamlanmamış başka görevlere bağlı. Onları tamamla veya engelini kaldır, ardından yeniden başlat.",
|
|
@@ -514,7 +515,9 @@
|
|
|
514
515
|
"env_test_not_provisionable": "Bu hizmetin bir sağlama türü var ancak henüz onun için çözümlenen bir çalışma alanı işleyicisi yok, bu yüzden sağlama çalışamaz. Bir ortam işleyicisi yapılandır.",
|
|
515
516
|
"env_test_not_provisionable_no_handler": "Bu hizmetin sağlama türü için yapılandırılmış bir çalışma alanı ortam işleyicisi yok. Altyapı → Test ortamları bölümünde bir tane kaydet — özel bir sağlayıcı için, kabul ettiği manifest id bu hizmetin sabitlediğiyle eşleşen bir Custom (remote-custom) işleyicisi.",
|
|
516
517
|
"env_test_not_provisionable_type_mismatch": "Birden fazla ortam işleyicisi bu hizmetin sağlama türüyle eşleşebilir. Tam olarak biri çözümlensin diye bu hizmet için bir manifest id sabitle ya da Altyapı → Test ortamları bölümündeki çakışan işleyiciyi kaldır.",
|
|
517
|
-
"env_test_no_vcs": "Öz test, tek kullanımlık dalını oluşturup silmek için bir Git sağlayıcısına ihtiyaç duyar ancak bu çalışma alanı hiçbirine bağlı değil."
|
|
518
|
+
"env_test_no_vcs": "Öz test, tek kullanımlık dalını oluşturup silmek için bir Git sağlayıcısına ihtiyaç duyar ancak bu çalışma alanı hiçbirine bağlı değil.",
|
|
519
|
+
"env_test_connection_failed": "Bu hizmetin ortam işleyicisi bağlantı testini geçemedi. Uç noktasını, kimlik bilgilerini ve proje ayarlarını kontrol edin, ardından bağlantıyı yeniden test edin.",
|
|
520
|
+
"env_test_connection_failed_detail": "Bu hizmetin ortam işleyicisi bağlantı testini geçemedi: {detail}. Uç noktasını, kimlik bilgilerini ve proje ayarlarını kontrol edin, ardından bağlantıyı yeniden test edin."
|
|
518
521
|
},
|
|
519
522
|
"action": {
|
|
520
523
|
"connectGitHub": "GitHub'ı bağla",
|
|
@@ -1721,6 +1724,7 @@
|
|
|
1721
1724
|
"initiative": "Okundu işaretle",
|
|
1722
1725
|
"markRead": "Okundu işaretle",
|
|
1723
1726
|
"fork_decision_pending": "Okundu olarak işaretle",
|
|
1727
|
+
"judge_review": "Okundu olarak işaretle",
|
|
1724
1728
|
"pr_review_ready": "Okundu işaretle",
|
|
1725
1729
|
"budget_paused": "Okundu işaretle",
|
|
1726
1730
|
"key_drift": "Eski kimlik bilgilerini kaldır",
|
|
@@ -3752,6 +3756,43 @@
|
|
|
3752
3756
|
"footer": "Bir kapı, programatik bir ön kontrol çalıştırır ve yalnızca başarısız olduğunda {helper} öğesini devreye sokar; yeşil bir kontrol, hiçbir şey devreye girmeden ilerler."
|
|
3753
3757
|
}
|
|
3754
3758
|
},
|
|
3759
|
+
"judge": {
|
|
3760
|
+
"subtitle": "Bu çalışmanın işini bir değerlendirme ölçütüne göre puanlar; sonra devam eder, sorar ya da geri gönderir",
|
|
3761
|
+
"empty": "Bu adım henüz bir karar üretmedi.",
|
|
3762
|
+
"notScored": "Puanlanmadı",
|
|
3763
|
+
"threshold": "eşik {threshold}",
|
|
3764
|
+
"rubricOverridden": "çalışma alanı ölçütü",
|
|
3765
|
+
"reworkRounds": "yeniden çalışma {spent}/{budget}",
|
|
3766
|
+
"findingsHeading": "Ölçütün işaretledikleri",
|
|
3767
|
+
"roundsHeading": "İnceleme turları",
|
|
3768
|
+
"round": "{round}. tur",
|
|
3769
|
+
"decisionHeading": "Kararınız",
|
|
3770
|
+
"decisionDescription": "Yine de devam edin, işi düzeltilmek üzere geri gönderin ya da çalışmayı durdurun.",
|
|
3771
|
+
"feedbackPlaceholder": "Geri gönderirken eklenecek isteğe bağlı yönlendirme…",
|
|
3772
|
+
"proceed": "Yine de devam et",
|
|
3773
|
+
"bounce": "Düzeltme için geri gönder",
|
|
3774
|
+
"stop": "Çalışmayı durdur",
|
|
3775
|
+
"status": {
|
|
3776
|
+
"evaluating": "İnceleniyor",
|
|
3777
|
+
"awaitingDecision": "Karar gerekiyor",
|
|
3778
|
+
"bouncing": "Düzeltiliyor",
|
|
3779
|
+
"passed": "Geçti",
|
|
3780
|
+
"failed": "Başarısız",
|
|
3781
|
+
"skipped": "Atlandı"
|
|
3782
|
+
},
|
|
3783
|
+
"severity": {
|
|
3784
|
+
"low": "Düşük",
|
|
3785
|
+
"medium": "Orta",
|
|
3786
|
+
"high": "Yüksek",
|
|
3787
|
+
"critical": "Kritik"
|
|
3788
|
+
},
|
|
3789
|
+
"disposition": {
|
|
3790
|
+
"pass": "Geçti",
|
|
3791
|
+
"park": "Bir kişiye sordu",
|
|
3792
|
+
"bounce": "Düzeltme için geri gönderildi",
|
|
3793
|
+
"fail": "Çalışma başarısız oldu"
|
|
3794
|
+
}
|
|
3795
|
+
},
|
|
3755
3796
|
"requirements": {
|
|
3756
3797
|
"title": "Gereksinim incelemesi",
|
|
3757
3798
|
"iteration": "Yineleme {current} / {max}",
|