@cat-factory/app 0.211.0 → 0.212.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/layout/AccountPlatformAlertSettings.vue +329 -0
- package/app/components/layout/AccountTeamSettings.vue +9 -0
- package/app/components/layout/NotificationsInbox.vue +76 -1
- package/app/components/panels/OperatorDashboardPanel.vue +130 -0
- package/app/types/execution.ts +6 -0
- package/i18n/locales/de.json +65 -2
- package/i18n/locales/en.json +65 -2
- package/i18n/locales/es.json +65 -2
- package/i18n/locales/fr.json +65 -2
- package/i18n/locales/he.json +65 -2
- package/i18n/locales/it.json +65 -2
- package/i18n/locales/ja.json +65 -2
- package/i18n/locales/pl.json +65 -2
- package/i18n/locales/tr.json +65 -2
- package/i18n/locales/uk.json +65 -2
- package/package.json +2 -2
package/i18n/locales/de.json
CHANGED
|
@@ -1085,6 +1085,48 @@
|
|
|
1085
1085
|
"offHint": "Nicht gesetzt: Jedes Board entscheidet selbst. Bestehende Boards behalten ihre Auswahl.",
|
|
1086
1086
|
"saved": "Richtlinie für Ausführungs-Anmeldedaten gespeichert",
|
|
1087
1087
|
"saveFailed": "Richtlinie für Ausführungs-Anmeldedaten konnte nicht gespeichert werden"
|
|
1088
|
+
},
|
|
1089
|
+
"platformAlerts": {
|
|
1090
|
+
"title": "Plattform-Zustandswarnungen",
|
|
1091
|
+
"description": "Obergrenzen, gegen die der Laufzustand dieses Kontos geprüft wird. Leere Felder übernehmen die Vorgaben der Installation.",
|
|
1092
|
+
"muteLabel": "Warnungen für dieses Konto stummschalten",
|
|
1093
|
+
"muteHint": "Warnungen lassen sich hier nur abschalten. Ob die Prüfung überhaupt läuft, ist eine Einstellung der Installation.",
|
|
1094
|
+
"windowLabel": "Auswertungsfenster",
|
|
1095
|
+
"windowHint": "Wie weit jede Bedingung zurückblickt. Ein längeres Fenster reagiert langsamer und bleibt ruhiger.",
|
|
1096
|
+
"thresholdsLabel": "Schwellenwerte",
|
|
1097
|
+
"inheritHint": "Ein leeres Feld übernimmt die Vorgabe der Installation. Eine Null ist ein echter Wert, kein leeres Feld.",
|
|
1098
|
+
"inheritPlaceholder": "Übernommen",
|
|
1099
|
+
"reset": "Überschreibungen löschen",
|
|
1100
|
+
"saved": "Warneinstellungen gespeichert",
|
|
1101
|
+
"saveFailed": "Warneinstellungen konnten nicht gespeichert werden",
|
|
1102
|
+
"window": {
|
|
1103
|
+
"inherit": "Vorgabe der Installation",
|
|
1104
|
+
"oneHour": "Letzte Stunde",
|
|
1105
|
+
"oneDay": "Letzte 24 Stunden",
|
|
1106
|
+
"sevenDays": "Letzte 7 Tage"
|
|
1107
|
+
},
|
|
1108
|
+
"thresholds": {
|
|
1109
|
+
"minRuns": "Mindestanzahl Läufe",
|
|
1110
|
+
"maxFailureRate": "Obergrenze Fehlerquote",
|
|
1111
|
+
"maxP99DurationMs": "Obergrenze p99-Dauer (Minuten)",
|
|
1112
|
+
"maxBacklog": "Obergrenze Rückstau",
|
|
1113
|
+
"stalledBuckets": "Leere Intervalle bis zum Stillstand",
|
|
1114
|
+
"minStalledPriorRuns": "Läufe, bevor Stillstand zählt",
|
|
1115
|
+
"maxFailureKindShare": "Anteil der dominanten Ursache",
|
|
1116
|
+
"maxSweepFailures": "Fehlschläge der Prüfung in Folge"
|
|
1117
|
+
},
|
|
1118
|
+
"hints": {
|
|
1119
|
+
"minRuns": "Abgeschlossene Läufe, die das Fenster braucht, bevor die Fehlerwarnungen auslösen können.",
|
|
1120
|
+
"maxFailureRate": "Anteil der Läufe, die fehlschlagen dürfen, von 0 bis 1.",
|
|
1121
|
+
"maxP99DurationMs": "Wie lange die langsamsten Läufe dauern dürfen.",
|
|
1122
|
+
"maxBacklog": "Unfertige Läufe, die gleichzeitig unterwegs sein dürfen.",
|
|
1123
|
+
"stalledBuckets": "Abschließende leere Intervalle im Verlauf, die als Stillstand gelten.",
|
|
1124
|
+
"minStalledPriorRuns": "Läufe, die der frühere Teil des Fensters getragen haben muss. Null warnt bei jeder Stille.",
|
|
1125
|
+
"maxFailureKindShare": "Anteil der Fehler, den eine einzelne Ursache ausmachen darf, über 0 und bis 1.",
|
|
1126
|
+
"maxSweepFailures": "Aufeinanderfolgende fehlgeschlagene Durchläufe einer Hintergrundprüfung."
|
|
1127
|
+
},
|
|
1128
|
+
"notLoaded": "Die aktuellen Einstellungen dieses Kontos konnten nicht geladen werden; ein Speichern würde die übrigen überschreiben. Bitte vor dem Bearbeiten neu laden.",
|
|
1129
|
+
"invalidNumbers": "Diese Obergrenzen sind keine Zahlen"
|
|
1088
1130
|
}
|
|
1089
1131
|
},
|
|
1090
1132
|
"inspector": {
|
|
@@ -2073,7 +2115,10 @@
|
|
|
2073
2115
|
"budget_paused": "Als gelesen markieren",
|
|
2074
2116
|
"key_drift": "Veraltete Zugangsdaten entfernen",
|
|
2075
2117
|
"merge_tag_request": "Aufwand erfassen"
|
|
2076
|
-
}
|
|
2118
|
+
},
|
|
2119
|
+
"failingRun": "{kind} · {at}",
|
|
2120
|
+
"failingRunsMore": "{count} weitere nicht angezeigt",
|
|
2121
|
+
"failingRunGone": "Dieser Lauf ist nicht mehr geladen und hat keine Aufgabe zum Öffnen."
|
|
2077
2122
|
},
|
|
2078
2123
|
"aiProvidersBanner": {
|
|
2079
2124
|
"setup": {
|
|
@@ -3253,7 +3298,9 @@
|
|
|
3253
3298
|
"window": {
|
|
3254
3299
|
"oneHour": "Letzte Stunde",
|
|
3255
3300
|
"oneDay": "Letzte 24 Stunden",
|
|
3256
|
-
"sevenDays": "Letzte 7 Tage"
|
|
3301
|
+
"sevenDays": "Letzte 7 Tage",
|
|
3302
|
+
"thirtyDays": "Letzte 30 Tage",
|
|
3303
|
+
"ninetyDays": "Letzte 90 Tage"
|
|
3257
3304
|
},
|
|
3258
3305
|
"outcomes": {
|
|
3259
3306
|
"title": "Lauf-Ergebnisse",
|
|
@@ -3303,6 +3350,22 @@
|
|
|
3303
3350
|
},
|
|
3304
3351
|
"live": {
|
|
3305
3352
|
"title": "Jetzt aktiv"
|
|
3353
|
+
},
|
|
3354
|
+
"rollup": {
|
|
3355
|
+
"none": "Die tägliche Aggregation hat noch nichts erzeugt. Dieses Zeitfenster ist also mangels Daten leer, nicht mangels Läufen.",
|
|
3356
|
+
"stale": "Die tägliche Aggregation reicht nur bis {date}. Alles danach sind fehlende Daten, keine ruhige Zeit.",
|
|
3357
|
+
"current": "Aus der täglichen Aggregation, vollständig bis {date}."
|
|
3358
|
+
},
|
|
3359
|
+
"gates": {
|
|
3360
|
+
"title": "Gate-Versuche",
|
|
3361
|
+
"empty": "In diesem Zeitfenster wurde kein Gate abgeschlossen.",
|
|
3362
|
+
"gate": "Gate",
|
|
3363
|
+
"settled": "Abgeschlossen",
|
|
3364
|
+
"cleanPasses": "Ohne Fixer bestanden",
|
|
3365
|
+
"attempts": "Fixer-Versuche",
|
|
3366
|
+
"helperFailures": "Fixer-Fehlschläge",
|
|
3367
|
+
"exhausted": "An Menschen übergeben",
|
|
3368
|
+
"hint": "Ohne Fixer bestanden heißt: die Vorprüfung war zufrieden und es wurde gar kein Fixer gestartet. Fixer-Fehlschläge sind Versuche, deren eigener Job abgestürzt ist, im Unterschied zu Versuchen, die liefen und die Prüfung rot ließen."
|
|
3306
3369
|
}
|
|
3307
3370
|
},
|
|
3308
3371
|
"reports": {
|
package/i18n/locales/en.json
CHANGED
|
@@ -1646,7 +1646,9 @@
|
|
|
1646
1646
|
"window": {
|
|
1647
1647
|
"oneHour": "Last hour",
|
|
1648
1648
|
"oneDay": "Last 24 hours",
|
|
1649
|
-
"sevenDays": "Last 7 days"
|
|
1649
|
+
"sevenDays": "Last 7 days",
|
|
1650
|
+
"thirtyDays": "Last 30 days",
|
|
1651
|
+
"ninetyDays": "Last 90 days"
|
|
1650
1652
|
},
|
|
1651
1653
|
"outcomes": {
|
|
1652
1654
|
"title": "Run outcomes",
|
|
@@ -1696,6 +1698,22 @@
|
|
|
1696
1698
|
},
|
|
1697
1699
|
"live": {
|
|
1698
1700
|
"title": "Live now"
|
|
1701
|
+
},
|
|
1702
|
+
"rollup": {
|
|
1703
|
+
"none": "The daily rollup has produced nothing yet, so this window is empty for lack of data, not for lack of runs.",
|
|
1704
|
+
"stale": "The daily rollup only reaches {date}. Anything after that is missing data, not idle time.",
|
|
1705
|
+
"current": "From the daily rollup, complete through {date}."
|
|
1706
|
+
},
|
|
1707
|
+
"gates": {
|
|
1708
|
+
"title": "Gate attempts",
|
|
1709
|
+
"empty": "No gate settled in this window.",
|
|
1710
|
+
"gate": "Gate",
|
|
1711
|
+
"settled": "Settled",
|
|
1712
|
+
"cleanPasses": "Clean passes",
|
|
1713
|
+
"attempts": "Fixer attempts",
|
|
1714
|
+
"helperFailures": "Fixer failures",
|
|
1715
|
+
"exhausted": "Handed to a human",
|
|
1716
|
+
"hint": "A clean pass is a gate the precheck satisfied without starting a fixer at all. Fixer failures are attempts whose own job crashed, as opposed to attempts that ran and left the check red."
|
|
1699
1717
|
}
|
|
1700
1718
|
},
|
|
1701
1719
|
"reports": {
|
|
@@ -2050,7 +2068,10 @@
|
|
|
2050
2068
|
"budget_paused": "Mark read",
|
|
2051
2069
|
"key_drift": "Drop stale credentials",
|
|
2052
2070
|
"merge_tag_request": "Record effort"
|
|
2053
|
-
}
|
|
2071
|
+
},
|
|
2072
|
+
"failingRun": "{kind} · {at}",
|
|
2073
|
+
"failingRunsMore": "{count} more not shown",
|
|
2074
|
+
"failingRunGone": "This run is no longer loaded and has no task to open."
|
|
2054
2075
|
},
|
|
2055
2076
|
"aiProvidersBanner": {
|
|
2056
2077
|
"setup": {
|
|
@@ -3470,6 +3491,48 @@
|
|
|
3470
3491
|
"offHint": "Not set: each board decides for itself. Existing boards keep whatever they have chosen.",
|
|
3471
3492
|
"saved": "Run credential policy saved",
|
|
3472
3493
|
"saveFailed": "Could not save the run credential policy"
|
|
3494
|
+
},
|
|
3495
|
+
"platformAlerts": {
|
|
3496
|
+
"title": "Platform health alerts",
|
|
3497
|
+
"description": "Ceilings this account's own run health is checked against. Blank fields inherit the deployment defaults.",
|
|
3498
|
+
"muteLabel": "Mute alerts for this account",
|
|
3499
|
+
"muteHint": "Alerts can only be switched off here. Whether the sweep runs at all is a deployment setting.",
|
|
3500
|
+
"windowLabel": "Evaluation window",
|
|
3501
|
+
"windowHint": "How far back each condition looks. A longer window reacts more slowly and stays quieter.",
|
|
3502
|
+
"thresholdsLabel": "Thresholds",
|
|
3503
|
+
"inheritHint": "Leave a field empty to inherit the deployment default. A zero is a real setting, not an empty one.",
|
|
3504
|
+
"inheritPlaceholder": "Inherited",
|
|
3505
|
+
"reset": "Clear overrides",
|
|
3506
|
+
"saved": "Alert settings saved",
|
|
3507
|
+
"saveFailed": "Could not save the alert settings",
|
|
3508
|
+
"window": {
|
|
3509
|
+
"inherit": "Deployment default",
|
|
3510
|
+
"oneHour": "Last hour",
|
|
3511
|
+
"oneDay": "Last 24 hours",
|
|
3512
|
+
"sevenDays": "Last 7 days"
|
|
3513
|
+
},
|
|
3514
|
+
"thresholds": {
|
|
3515
|
+
"minRuns": "Minimum runs",
|
|
3516
|
+
"maxFailureRate": "Failure rate ceiling",
|
|
3517
|
+
"maxP99DurationMs": "p99 duration ceiling (minutes)",
|
|
3518
|
+
"maxBacklog": "Backlog ceiling",
|
|
3519
|
+
"stalledBuckets": "Empty buckets before a stall",
|
|
3520
|
+
"minStalledPriorRuns": "Runs before a stall counts",
|
|
3521
|
+
"maxFailureKindShare": "Dominant failure share",
|
|
3522
|
+
"maxSweepFailures": "Sweep failures in a row"
|
|
3523
|
+
},
|
|
3524
|
+
"hints": {
|
|
3525
|
+
"minRuns": "Finished runs the window needs before the failure alerts can fire.",
|
|
3526
|
+
"maxFailureRate": "Share of runs that may fail, from 0 to 1.",
|
|
3527
|
+
"maxP99DurationMs": "How long the slowest runs may take.",
|
|
3528
|
+
"maxBacklog": "Unfinished runs that may be in flight at once.",
|
|
3529
|
+
"stalledBuckets": "Trailing empty trend buckets that count as a stall.",
|
|
3530
|
+
"minStalledPriorRuns": "Runs the earlier part of the window must have carried. Zero alerts on any silence.",
|
|
3531
|
+
"maxFailureKindShare": "Share of failures one cause may account for, above 0 and up to 1.",
|
|
3532
|
+
"maxSweepFailures": "Consecutive failed passes of one background sweep."
|
|
3533
|
+
},
|
|
3534
|
+
"notLoaded": "This account's current settings could not be loaded, so saving would overwrite the rest of them. Reload before editing.",
|
|
3535
|
+
"invalidNumbers": "These ceilings are not numbers"
|
|
3473
3536
|
}
|
|
3474
3537
|
},
|
|
3475
3538
|
"providers": {
|
package/i18n/locales/es.json
CHANGED
|
@@ -1567,7 +1567,9 @@
|
|
|
1567
1567
|
"window": {
|
|
1568
1568
|
"oneHour": "Última hora",
|
|
1569
1569
|
"oneDay": "Últimas 24 horas",
|
|
1570
|
-
"sevenDays": "Últimos 7 días"
|
|
1570
|
+
"sevenDays": "Últimos 7 días",
|
|
1571
|
+
"thirtyDays": "Últimos 30 días",
|
|
1572
|
+
"ninetyDays": "Últimos 90 días"
|
|
1571
1573
|
},
|
|
1572
1574
|
"outcomes": {
|
|
1573
1575
|
"title": "Resultados de las ejecuciones",
|
|
@@ -1617,6 +1619,22 @@
|
|
|
1617
1619
|
},
|
|
1618
1620
|
"live": {
|
|
1619
1621
|
"title": "Activas ahora"
|
|
1622
|
+
},
|
|
1623
|
+
"rollup": {
|
|
1624
|
+
"none": "La agregación diaria aún no ha producido nada, así que esta ventana está vacía por falta de datos, no por falta de ejecuciones.",
|
|
1625
|
+
"stale": "La agregación diaria solo llega hasta {date}. Lo posterior son datos que faltan, no tiempo inactivo.",
|
|
1626
|
+
"current": "De la agregación diaria, completa hasta {date}."
|
|
1627
|
+
},
|
|
1628
|
+
"gates": {
|
|
1629
|
+
"title": "Intentos de las puertas",
|
|
1630
|
+
"empty": "Ninguna puerta se resolvió en esta ventana.",
|
|
1631
|
+
"gate": "Puerta",
|
|
1632
|
+
"settled": "Resueltas",
|
|
1633
|
+
"cleanPasses": "Aprobadas sin reparador",
|
|
1634
|
+
"attempts": "Intentos del reparador",
|
|
1635
|
+
"helperFailures": "Fallos del reparador",
|
|
1636
|
+
"exhausted": "Pasadas a una persona",
|
|
1637
|
+
"hint": "Aprobada sin reparador significa que la comprobación previa quedó satisfecha y no se inició ningún reparador. Los fallos del reparador son intentos cuyo propio trabajo se cayó, a diferencia de los que se ejecutaron y dejaron la comprobación en rojo."
|
|
1620
1638
|
}
|
|
1621
1639
|
},
|
|
1622
1640
|
"reports": {
|
|
@@ -1968,7 +1986,10 @@
|
|
|
1968
1986
|
"dismissed": "Descartado",
|
|
1969
1987
|
"actFailed": "No se pudo completar esa acción",
|
|
1970
1988
|
"dismissFailed": "No se pudo descartar"
|
|
1971
|
-
}
|
|
1989
|
+
},
|
|
1990
|
+
"failingRun": "{kind} · {at}",
|
|
1991
|
+
"failingRunsMore": "{count} más sin mostrar",
|
|
1992
|
+
"failingRunGone": "Esta ejecución ya no está cargada y no tiene ninguna tarea que abrir."
|
|
1972
1993
|
},
|
|
1973
1994
|
"aiProvidersBanner": {
|
|
1974
1995
|
"setup": {
|
|
@@ -3364,6 +3385,48 @@
|
|
|
3364
3385
|
"offHint": "Sin definir: cada tablero decide por sí mismo. Los tableros existentes conservan lo que hayan elegido.",
|
|
3365
3386
|
"saved": "Política de credenciales de ejecución guardada",
|
|
3366
3387
|
"saveFailed": "No se pudo guardar la política de credenciales de ejecución"
|
|
3388
|
+
},
|
|
3389
|
+
"platformAlerts": {
|
|
3390
|
+
"title": "Alertas de salud de la plataforma",
|
|
3391
|
+
"description": "Límites con los que se compara la salud de las ejecuciones de esta cuenta. Los campos vacíos heredan los valores de la instalación.",
|
|
3392
|
+
"muteLabel": "Silenciar las alertas de esta cuenta",
|
|
3393
|
+
"muteHint": "Aquí las alertas solo se pueden desactivar. Que el barrido se ejecute o no es un ajuste de la instalación.",
|
|
3394
|
+
"windowLabel": "Ventana de evaluación",
|
|
3395
|
+
"windowHint": "Hasta dónde mira atrás cada condición. Una ventana más larga reacciona más despacio y avisa menos.",
|
|
3396
|
+
"thresholdsLabel": "Umbrales",
|
|
3397
|
+
"inheritHint": "Deja un campo vacío para heredar el valor de la instalación. Un cero es un ajuste real, no un campo vacío.",
|
|
3398
|
+
"inheritPlaceholder": "Heredado",
|
|
3399
|
+
"reset": "Borrar las sustituciones",
|
|
3400
|
+
"saved": "Ajustes de alertas guardados",
|
|
3401
|
+
"saveFailed": "No se pudieron guardar los ajustes de alertas",
|
|
3402
|
+
"window": {
|
|
3403
|
+
"inherit": "Valor de la instalación",
|
|
3404
|
+
"oneHour": "Última hora",
|
|
3405
|
+
"oneDay": "Últimas 24 horas",
|
|
3406
|
+
"sevenDays": "Últimos 7 días"
|
|
3407
|
+
},
|
|
3408
|
+
"thresholds": {
|
|
3409
|
+
"minRuns": "Ejecuciones mínimas",
|
|
3410
|
+
"maxFailureRate": "Límite de tasa de fallos",
|
|
3411
|
+
"maxP99DurationMs": "Límite de duración p99 (minutos)",
|
|
3412
|
+
"maxBacklog": "Límite de trabajo acumulado",
|
|
3413
|
+
"stalledBuckets": "Intervalos vacíos hasta considerarlo parado",
|
|
3414
|
+
"minStalledPriorRuns": "Ejecuciones antes de contar una parada",
|
|
3415
|
+
"maxFailureKindShare": "Proporción de la causa dominante",
|
|
3416
|
+
"maxSweepFailures": "Fallos seguidos del barrido"
|
|
3417
|
+
},
|
|
3418
|
+
"hints": {
|
|
3419
|
+
"minRuns": "Ejecuciones terminadas que necesita la ventana antes de que puedan dispararse las alertas de fallos.",
|
|
3420
|
+
"maxFailureRate": "Proporción de ejecuciones que pueden fallar, de 0 a 1.",
|
|
3421
|
+
"maxP99DurationMs": "Cuánto pueden tardar las ejecuciones más lentas.",
|
|
3422
|
+
"maxBacklog": "Ejecuciones sin terminar que pueden estar en curso a la vez.",
|
|
3423
|
+
"stalledBuckets": "Intervalos finales vacíos de la tendencia que cuentan como parada.",
|
|
3424
|
+
"minStalledPriorRuns": "Ejecuciones que debe haber tenido la parte anterior de la ventana. Cero avisa ante cualquier silencio.",
|
|
3425
|
+
"maxFailureKindShare": "Proporción de los fallos que puede acaparar una sola causa, por encima de 0 y hasta 1.",
|
|
3426
|
+
"maxSweepFailures": "Pasadas fallidas consecutivas de un barrido en segundo plano."
|
|
3427
|
+
},
|
|
3428
|
+
"notLoaded": "No se pudieron cargar los ajustes actuales de esta cuenta, así que guardar sobrescribiría el resto. Vuelve a cargar antes de editar.",
|
|
3429
|
+
"invalidNumbers": "Estos límites no son números"
|
|
3367
3430
|
}
|
|
3368
3431
|
},
|
|
3369
3432
|
"providers": {
|
package/i18n/locales/fr.json
CHANGED
|
@@ -1567,7 +1567,9 @@
|
|
|
1567
1567
|
"window": {
|
|
1568
1568
|
"oneHour": "Dernière heure",
|
|
1569
1569
|
"oneDay": "Dernières 24 heures",
|
|
1570
|
-
"sevenDays": "7 derniers jours"
|
|
1570
|
+
"sevenDays": "7 derniers jours",
|
|
1571
|
+
"thirtyDays": "30 derniers jours",
|
|
1572
|
+
"ninetyDays": "90 derniers jours"
|
|
1571
1573
|
},
|
|
1572
1574
|
"outcomes": {
|
|
1573
1575
|
"title": "Résultats des exécutions",
|
|
@@ -1617,6 +1619,22 @@
|
|
|
1617
1619
|
},
|
|
1618
1620
|
"live": {
|
|
1619
1621
|
"title": "En direct"
|
|
1622
|
+
},
|
|
1623
|
+
"rollup": {
|
|
1624
|
+
"none": "L'agrégation quotidienne n'a encore rien produit : cette fenêtre est vide faute de données, pas faute d'exécutions.",
|
|
1625
|
+
"stale": "L'agrégation quotidienne ne va que jusqu'au {date}. Ce qui suit correspond à des données manquantes, pas à une période calme.",
|
|
1626
|
+
"current": "Issu de l'agrégation quotidienne, complète jusqu'au {date}."
|
|
1627
|
+
},
|
|
1628
|
+
"gates": {
|
|
1629
|
+
"title": "Tentatives des portes",
|
|
1630
|
+
"empty": "Aucune porte ne s'est conclue dans cette fenêtre.",
|
|
1631
|
+
"gate": "Porte",
|
|
1632
|
+
"settled": "Conclues",
|
|
1633
|
+
"cleanPasses": "Réussies sans réparateur",
|
|
1634
|
+
"attempts": "Tentatives du réparateur",
|
|
1635
|
+
"helperFailures": "Échecs du réparateur",
|
|
1636
|
+
"exhausted": "Confiées à une personne",
|
|
1637
|
+
"hint": "Réussie sans réparateur veut dire que la vérification préalable a suffi et qu'aucun réparateur n'a été lancé. Les échecs du réparateur sont les tentatives dont le travail lui-même a planté, par opposition à celles qui se sont exécutées en laissant la vérification au rouge."
|
|
1620
1638
|
}
|
|
1621
1639
|
},
|
|
1622
1640
|
"reports": {
|
|
@@ -1968,7 +1986,10 @@
|
|
|
1968
1986
|
"dismissed": "Ignoré",
|
|
1969
1987
|
"actFailed": "Impossible de terminer cette action",
|
|
1970
1988
|
"dismissFailed": "Impossible d'ignorer"
|
|
1971
|
-
}
|
|
1989
|
+
},
|
|
1990
|
+
"failingRun": "{kind} · {at}",
|
|
1991
|
+
"failingRunsMore": "{count} de plus non affichées",
|
|
1992
|
+
"failingRunGone": "Cette exécution n'est plus chargée et n'a aucune tâche à ouvrir."
|
|
1972
1993
|
},
|
|
1973
1994
|
"aiProvidersBanner": {
|
|
1974
1995
|
"setup": {
|
|
@@ -3364,6 +3385,48 @@
|
|
|
3364
3385
|
"offHint": "Non défini : chaque tableau décide pour lui-même. Les tableaux existants conservent leur choix.",
|
|
3365
3386
|
"saved": "Politique d’identifiants d’exécution enregistrée",
|
|
3366
3387
|
"saveFailed": "Impossible d’enregistrer la politique d’identifiants d’exécution"
|
|
3388
|
+
},
|
|
3389
|
+
"platformAlerts": {
|
|
3390
|
+
"title": "Alertes de santé de la plateforme",
|
|
3391
|
+
"description": "Plafonds auxquels la santé des exécutions de ce compte est comparée. Les champs vides héritent des valeurs du déploiement.",
|
|
3392
|
+
"muteLabel": "Couper les alertes pour ce compte",
|
|
3393
|
+
"muteHint": "Ici, les alertes ne peuvent qu'être coupées. Le fait que le balayage tourne relève du déploiement.",
|
|
3394
|
+
"windowLabel": "Fenêtre d'évaluation",
|
|
3395
|
+
"windowHint": "Jusqu'où chaque condition regarde en arrière. Une fenêtre plus longue réagit plus lentement et alerte moins.",
|
|
3396
|
+
"thresholdsLabel": "Seuils",
|
|
3397
|
+
"inheritHint": "Laissez un champ vide pour hériter de la valeur du déploiement. Un zéro est un réglage réel, pas un champ vide.",
|
|
3398
|
+
"inheritPlaceholder": "Hérité",
|
|
3399
|
+
"reset": "Effacer les surcharges",
|
|
3400
|
+
"saved": "Réglages d'alerte enregistrés",
|
|
3401
|
+
"saveFailed": "Impossible d'enregistrer les réglages d'alerte",
|
|
3402
|
+
"window": {
|
|
3403
|
+
"inherit": "Valeur du déploiement",
|
|
3404
|
+
"oneHour": "Dernière heure",
|
|
3405
|
+
"oneDay": "Dernières 24 heures",
|
|
3406
|
+
"sevenDays": "7 derniers jours"
|
|
3407
|
+
},
|
|
3408
|
+
"thresholds": {
|
|
3409
|
+
"minRuns": "Exécutions minimales",
|
|
3410
|
+
"maxFailureRate": "Plafond du taux d'échec",
|
|
3411
|
+
"maxP99DurationMs": "Plafond de durée p99 (minutes)",
|
|
3412
|
+
"maxBacklog": "Plafond de l'encours",
|
|
3413
|
+
"stalledBuckets": "Intervalles vides avant un arrêt",
|
|
3414
|
+
"minStalledPriorRuns": "Exécutions avant de compter un arrêt",
|
|
3415
|
+
"maxFailureKindShare": "Part de la cause dominante",
|
|
3416
|
+
"maxSweepFailures": "Échecs consécutifs du balayage"
|
|
3417
|
+
},
|
|
3418
|
+
"hints": {
|
|
3419
|
+
"minRuns": "Exécutions terminées que la fenêtre doit compter avant que les alertes d'échec puissent se déclencher.",
|
|
3420
|
+
"maxFailureRate": "Part des exécutions autorisées à échouer, de 0 à 1.",
|
|
3421
|
+
"maxP99DurationMs": "Durée maximale des exécutions les plus lentes.",
|
|
3422
|
+
"maxBacklog": "Exécutions inachevées pouvant être en cours en même temps.",
|
|
3423
|
+
"stalledBuckets": "Intervalles vides en fin de tendance comptant comme un arrêt.",
|
|
3424
|
+
"minStalledPriorRuns": "Exécutions que la première partie de la fenêtre doit avoir portées. Zéro alerte au moindre silence.",
|
|
3425
|
+
"maxFailureKindShare": "Part des échecs qu'une seule cause peut représenter, au-dessus de 0 et jusqu'à 1.",
|
|
3426
|
+
"maxSweepFailures": "Passages consécutifs en échec d'un balayage en arrière-plan."
|
|
3427
|
+
},
|
|
3428
|
+
"notLoaded": "Les paramètres actuels de ce compte n'ont pas pu être chargés ; enregistrer écraserait les autres. Rechargez avant de modifier.",
|
|
3429
|
+
"invalidNumbers": "Ces plafonds ne sont pas des nombres"
|
|
3367
3430
|
}
|
|
3368
3431
|
},
|
|
3369
3432
|
"providers": {
|
package/i18n/locales/he.json
CHANGED
|
@@ -1567,7 +1567,9 @@
|
|
|
1567
1567
|
"window": {
|
|
1568
1568
|
"oneHour": "השעה האחרונה",
|
|
1569
1569
|
"oneDay": "24 השעות האחרונות",
|
|
1570
|
-
"sevenDays": "7 הימים האחרונים"
|
|
1570
|
+
"sevenDays": "7 הימים האחרונים",
|
|
1571
|
+
"thirtyDays": "30 הימים האחרונים",
|
|
1572
|
+
"ninetyDays": "90 הימים האחרונים"
|
|
1571
1573
|
},
|
|
1572
1574
|
"outcomes": {
|
|
1573
1575
|
"title": "תוצאות ההרצות",
|
|
@@ -1617,6 +1619,22 @@
|
|
|
1617
1619
|
},
|
|
1618
1620
|
"live": {
|
|
1619
1621
|
"title": "פעילות כעת"
|
|
1622
|
+
},
|
|
1623
|
+
"rollup": {
|
|
1624
|
+
"none": "הסיכום היומי עוד לא הפיק דבר, ולכן החלון הזה ריק מחוסר נתונים ולא מחוסר הרצות.",
|
|
1625
|
+
"stale": "הסיכום היומי מגיע רק עד {date}. כל מה שאחרי זה הוא נתונים חסרים, לא זמן שקט.",
|
|
1626
|
+
"current": "מתוך הסיכום היומי, שלם עד {date}."
|
|
1627
|
+
},
|
|
1628
|
+
"gates": {
|
|
1629
|
+
"title": "ניסיונות של שערים",
|
|
1630
|
+
"empty": "שום שער לא הוכרע בחלון הזה.",
|
|
1631
|
+
"gate": "שער",
|
|
1632
|
+
"settled": "הוכרעו",
|
|
1633
|
+
"cleanPasses": "עברו בלי מתקן",
|
|
1634
|
+
"attempts": "ניסיונות של המתקן",
|
|
1635
|
+
"helperFailures": "כשלים של המתקן",
|
|
1636
|
+
"exhausted": "הועברו לאדם",
|
|
1637
|
+
"hint": "מעבר בלי מתקן פירושו שהבדיקה המקדימה הספיקה ולא הופעל מתקן כלל. כשלים של המתקן הם ניסיונות שהמשימה שלהם עצמה קרסה, בשונה מניסיונות שרצו והשאירו את הבדיקה אדומה."
|
|
1620
1638
|
}
|
|
1621
1639
|
},
|
|
1622
1640
|
"reports": {
|
|
@@ -1968,7 +1986,10 @@
|
|
|
1968
1986
|
"dismissed": "נדחה",
|
|
1969
1987
|
"actFailed": "לא ניתן היה להשלים את הפעולה",
|
|
1970
1988
|
"dismissFailed": "לא ניתן היה לבטל"
|
|
1971
|
-
}
|
|
1989
|
+
},
|
|
1990
|
+
"failingRun": "{kind} · {at}",
|
|
1991
|
+
"failingRunsMore": "עוד {count} שאינן מוצגות",
|
|
1992
|
+
"failingRunGone": "ההרצה הזו כבר לא טעונה ואין לה משימה לפתוח."
|
|
1972
1993
|
},
|
|
1973
1994
|
"aiProvidersBanner": {
|
|
1974
1995
|
"setup": {
|
|
@@ -3375,6 +3396,48 @@
|
|
|
3375
3396
|
"offHint": "לא הוגדר: כל לוח מחליט בעצמו. לוחות קיימים שומרים על בחירתם.",
|
|
3376
3397
|
"saved": "מדיניות אישורי הרצה נשמרה",
|
|
3377
3398
|
"saveFailed": "לא ניתן לשמור את מדיניות אישורי הרצה"
|
|
3399
|
+
},
|
|
3400
|
+
"platformAlerts": {
|
|
3401
|
+
"title": "התראות על תקינות הפלטפורמה",
|
|
3402
|
+
"description": "תקרות שמולן נבדקת תקינות ההרצות של החשבון הזה. שדות ריקים יורשים את ברירות המחדל של ההתקנה.",
|
|
3403
|
+
"muteLabel": "השתקת התראות לחשבון הזה",
|
|
3404
|
+
"muteHint": "כאן אפשר רק לכבות התראות. האם הסריקה בכלל רצה הוא הגדרה של ההתקנה.",
|
|
3405
|
+
"windowLabel": "חלון ההערכה",
|
|
3406
|
+
"windowHint": "עד כמה אחורה מסתכל כל תנאי. חלון ארוך יותר מגיב לאט יותר ומתריע פחות.",
|
|
3407
|
+
"thresholdsLabel": "ספים",
|
|
3408
|
+
"inheritHint": "השאירו שדה ריק כדי לרשת את ברירת המחדל של ההתקנה. אפס הוא הגדרה אמיתית, לא שדה ריק.",
|
|
3409
|
+
"inheritPlaceholder": "בירושה",
|
|
3410
|
+
"reset": "ניקוי הדריסות",
|
|
3411
|
+
"saved": "הגדרות ההתראות נשמרו",
|
|
3412
|
+
"saveFailed": "לא ניתן היה לשמור את הגדרות ההתראות",
|
|
3413
|
+
"window": {
|
|
3414
|
+
"inherit": "ברירת המחדל של ההתקנה",
|
|
3415
|
+
"oneHour": "השעה האחרונה",
|
|
3416
|
+
"oneDay": "24 השעות האחרונות",
|
|
3417
|
+
"sevenDays": "7 הימים האחרונים"
|
|
3418
|
+
},
|
|
3419
|
+
"thresholds": {
|
|
3420
|
+
"minRuns": "מספר הרצות מזערי",
|
|
3421
|
+
"maxFailureRate": "תקרת שיעור הכשלים",
|
|
3422
|
+
"maxP99DurationMs": "תקרת משך p99 (דקות)",
|
|
3423
|
+
"maxBacklog": "תקרת עומס ממתין",
|
|
3424
|
+
"stalledBuckets": "מקטעים ריקים עד לקביעת עצירה",
|
|
3425
|
+
"minStalledPriorRuns": "הרצות לפני שעצירה נספרת",
|
|
3426
|
+
"maxFailureKindShare": "חלקה של הסיבה השולטת",
|
|
3427
|
+
"maxSweepFailures": "כשלים רצופים של הסריקה"
|
|
3428
|
+
},
|
|
3429
|
+
"hints": {
|
|
3430
|
+
"minRuns": "הרצות שהסתיימו שהחלון צריך לפני שהתראות הכשל יכולות לפעול.",
|
|
3431
|
+
"maxFailureRate": "חלק ההרצות שמותר להן להיכשל, מ‑0 עד 1.",
|
|
3432
|
+
"maxP99DurationMs": "כמה זמן מותר להרצות האיטיות ביותר לקחת.",
|
|
3433
|
+
"maxBacklog": "הרצות לא גמורות שמותר להן להיות בעבודה בו זמנית.",
|
|
3434
|
+
"stalledBuckets": "מקטעים ריקים בסוף המגמה שנחשבים לעצירה.",
|
|
3435
|
+
"minStalledPriorRuns": "הרצות שהחלק המוקדם של החלון היה חייב לשאת. אפס מתריע על כל שקט.",
|
|
3436
|
+
"maxFailureKindShare": "חלק הכשלים שסיבה אחת רשאית להוות, מעל 0 ועד 1.",
|
|
3437
|
+
"maxSweepFailures": "מעברים כושלים רצופים של סריקת רקע אחת."
|
|
3438
|
+
},
|
|
3439
|
+
"notLoaded": "לא ניתן היה לטעון את ההגדרות הנוכחיות של חשבון זה, ולכן שמירה תדרוס את שאר ההגדרות. יש לטעון מחדש לפני עריכה.",
|
|
3440
|
+
"invalidNumbers": "תקרות אלה אינן מספרים"
|
|
3378
3441
|
}
|
|
3379
3442
|
},
|
|
3380
3443
|
"providers": {
|
package/i18n/locales/it.json
CHANGED
|
@@ -1085,6 +1085,48 @@
|
|
|
1085
1085
|
"offHint": "Non impostato: ogni board decide da sé. Le board esistenti mantengono la loro scelta.",
|
|
1086
1086
|
"saved": "Criterio per le credenziali di esecuzione salvato",
|
|
1087
1087
|
"saveFailed": "Impossibile salvare il criterio per le credenziali di esecuzione"
|
|
1088
|
+
},
|
|
1089
|
+
"platformAlerts": {
|
|
1090
|
+
"title": "Avvisi sullo stato della piattaforma",
|
|
1091
|
+
"description": "Soglie con cui viene confrontato lo stato delle esecuzioni di questo account. I campi vuoti ereditano i valori del deployment.",
|
|
1092
|
+
"muteLabel": "Silenzia gli avvisi per questo account",
|
|
1093
|
+
"muteHint": "Qui gli avvisi si possono solo disattivare. Se la scansione venga eseguita è un'impostazione del deployment.",
|
|
1094
|
+
"windowLabel": "Finestra di valutazione",
|
|
1095
|
+
"windowHint": "Quanto indietro guarda ogni condizione. Una finestra più lunga reagisce più lentamente e avvisa meno.",
|
|
1096
|
+
"thresholdsLabel": "Soglie",
|
|
1097
|
+
"inheritHint": "Lascia vuoto un campo per ereditare il valore del deployment. Uno zero è un'impostazione reale, non un campo vuoto.",
|
|
1098
|
+
"inheritPlaceholder": "Ereditato",
|
|
1099
|
+
"reset": "Cancella le sostituzioni",
|
|
1100
|
+
"saved": "Impostazioni degli avvisi salvate",
|
|
1101
|
+
"saveFailed": "Impossibile salvare le impostazioni degli avvisi",
|
|
1102
|
+
"window": {
|
|
1103
|
+
"inherit": "Valore del deployment",
|
|
1104
|
+
"oneHour": "Ultima ora",
|
|
1105
|
+
"oneDay": "Ultime 24 ore",
|
|
1106
|
+
"sevenDays": "Ultimi 7 giorni"
|
|
1107
|
+
},
|
|
1108
|
+
"thresholds": {
|
|
1109
|
+
"minRuns": "Esecuzioni minime",
|
|
1110
|
+
"maxFailureRate": "Soglia del tasso di errore",
|
|
1111
|
+
"maxP99DurationMs": "Soglia di durata p99 (minuti)",
|
|
1112
|
+
"maxBacklog": "Soglia del lavoro arretrato",
|
|
1113
|
+
"stalledBuckets": "Intervalli vuoti prima di uno stallo",
|
|
1114
|
+
"minStalledPriorRuns": "Esecuzioni prima che uno stallo conti",
|
|
1115
|
+
"maxFailureKindShare": "Quota della causa dominante",
|
|
1116
|
+
"maxSweepFailures": "Fallimenti consecutivi della scansione"
|
|
1117
|
+
},
|
|
1118
|
+
"hints": {
|
|
1119
|
+
"minRuns": "Esecuzioni concluse che la finestra richiede prima che gli avvisi sugli errori possano scattare.",
|
|
1120
|
+
"maxFailureRate": "Quota di esecuzioni che può fallire, da 0 a 1.",
|
|
1121
|
+
"maxP99DurationMs": "Quanto possono durare le esecuzioni più lente.",
|
|
1122
|
+
"maxBacklog": "Esecuzioni non concluse che possono essere in corso insieme.",
|
|
1123
|
+
"stalledBuckets": "Intervalli vuoti finali della tendenza che contano come stallo.",
|
|
1124
|
+
"minStalledPriorRuns": "Esecuzioni che la prima parte della finestra deve aver avuto. Zero avvisa a ogni silenzio.",
|
|
1125
|
+
"maxFailureKindShare": "Quota degli errori che una sola causa può rappresentare, sopra 0 e fino a 1.",
|
|
1126
|
+
"maxSweepFailures": "Passaggi falliti consecutivi di una scansione in background."
|
|
1127
|
+
},
|
|
1128
|
+
"notLoaded": "Non è stato possibile caricare le impostazioni correnti di questo account, quindi il salvataggio sovrascriverebbe le altre. Ricarica prima di modificare.",
|
|
1129
|
+
"invalidNumbers": "Questi limiti non sono numeri"
|
|
1088
1130
|
}
|
|
1089
1131
|
},
|
|
1090
1132
|
"inspector": {
|
|
@@ -2073,7 +2115,10 @@
|
|
|
2073
2115
|
"budget_paused": "Segna come letto",
|
|
2074
2116
|
"key_drift": "Elimina credenziali obsolete",
|
|
2075
2117
|
"merge_tag_request": "Registra l’impegno"
|
|
2076
|
-
}
|
|
2118
|
+
},
|
|
2119
|
+
"failingRun": "{kind} · {at}",
|
|
2120
|
+
"failingRunsMore": "altre {count} non mostrate",
|
|
2121
|
+
"failingRunGone": "Questa esecuzione non è più caricata e non ha alcuna attività da aprire."
|
|
2077
2122
|
},
|
|
2078
2123
|
"aiProvidersBanner": {
|
|
2079
2124
|
"setup": {
|
|
@@ -3253,7 +3298,9 @@
|
|
|
3253
3298
|
"window": {
|
|
3254
3299
|
"oneHour": "Ultima ora",
|
|
3255
3300
|
"oneDay": "Ultime 24 ore",
|
|
3256
|
-
"sevenDays": "Ultimi 7 giorni"
|
|
3301
|
+
"sevenDays": "Ultimi 7 giorni",
|
|
3302
|
+
"thirtyDays": "Ultimi 30 giorni",
|
|
3303
|
+
"ninetyDays": "Ultimi 90 giorni"
|
|
3257
3304
|
},
|
|
3258
3305
|
"outcomes": {
|
|
3259
3306
|
"title": "Esiti delle esecuzioni",
|
|
@@ -3303,6 +3350,22 @@
|
|
|
3303
3350
|
},
|
|
3304
3351
|
"live": {
|
|
3305
3352
|
"title": "Attive ora"
|
|
3353
|
+
},
|
|
3354
|
+
"rollup": {
|
|
3355
|
+
"none": "L'aggregazione giornaliera non ha ancora prodotto nulla: questa finestra è vuota per mancanza di dati, non di esecuzioni.",
|
|
3356
|
+
"stale": "L'aggregazione giornaliera arriva solo al {date}. Quello che viene dopo sono dati mancanti, non tempo inattivo.",
|
|
3357
|
+
"current": "Dall'aggregazione giornaliera, completa fino al {date}."
|
|
3358
|
+
},
|
|
3359
|
+
"gates": {
|
|
3360
|
+
"title": "Tentativi dei gate",
|
|
3361
|
+
"empty": "Nessun gate si è concluso in questa finestra.",
|
|
3362
|
+
"gate": "Gate",
|
|
3363
|
+
"settled": "Conclusi",
|
|
3364
|
+
"cleanPasses": "Superati senza riparatore",
|
|
3365
|
+
"attempts": "Tentativi del riparatore",
|
|
3366
|
+
"helperFailures": "Fallimenti del riparatore",
|
|
3367
|
+
"exhausted": "Passati a una persona",
|
|
3368
|
+
"hint": "Superato senza riparatore significa che il controllo preliminare è bastato e non è stato avviato alcun riparatore. I fallimenti del riparatore sono tentativi il cui lavoro è andato in crash, a differenza di quelli che sono stati eseguiti lasciando il controllo rosso."
|
|
3306
3369
|
}
|
|
3307
3370
|
},
|
|
3308
3371
|
"reports": {
|