@cat-factory/app 0.252.0 → 0.253.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app/components/board/nodes/TaskCard.vue +1 -0
- package/app/components/layout/AccountDeploymentSettings.vue +85 -14
- package/app/components/layout/CommandBar.vue +8 -0
- package/app/components/layout/IntegrationsHub.vue +10 -0
- package/app/components/notifications/NotificationSettingsPanel.vue +252 -0
- package/app/composables/api/notifications.ts +13 -1
- package/app/composables/usePipelineErrorToast.ts +1 -0
- package/app/pages/index.vue +4 -0
- package/app/stores/notifications.settings.spec.ts +80 -0
- package/app/stores/notifications.ts +80 -2
- package/app/stores/ui/modals.ts +14 -0
- package/app/types/notifications.ts +18 -0
- package/i18n/locales/de.json +66 -4
- package/i18n/locales/en.json +66 -4
- package/i18n/locales/es.json +66 -4
- package/i18n/locales/fr.json +66 -4
- package/i18n/locales/he.json +66 -4
- package/i18n/locales/it.json +66 -4
- package/i18n/locales/ja.json +66 -4
- package/i18n/locales/pl.json +66 -4
- package/i18n/locales/tr.json +66 -4
- package/i18n/locales/uk.json +66 -4
- package/package.json +2 -2
package/app/stores/ui/modals.ts
CHANGED
|
@@ -472,6 +472,10 @@ function createIntegrationPanelModals(resetHubReturn: ResetHubReturn) {
|
|
|
472
472
|
const githubOpen = ref(false)
|
|
473
473
|
// Slack integration panel (connect the account's Slack + per-workspace routing).
|
|
474
474
|
const slackOpen = ref(false)
|
|
475
|
+
// The notification manager: which notification types this board delivers on which channel
|
|
476
|
+
// (the in-app push and email). Distinct from `slackOpen`, which configures Slack's
|
|
477
|
+
// DESTINATION per type — this one decides the channels whose delivery is a plain yes/no.
|
|
478
|
+
const notificationSettingsOpen = ref(false)
|
|
475
479
|
// Observability integration: the post-release-health connection panel (Datadog
|
|
476
480
|
// today, pluggable). NB: distinct from `observabilityInstanceId`, which is the
|
|
477
481
|
// LLM per-call observability panel (see the result-views slice).
|
|
@@ -516,6 +520,13 @@ function createIntegrationPanelModals(resetHubReturn: ResetHubReturn) {
|
|
|
516
520
|
function closeSlack() {
|
|
517
521
|
slackOpen.value = false
|
|
518
522
|
}
|
|
523
|
+
function openNotificationSettings() {
|
|
524
|
+
resetHubReturn()
|
|
525
|
+
notificationSettingsOpen.value = true
|
|
526
|
+
}
|
|
527
|
+
function closeNotificationSettings() {
|
|
528
|
+
notificationSettingsOpen.value = false
|
|
529
|
+
}
|
|
519
530
|
function openObservabilityConnection() {
|
|
520
531
|
resetHubReturn()
|
|
521
532
|
observabilityConnectionOpen.value = true
|
|
@@ -586,6 +597,7 @@ function createIntegrationPanelModals(resetHubReturn: ResetHubReturn) {
|
|
|
586
597
|
return {
|
|
587
598
|
githubOpen,
|
|
588
599
|
slackOpen,
|
|
600
|
+
notificationSettingsOpen,
|
|
589
601
|
observabilityConnectionOpen,
|
|
590
602
|
operatorDashboardOpen,
|
|
591
603
|
reportsOpen,
|
|
@@ -600,6 +612,8 @@ function createIntegrationPanelModals(resetHubReturn: ResetHubReturn) {
|
|
|
600
612
|
closeGitHub,
|
|
601
613
|
openSlack,
|
|
602
614
|
closeSlack,
|
|
615
|
+
openNotificationSettings,
|
|
616
|
+
closeNotificationSettings,
|
|
603
617
|
openObservabilityConnection,
|
|
604
618
|
closeObservabilityConnection,
|
|
605
619
|
openOperatorDashboard,
|
|
@@ -8,6 +8,10 @@
|
|
|
8
8
|
|
|
9
9
|
export type {
|
|
10
10
|
NotificationType,
|
|
11
|
+
NotificationDeliveryChannel,
|
|
12
|
+
NotificationChannelOverrides,
|
|
13
|
+
NotificationRoutingMatrix,
|
|
14
|
+
NotificationSettings,
|
|
11
15
|
NotificationStatus,
|
|
12
16
|
OnCallRecommendation,
|
|
13
17
|
OnCallAssessment,
|
|
@@ -16,3 +20,17 @@ export type {
|
|
|
16
20
|
Notification,
|
|
17
21
|
ReleaseSignalWire as ReleaseSignal,
|
|
18
22
|
} from '@cat-factory/contracts'
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* How the notification-manager settings load ENDED. Client-only (it describes the fetch, not a
|
|
26
|
+
* wire shape), and deliberately four states rather than a nullable boolean:
|
|
27
|
+
*
|
|
28
|
+
* - `unloaded` / `loading`: nothing to render a grid from yet.
|
|
29
|
+
* - `ready`: `settings` holds the board's own matrix.
|
|
30
|
+
* - `unavailable`: SETTLED. This deployment wired no routing store, so the shipped defaults are
|
|
31
|
+
* the whole truth and there is nothing to edit.
|
|
32
|
+
* - `failed`: the read broke, so the board's configuration is UNKNOWN. Distinct from
|
|
33
|
+
* `unavailable` because the panel must not offer a save: the write is a full replace, and
|
|
34
|
+
* saving a grid built from defaults would overwrite overrides nobody looked at.
|
|
35
|
+
*/
|
|
36
|
+
export type NotificationSettingsStatus = 'unloaded' | 'loading' | 'ready' | 'unavailable' | 'failed'
|
package/i18n/locales/de.json
CHANGED
|
@@ -2181,8 +2181,11 @@
|
|
|
2181
2181
|
"fs": "Lokales Dateisystem",
|
|
2182
2182
|
"s3": "Amazon S3 / S3-kompatibel",
|
|
2183
2183
|
"r2": "Cloudflare R2",
|
|
2184
|
-
"db": "Postgres-Datenbank"
|
|
2184
|
+
"db": "Postgres-Datenbank",
|
|
2185
|
+
"custom": "Eigener Speicher (dieses Deployment)"
|
|
2185
2186
|
},
|
|
2187
|
+
"unregisteredStore": "{store} (in diesem Deployment nicht registriert)",
|
|
2188
|
+
"unregisteredStoreWarning": "Dieses Konto speichert Artefakte in „{store}“, was dieses Deployment nicht registriert. Es wird nichts gespeichert, bis Sie einen registrierten Speicher wählen oder der Speicher wieder im Code registriert wird.",
|
|
2186
2189
|
"basePath": "Basispfad (Standard: .file-storage)",
|
|
2187
2190
|
"region": "Region (z. B. us-east-1)",
|
|
2188
2191
|
"bucket": "Bucket",
|
|
@@ -2495,7 +2498,8 @@
|
|
|
2495
2498
|
"shortcuts": "Tastenkürzel",
|
|
2496
2499
|
"bugHunt": "Fehlerjagd",
|
|
2497
2500
|
"toggleUiMode": "Oberflächenmodus wechseln",
|
|
2498
|
-
"foundationalServices": "Basisdienste"
|
|
2501
|
+
"foundationalServices": "Basisdienste",
|
|
2502
|
+
"notificationSettings": "Benachrichtigungs-Routing verwalten"
|
|
2499
2503
|
},
|
|
2500
2504
|
"keywords": {
|
|
2501
2505
|
"newPipeline": "pipeline agents chain",
|
|
@@ -2519,7 +2523,8 @@
|
|
|
2519
2523
|
"bugHunt": "fehler bug jagd triage backlog tracker nicht zugewiesen",
|
|
2520
2524
|
"toggleUiMode": "oberfläche modus einfach erweitert anzeigen ausblenden",
|
|
2521
2525
|
"tutorial": "tutorial tour einführung hilfe onboarding lernen grundlagen",
|
|
2522
|
-
"foundationalServices": "gemeinsame Fähigkeit Plattform Dienst API Vertrag OpenAPI Katalog"
|
|
2526
|
+
"foundationalServices": "gemeinsame Fähigkeit Plattform Dienst API Vertrag OpenAPI Katalog",
|
|
2527
|
+
"notificationSettings": "benachrichtigungen e-mail routing kanäle posteingang"
|
|
2523
2528
|
}
|
|
2524
2529
|
},
|
|
2525
2530
|
"shortcuts": {
|
|
@@ -2596,6 +2601,10 @@
|
|
|
2596
2601
|
"bugHunt": {
|
|
2597
2602
|
"label": "Fehlerjagd",
|
|
2598
2603
|
"description": "Offene, nicht zugewiesene Fehler eines Boards bewerten und einen zum Beheben auswählen"
|
|
2604
|
+
},
|
|
2605
|
+
"notificationSettings": {
|
|
2606
|
+
"label": "Benachrichtigungen",
|
|
2607
|
+
"description": "Wählen Sie, welche Ereignisse den Posteingang und E-Mails erreichen."
|
|
2599
2608
|
}
|
|
2600
2609
|
}
|
|
2601
2610
|
},
|
|
@@ -5470,7 +5479,8 @@
|
|
|
5470
5479
|
"description": {
|
|
5471
5480
|
"binary_generators_unreachable": "Die generativen Integrationen dieser Installation konnten gerade nicht gelesen werden, deshalb wurde der Lauf nicht gestartet. Es ist nichts falsch konfiguriert und keine Änderung nötig: versuchen Sie es erneut, sobald die Verbindung wieder steht.",
|
|
5472
5481
|
"foundational_builtins_unreachable": "Die integrierten Basisdienste dieser Installation konnten gerade nicht gelesen werden. Es ist nichts falsch konfiguriert und keine Änderung nötig: versuchen Sie es erneut, sobald die Verbindung wieder steht.",
|
|
5473
|
-
"connection_credentials_unreadable": "Die gespeicherten Zugangsdaten dieser Verbindung konnten nicht gelesen werden. Wenn diese Installation den Dienst mit dem zugehörigen Schlüssel erreicht, verbinden Sie die Quelle neu, um sie zu ersetzen; andernfalls versuchen Sie es erneut, sobald diese Verbindung wiederhergestellt ist."
|
|
5482
|
+
"connection_credentials_unreadable": "Die gespeicherten Zugangsdaten dieser Verbindung konnten nicht gelesen werden. Wenn diese Installation den Dienst mit dem zugehörigen Schlüssel erreicht, verbinden Sie die Quelle neu, um sie zu ersetzen; andernfalls versuchen Sie es erneut, sobald diese Verbindung wiederhergestellt ist.",
|
|
5483
|
+
"vcs_capability_unsupported": "Der mit diesem Workspace verbundene Quellcode-Anbieter bietet diesen Vorgang nicht an. Es ist nichts falsch konfiguriert und eine Einrichtung hilft hier nicht: Für diesen Anbieter ist der Vorgang nicht verfügbar."
|
|
5474
5484
|
}
|
|
5475
5485
|
},
|
|
5476
5486
|
"action": {
|
|
@@ -5677,6 +5687,58 @@
|
|
|
5677
5687
|
"body": "Slack-Benachrichtigungen werden gestoppt, bis du die Verbindung wiederherstellst."
|
|
5678
5688
|
}
|
|
5679
5689
|
},
|
|
5690
|
+
"notificationSettings": {
|
|
5691
|
+
"panel": {
|
|
5692
|
+
"title": "Benachrichtigungen",
|
|
5693
|
+
"intro": "Wählen Sie, welche Ereignisse dieses Board zustellt und über welchen Kanal. Nicht geänderte Einträge verwenden die Voreinstellung.",
|
|
5694
|
+
"inAppNote": "„In der App“ steuert nur die Live-Benachrichtigung. Die Karte wird ohnehin gespeichert und bleibt nach dem Neuladen im Posteingang.",
|
|
5695
|
+
"emailNote": "E-Mail erfordert einen für das Konto verbundenen Versanddienst (Kontoeinstellungen). Standardmäßig werden nur besonders wichtige Ereignisse verschickt.",
|
|
5696
|
+
"otherChannelsNote": "Slack und ausgehende Webhooks wählen ihre Ereignisliste dort, wo ihr Ziel konfiguriert wird.",
|
|
5697
|
+
"openSlack": "Slack-Routing"
|
|
5698
|
+
},
|
|
5699
|
+
"column": {
|
|
5700
|
+
"event": "Ereignis",
|
|
5701
|
+
"inApp": "In der App",
|
|
5702
|
+
"email": "E-Mail"
|
|
5703
|
+
},
|
|
5704
|
+
"action": {
|
|
5705
|
+
"save": "Speichern",
|
|
5706
|
+
"reset": "Standard wiederherstellen"
|
|
5707
|
+
},
|
|
5708
|
+
"toast": {
|
|
5709
|
+
"saved": "Benachrichtigungs-Routing gespeichert"
|
|
5710
|
+
},
|
|
5711
|
+
"error": {
|
|
5712
|
+
"load": "Benachrichtigungseinstellungen konnten nicht geladen werden",
|
|
5713
|
+
"save": "Benachrichtigungseinstellungen konnten nicht gespeichert werden"
|
|
5714
|
+
},
|
|
5715
|
+
"unavailable": "Diese Installation speichert kein Benachrichtigungs-Routing; alle Ereignisse verwenden die Voreinstellung.",
|
|
5716
|
+
"loadFailed": "Das Benachrichtigungs-Routing dieses Boards konnte nicht gelesen werden. Die Schalter unten zeigen daher nicht die aktuellen Einstellungen. Bitte erneut versuchen, bevor Sie etwas ändern.",
|
|
5717
|
+
"type": {
|
|
5718
|
+
"merge_review": "Merge-Review",
|
|
5719
|
+
"pipeline_complete": "Pipeline abgeschlossen",
|
|
5720
|
+
"ci_failed": "CI fehlgeschlagen",
|
|
5721
|
+
"test_failed": "Tests fehlgeschlagen",
|
|
5722
|
+
"requirement_review": "Anforderungs-Review",
|
|
5723
|
+
"clarity_review": "Klarheits-Review",
|
|
5724
|
+
"release_regression": "Release-Regression",
|
|
5725
|
+
"decision_required": "Entscheidung erforderlich",
|
|
5726
|
+
"human_test_ready": "Bereit für manuelle Tests",
|
|
5727
|
+
"visual_confirmation_ready": "Bereit für visuelle Bestätigung",
|
|
5728
|
+
"human_review": "Wartet auf Code-Review",
|
|
5729
|
+
"followup_pending": "Offene Folgepunkte",
|
|
5730
|
+
"fork_decision_pending": "Umsetzungsansatz",
|
|
5731
|
+
"judge_review": "Prüfurteil",
|
|
5732
|
+
"pr_review_ready": "PR-Review-Befunde",
|
|
5733
|
+
"initiative": "Initiativen-Updates",
|
|
5734
|
+
"platform_health": "Plattformzustand",
|
|
5735
|
+
"infra_unreachable": "Infrastrukturausfälle",
|
|
5736
|
+
"budget_paused": "Läufe pausiert (Budget)",
|
|
5737
|
+
"budget_threshold": "Budgetwarnung",
|
|
5738
|
+
"key_drift": "Abweichung des Verschlüsselungsschlüssels",
|
|
5739
|
+
"merge_tag_request": "Review-Aufwand angefragt"
|
|
5740
|
+
}
|
|
5741
|
+
},
|
|
5680
5742
|
"docInterview": {
|
|
5681
5743
|
"title": "Das Dokument verfeinern",
|
|
5682
5744
|
"subtitle": "Beantworte die Fragen des Interviewers, damit er das Dokument formen kann",
|
package/i18n/locales/en.json
CHANGED
|
@@ -593,7 +593,8 @@
|
|
|
593
593
|
"description": {
|
|
594
594
|
"binary_generators_unreachable": "This deployment's generative integrations could not be read just now, so the run was not started. Nothing is misconfigured and no change is needed: try again once the connection recovers.",
|
|
595
595
|
"foundational_builtins_unreachable": "This deployment's built-in foundational services could not be read just now. Nothing is misconfigured and no change is needed: try again once the connection recovers.",
|
|
596
|
-
"connection_credentials_unreadable": "The stored credentials for this connection could not be read. If this deployment can reach the service holding its key, re-connect the source to replace them; otherwise try again once that connection recovers."
|
|
596
|
+
"connection_credentials_unreadable": "The stored credentials for this connection could not be read. If this deployment can reach the service holding its key, re-connect the source to replace them; otherwise try again once that connection recovers.",
|
|
597
|
+
"vcs_capability_unsupported": "The source-control provider connected to this workspace does not offer this operation. Nothing is misconfigured and setting something up will not help: it is unavailable for this provider."
|
|
597
598
|
}
|
|
598
599
|
},
|
|
599
600
|
"action": {
|
|
@@ -2127,8 +2128,11 @@
|
|
|
2127
2128
|
"fs": "Local filesystem",
|
|
2128
2129
|
"s3": "Amazon S3 / S3-compatible",
|
|
2129
2130
|
"r2": "Cloudflare R2",
|
|
2130
|
-
"db": "Postgres database"
|
|
2131
|
+
"db": "Postgres database",
|
|
2132
|
+
"custom": "Custom store (this deployment)"
|
|
2131
2133
|
},
|
|
2134
|
+
"unregisteredStore": "{store} (not registered on this deployment)",
|
|
2135
|
+
"unregisteredStoreWarning": "This account stores artifacts in “{store}”, which this deployment does not register. Nothing is being stored until you pick a registered store or the store is registered again in code.",
|
|
2132
2136
|
"basePath": "Base path (default: .file-storage)",
|
|
2133
2137
|
"region": "Region (e.g. us-east-1)",
|
|
2134
2138
|
"bucket": "Bucket",
|
|
@@ -2441,7 +2445,8 @@
|
|
|
2441
2445
|
"shortcuts": "Keyboard shortcuts",
|
|
2442
2446
|
"bugHunt": "Bug hunt",
|
|
2443
2447
|
"toggleUiMode": "Switch interface mode",
|
|
2444
|
-
"foundationalServices": "Foundational services"
|
|
2448
|
+
"foundationalServices": "Foundational services",
|
|
2449
|
+
"notificationSettings": "Manage notification routing"
|
|
2445
2450
|
},
|
|
2446
2451
|
"keywords": {
|
|
2447
2452
|
"newPipeline": "pipeline agents chain",
|
|
@@ -2465,7 +2470,8 @@
|
|
|
2465
2470
|
"bugHunt": "bug hunt triage backlog issue tracker unassigned",
|
|
2466
2471
|
"toggleUiMode": "interface mode basic advanced simple expert show hide",
|
|
2467
2472
|
"tutorial": "tutorial onboarding tour guide help learn basics",
|
|
2468
|
-
"foundationalServices": "shared capability platform service api contract openapi catalog"
|
|
2473
|
+
"foundationalServices": "shared capability platform service api contract openapi catalog",
|
|
2474
|
+
"notificationSettings": "notifications email routing channels inbox"
|
|
2469
2475
|
}
|
|
2470
2476
|
},
|
|
2471
2477
|
"shortcuts": {
|
|
@@ -2542,6 +2548,10 @@
|
|
|
2542
2548
|
"bugHunt": {
|
|
2543
2549
|
"label": "Bug hunt",
|
|
2544
2550
|
"description": "Rate a board's open, unassigned bugs and pick one to fix"
|
|
2551
|
+
},
|
|
2552
|
+
"notificationSettings": {
|
|
2553
|
+
"label": "Notifications",
|
|
2554
|
+
"description": "Choose which events reach the inbox and email."
|
|
2545
2555
|
}
|
|
2546
2556
|
}
|
|
2547
2557
|
},
|
|
@@ -4356,6 +4366,58 @@
|
|
|
4356
4366
|
"body": "Slack notifications will stop until you reconnect."
|
|
4357
4367
|
}
|
|
4358
4368
|
},
|
|
4369
|
+
"notificationSettings": {
|
|
4370
|
+
"panel": {
|
|
4371
|
+
"title": "Notifications",
|
|
4372
|
+
"intro": "Choose which events this board delivers, and on which channel. Anything left untouched uses the shipped default.",
|
|
4373
|
+
"inAppNote": "In-app controls the live push. The card is saved either way, so it is still in your inbox after a reload.",
|
|
4374
|
+
"emailNote": "Email needs a sender connected for the account (Account settings). By default only high-impact events are mailed.",
|
|
4375
|
+
"otherChannelsNote": "Slack and outbound webhooks pick their own event list where their destination is configured.",
|
|
4376
|
+
"openSlack": "Slack routing"
|
|
4377
|
+
},
|
|
4378
|
+
"column": {
|
|
4379
|
+
"event": "Event",
|
|
4380
|
+
"inApp": "In-app",
|
|
4381
|
+
"email": "Email"
|
|
4382
|
+
},
|
|
4383
|
+
"action": {
|
|
4384
|
+
"save": "Save",
|
|
4385
|
+
"reset": "Restore defaults"
|
|
4386
|
+
},
|
|
4387
|
+
"toast": {
|
|
4388
|
+
"saved": "Notification routing saved"
|
|
4389
|
+
},
|
|
4390
|
+
"error": {
|
|
4391
|
+
"load": "Could not load notification settings",
|
|
4392
|
+
"save": "Could not save notification settings"
|
|
4393
|
+
},
|
|
4394
|
+
"unavailable": "This deployment stores no notification routing, so every event uses the shipped default.",
|
|
4395
|
+
"loadFailed": "Could not read this board's notification routing, so the switches below are not its current settings. Retry before changing anything.",
|
|
4396
|
+
"type": {
|
|
4397
|
+
"merge_review": "Merge review",
|
|
4398
|
+
"pipeline_complete": "Pipeline complete",
|
|
4399
|
+
"ci_failed": "CI failed",
|
|
4400
|
+
"test_failed": "Tests failed",
|
|
4401
|
+
"requirement_review": "Requirement review",
|
|
4402
|
+
"clarity_review": "Clarity review",
|
|
4403
|
+
"release_regression": "Release regression",
|
|
4404
|
+
"decision_required": "Decision needed",
|
|
4405
|
+
"human_test_ready": "Ready for human testing",
|
|
4406
|
+
"visual_confirmation_ready": "Ready for visual confirmation",
|
|
4407
|
+
"human_review": "Awaiting code review",
|
|
4408
|
+
"followup_pending": "Follow-ups to decide",
|
|
4409
|
+
"fork_decision_pending": "Implementation approach",
|
|
4410
|
+
"judge_review": "Review verdict",
|
|
4411
|
+
"pr_review_ready": "PR review findings",
|
|
4412
|
+
"initiative": "Initiative updates",
|
|
4413
|
+
"platform_health": "Platform health",
|
|
4414
|
+
"infra_unreachable": "Infrastructure outages",
|
|
4415
|
+
"budget_paused": "Runs paused (budget)",
|
|
4416
|
+
"budget_threshold": "Budget warning",
|
|
4417
|
+
"key_drift": "Encryption-key drift",
|
|
4418
|
+
"merge_tag_request": "Review-effort tag requested"
|
|
4419
|
+
}
|
|
4420
|
+
},
|
|
4359
4421
|
"docInterview": {
|
|
4360
4422
|
"title": "Refine the document",
|
|
4361
4423
|
"subtitle": "Answer the interviewer's questions so it can shape the document",
|
package/i18n/locales/es.json
CHANGED
|
@@ -530,7 +530,8 @@
|
|
|
530
530
|
"description": {
|
|
531
531
|
"binary_generators_unreachable": "No se han podido leer las integraciones generativas de esta instalación en este momento, así que no se ha iniciado la ejecución. No hay nada mal configurado ni hace falta ningún cambio: inténtalo de nuevo cuando se restablezca la conexión.",
|
|
532
532
|
"foundational_builtins_unreachable": "No se han podido leer los servicios fundamentales integrados de esta instalación en este momento. No hay nada mal configurado ni hace falta ningún cambio: inténtalo de nuevo cuando se restablezca la conexión.",
|
|
533
|
-
"connection_credentials_unreadable": "No se han podido leer las credenciales guardadas de esta conexión. Si esta instalación puede acceder al servicio que custodia su clave, vuelve a conectar la fuente para reemplazarlas; si no, inténtalo de nuevo cuando se restablezca esa conexión."
|
|
533
|
+
"connection_credentials_unreadable": "No se han podido leer las credenciales guardadas de esta conexión. Si esta instalación puede acceder al servicio que custodia su clave, vuelve a conectar la fuente para reemplazarlas; si no, inténtalo de nuevo cuando se restablezca esa conexión.",
|
|
534
|
+
"vcs_capability_unsupported": "El proveedor de control de código conectado a este espacio de trabajo no ofrece esta operación. No hay nada mal configurado y configurar algo no servirá de nada: no está disponible para este proveedor."
|
|
534
535
|
}
|
|
535
536
|
},
|
|
536
537
|
"action": {
|
|
@@ -2020,8 +2021,11 @@
|
|
|
2020
2021
|
"fs": "Sistema de archivos local",
|
|
2021
2022
|
"s3": "Amazon S3 / compatible con S3",
|
|
2022
2023
|
"r2": "Cloudflare R2",
|
|
2023
|
-
"db": "Base de datos Postgres"
|
|
2024
|
+
"db": "Base de datos Postgres",
|
|
2025
|
+
"custom": "Almacén propio (este despliegue)"
|
|
2024
2026
|
},
|
|
2027
|
+
"unregisteredStore": "{store} (no registrado en este despliegue)",
|
|
2028
|
+
"unregisteredStoreWarning": "Esta cuenta guarda los artefactos en «{store}», que este despliegue no registra. No se guarda nada hasta que elijas un almacén registrado o vuelvas a registrarlo en el código.",
|
|
2025
2029
|
"basePath": "Ruta base (predeterminada: .file-storage)",
|
|
2026
2030
|
"region": "Región (p. ej. us-east-1)",
|
|
2027
2031
|
"bucket": "Bucket",
|
|
@@ -2334,7 +2338,8 @@
|
|
|
2334
2338
|
"shortcuts": "Atajos de teclado",
|
|
2335
2339
|
"bugHunt": "Caza de errores",
|
|
2336
2340
|
"toggleUiMode": "Cambiar el modo de interfaz",
|
|
2337
|
-
"foundationalServices": "Servicios fundamentales"
|
|
2341
|
+
"foundationalServices": "Servicios fundamentales",
|
|
2342
|
+
"notificationSettings": "Gestionar el enrutamiento de notificaciones"
|
|
2338
2343
|
},
|
|
2339
2344
|
"keywords": {
|
|
2340
2345
|
"newPipeline": "canalización agentes cadena pipeline",
|
|
@@ -2358,7 +2363,8 @@
|
|
|
2358
2363
|
"bugHunt": "error bug caza triaje backlog incidencias sin asignar",
|
|
2359
2364
|
"toggleUiMode": "interfaz modo básico avanzado mostrar ocultar",
|
|
2360
2365
|
"tutorial": "tutorial recorrido guía ayuda aprender introducción",
|
|
2361
|
-
"foundationalServices": "capacidad compartida plataforma servicio api contrato openapi catálogo"
|
|
2366
|
+
"foundationalServices": "capacidad compartida plataforma servicio api contrato openapi catálogo",
|
|
2367
|
+
"notificationSettings": "notificaciones correo enrutamiento canales bandeja"
|
|
2362
2368
|
}
|
|
2363
2369
|
},
|
|
2364
2370
|
"integrationsHub": {
|
|
@@ -2428,6 +2434,10 @@
|
|
|
2428
2434
|
"bugHunt": {
|
|
2429
2435
|
"label": "Caza de errores",
|
|
2430
2436
|
"description": "Valora los errores abiertos y sin asignar de un tablero y elige uno para arreglar"
|
|
2437
|
+
},
|
|
2438
|
+
"notificationSettings": {
|
|
2439
|
+
"label": "Notificaciones",
|
|
2440
|
+
"description": "Elige qué eventos llegan a la bandeja y al correo."
|
|
2431
2441
|
}
|
|
2432
2442
|
}
|
|
2433
2443
|
},
|
|
@@ -4219,6 +4229,58 @@
|
|
|
4219
4229
|
"body": "Las notificaciones de Slack se detendrán hasta que vuelvas a conectar."
|
|
4220
4230
|
}
|
|
4221
4231
|
},
|
|
4232
|
+
"notificationSettings": {
|
|
4233
|
+
"panel": {
|
|
4234
|
+
"title": "Notificaciones",
|
|
4235
|
+
"intro": "Elige qué eventos entrega este tablero y por qué canal. Lo que no cambies usa el valor predeterminado.",
|
|
4236
|
+
"inAppNote": "«En la app» controla solo el aviso en vivo. La tarjeta se guarda igualmente y sigue en tu bandeja tras recargar.",
|
|
4237
|
+
"emailNote": "El correo requiere un remitente conectado en la cuenta (Ajustes de cuenta). De forma predeterminada solo se envían los eventos de alto impacto.",
|
|
4238
|
+
"otherChannelsNote": "Slack y los webhooks salientes eligen su propia lista de eventos donde se configura su destino.",
|
|
4239
|
+
"openSlack": "Enrutamiento de Slack"
|
|
4240
|
+
},
|
|
4241
|
+
"column": {
|
|
4242
|
+
"event": "Evento",
|
|
4243
|
+
"inApp": "En la app",
|
|
4244
|
+
"email": "Correo"
|
|
4245
|
+
},
|
|
4246
|
+
"action": {
|
|
4247
|
+
"save": "Guardar",
|
|
4248
|
+
"reset": "Restaurar valores predeterminados"
|
|
4249
|
+
},
|
|
4250
|
+
"toast": {
|
|
4251
|
+
"saved": "Enrutamiento de notificaciones guardado"
|
|
4252
|
+
},
|
|
4253
|
+
"error": {
|
|
4254
|
+
"load": "No se pudieron cargar los ajustes de notificaciones",
|
|
4255
|
+
"save": "No se pudieron guardar los ajustes de notificaciones"
|
|
4256
|
+
},
|
|
4257
|
+
"unavailable": "Esta instalación no almacena enrutamiento de notificaciones, así que todos los eventos usan el valor predeterminado.",
|
|
4258
|
+
"loadFailed": "No se pudo leer el enrutamiento de notificaciones de este tablero, así que los interruptores de abajo no son su configuración actual. Vuelve a intentarlo antes de cambiar nada.",
|
|
4259
|
+
"type": {
|
|
4260
|
+
"merge_review": "Revision de fusion",
|
|
4261
|
+
"pipeline_complete": "Pipeline completado",
|
|
4262
|
+
"ci_failed": "CI fallido",
|
|
4263
|
+
"test_failed": "Pruebas fallidas",
|
|
4264
|
+
"requirement_review": "Revision de requisitos",
|
|
4265
|
+
"clarity_review": "Revision de claridad",
|
|
4266
|
+
"release_regression": "Regresion de version",
|
|
4267
|
+
"decision_required": "Decisión necesaria",
|
|
4268
|
+
"human_test_ready": "Listo para pruebas humanas",
|
|
4269
|
+
"visual_confirmation_ready": "Listo para confirmacion visual",
|
|
4270
|
+
"human_review": "Esperando revisión de código",
|
|
4271
|
+
"followup_pending": "Seguimientos por decidir",
|
|
4272
|
+
"fork_decision_pending": "Enfoque de implementación",
|
|
4273
|
+
"judge_review": "Veredicto de revisión",
|
|
4274
|
+
"pr_review_ready": "Hallazgos de revisión de PR",
|
|
4275
|
+
"initiative": "Actualizaciones de la iniciativa",
|
|
4276
|
+
"platform_health": "Estado de la plataforma",
|
|
4277
|
+
"infra_unreachable": "Interrupciones de infraestructura",
|
|
4278
|
+
"budget_paused": "Ejecuciones en pausa (presupuesto)",
|
|
4279
|
+
"budget_threshold": "Aviso de presupuesto",
|
|
4280
|
+
"key_drift": "Desfase de la clave de cifrado",
|
|
4281
|
+
"merge_tag_request": "Solicitud de esfuerzo de revisión"
|
|
4282
|
+
}
|
|
4283
|
+
},
|
|
4222
4284
|
"docInterview": {
|
|
4223
4285
|
"title": "Refinar el documento",
|
|
4224
4286
|
"subtitle": "Responde a las preguntas del entrevistador para dar forma al documento",
|
package/i18n/locales/fr.json
CHANGED
|
@@ -530,7 +530,8 @@
|
|
|
530
530
|
"description": {
|
|
531
531
|
"binary_generators_unreachable": "Les intégrations génératives de ce déploiement n'ont pas pu être lues pour l'instant, l'exécution n'a donc pas démarré. Rien n'est mal configuré et aucune modification n'est nécessaire : réessayez une fois la connexion rétablie.",
|
|
532
532
|
"foundational_builtins_unreachable": "Les services fondamentaux intégrés de ce déploiement n'ont pas pu être lus pour l'instant. Rien n'est mal configuré et aucune modification n'est nécessaire : réessayez une fois la connexion rétablie.",
|
|
533
|
-
"connection_credentials_unreadable": "Les identifiants enregistrés pour cette connexion n'ont pas pu être lus. Si ce déploiement peut joindre le service qui détient sa clé, reconnectez la source pour les remplacer ; sinon, réessayez une fois cette connexion rétablie."
|
|
533
|
+
"connection_credentials_unreadable": "Les identifiants enregistrés pour cette connexion n'ont pas pu être lus. Si ce déploiement peut joindre le service qui détient sa clé, reconnectez la source pour les remplacer ; sinon, réessayez une fois cette connexion rétablie.",
|
|
534
|
+
"vcs_capability_unsupported": "Le fournisseur de gestion de code source connecté à cet espace de travail ne propose pas cette opération. Rien n'est mal configuré et aucun réglage n'y changera quoi que ce soit : elle n'est pas disponible pour ce fournisseur."
|
|
534
535
|
}
|
|
535
536
|
},
|
|
536
537
|
"action": {
|
|
@@ -2020,8 +2021,11 @@
|
|
|
2020
2021
|
"fs": "Système de fichiers local",
|
|
2021
2022
|
"s3": "Amazon S3 / compatible S3",
|
|
2022
2023
|
"r2": "Cloudflare R2",
|
|
2023
|
-
"db": "Base de données Postgres"
|
|
2024
|
+
"db": "Base de données Postgres",
|
|
2025
|
+
"custom": "Stockage personnalisé (ce déploiement)"
|
|
2024
2026
|
},
|
|
2027
|
+
"unregisteredStore": "{store} (non enregistré sur ce déploiement)",
|
|
2028
|
+
"unregisteredStoreWarning": "Ce compte stocke ses artefacts dans « {store} », que ce déploiement n'enregistre pas. Rien n'est stocké tant que vous n'avez pas choisi un stockage enregistré ou réenregistré celui-ci dans le code.",
|
|
2025
2029
|
"basePath": "Chemin de base (par défaut : .file-storage)",
|
|
2026
2030
|
"region": "Région (p. ex. us-east-1)",
|
|
2027
2031
|
"bucket": "Bucket",
|
|
@@ -2334,7 +2338,8 @@
|
|
|
2334
2338
|
"shortcuts": "Raccourcis clavier",
|
|
2335
2339
|
"bugHunt": "Chasse aux bugs",
|
|
2336
2340
|
"toggleUiMode": "Changer le mode d'interface",
|
|
2337
|
-
"foundationalServices": "Services fondamentaux"
|
|
2341
|
+
"foundationalServices": "Services fondamentaux",
|
|
2342
|
+
"notificationSettings": "Gérer le routage des notifications"
|
|
2338
2343
|
},
|
|
2339
2344
|
"keywords": {
|
|
2340
2345
|
"newPipeline": "pipeline agents chaîne",
|
|
@@ -2358,7 +2363,8 @@
|
|
|
2358
2363
|
"bugHunt": "bug chasse tri backlog tickets non assignés",
|
|
2359
2364
|
"toggleUiMode": "interface mode simple avancé afficher masquer",
|
|
2360
2365
|
"tutorial": "tutoriel visite guide aide apprendre découverte",
|
|
2361
|
-
"foundationalServices": "capacité partagée plateforme service api contrat openapi catalogue"
|
|
2366
|
+
"foundationalServices": "capacité partagée plateforme service api contrat openapi catalogue",
|
|
2367
|
+
"notificationSettings": "notifications e-mail routage canaux boîte"
|
|
2362
2368
|
}
|
|
2363
2369
|
},
|
|
2364
2370
|
"integrationsHub": {
|
|
@@ -2428,6 +2434,10 @@
|
|
|
2428
2434
|
"bugHunt": {
|
|
2429
2435
|
"label": "Chasse aux bugs",
|
|
2430
2436
|
"description": "Évaluer les bugs ouverts et non assignés d'un tableau et en choisir un à corriger"
|
|
2437
|
+
},
|
|
2438
|
+
"notificationSettings": {
|
|
2439
|
+
"label": "Notifications",
|
|
2440
|
+
"description": "Choisissez les événements qui arrivent dans la boîte et par e-mail."
|
|
2431
2441
|
}
|
|
2432
2442
|
}
|
|
2433
2443
|
},
|
|
@@ -4219,6 +4229,58 @@
|
|
|
4219
4229
|
"body": "Les notifications Slack seront interrompues jusqu'à la reconnexion."
|
|
4220
4230
|
}
|
|
4221
4231
|
},
|
|
4232
|
+
"notificationSettings": {
|
|
4233
|
+
"panel": {
|
|
4234
|
+
"title": "Notifications",
|
|
4235
|
+
"intro": "Choisissez les événements que ce tableau diffuse, et sur quel canal. Ce que vous ne modifiez pas garde la valeur par défaut.",
|
|
4236
|
+
"inAppNote": "« Dans l'app » ne contrôle que la notification en direct. La carte est enregistrée dans tous les cas et reste dans votre boîte après rechargement.",
|
|
4237
|
+
"emailNote": "L'e-mail nécessite un expéditeur connecté pour le compte (Paramètres du compte). Par défaut, seuls les événements à fort impact sont envoyés.",
|
|
4238
|
+
"otherChannelsNote": "Slack et les webhooks sortants choisissent leur liste d'événements là où leur destination est configurée.",
|
|
4239
|
+
"openSlack": "Routage Slack"
|
|
4240
|
+
},
|
|
4241
|
+
"column": {
|
|
4242
|
+
"event": "Événement",
|
|
4243
|
+
"inApp": "Dans l'app",
|
|
4244
|
+
"email": "E-mail"
|
|
4245
|
+
},
|
|
4246
|
+
"action": {
|
|
4247
|
+
"save": "Enregistrer",
|
|
4248
|
+
"reset": "Rétablir les valeurs par défaut"
|
|
4249
|
+
},
|
|
4250
|
+
"toast": {
|
|
4251
|
+
"saved": "Routage des notifications enregistré"
|
|
4252
|
+
},
|
|
4253
|
+
"error": {
|
|
4254
|
+
"load": "Impossible de charger les paramètres de notification",
|
|
4255
|
+
"save": "Impossible d'enregistrer les paramètres de notification"
|
|
4256
|
+
},
|
|
4257
|
+
"unavailable": "Ce déploiement ne stocke aucun routage de notifications : tous les événements utilisent la valeur par défaut.",
|
|
4258
|
+
"loadFailed": "Impossible de lire le routage des notifications de ce tableau : les interrupteurs ci-dessous ne correspondent donc pas à sa configuration actuelle. Réessayez avant de modifier quoi que ce soit.",
|
|
4259
|
+
"type": {
|
|
4260
|
+
"merge_review": "Revue de fusion",
|
|
4261
|
+
"pipeline_complete": "Pipeline termine",
|
|
4262
|
+
"ci_failed": "Echec de CI",
|
|
4263
|
+
"test_failed": "Echec des tests",
|
|
4264
|
+
"requirement_review": "Revue des exigences",
|
|
4265
|
+
"clarity_review": "Revue de clarte",
|
|
4266
|
+
"release_regression": "Regression de version",
|
|
4267
|
+
"decision_required": "Décision requise",
|
|
4268
|
+
"human_test_ready": "Pret pour les tests humains",
|
|
4269
|
+
"visual_confirmation_ready": "Pret pour la confirmation visuelle",
|
|
4270
|
+
"human_review": "En attente de revue de code",
|
|
4271
|
+
"followup_pending": "Suivis à trancher",
|
|
4272
|
+
"fork_decision_pending": "Approche d'implémentation",
|
|
4273
|
+
"judge_review": "Verdict de revue",
|
|
4274
|
+
"pr_review_ready": "Points de revue de PR",
|
|
4275
|
+
"initiative": "Mises a jour de l'initiative",
|
|
4276
|
+
"platform_health": "Santé de la plateforme",
|
|
4277
|
+
"infra_unreachable": "Pannes d'infrastructure",
|
|
4278
|
+
"budget_paused": "Exécutions en pause (budget)",
|
|
4279
|
+
"budget_threshold": "Alerte de budget",
|
|
4280
|
+
"key_drift": "Dérive de la clé de chiffrement",
|
|
4281
|
+
"merge_tag_request": "Effort de revue demandé"
|
|
4282
|
+
}
|
|
4283
|
+
},
|
|
4222
4284
|
"docInterview": {
|
|
4223
4285
|
"title": "Affiner le document",
|
|
4224
4286
|
"subtitle": "Répondez aux questions de l'intervieweur pour façonner le document",
|
package/i18n/locales/he.json
CHANGED
|
@@ -530,7 +530,8 @@
|
|
|
530
530
|
"description": {
|
|
531
531
|
"binary_generators_unreachable": "לא ניתן היה לקרוא כרגע את האינטגרציות הגנרטיביות של הפריסה הזו, ולכן ההרצה לא התחילה. אין כאן תצורה שגויה ולא נדרש שום שינוי: נסו שוב כשהחיבור יחזור.",
|
|
532
532
|
"foundational_builtins_unreachable": "לא ניתן היה לקרוא כרגע את שירותי הבסיס המובנים של הפריסה הזו. אין כאן תצורה שגויה ולא נדרש שום שינוי: נסו שוב כשהחיבור יחזור.",
|
|
533
|
-
"connection_credentials_unreadable": "לא ניתן היה לקרוא את פרטי הגישה השמורים של החיבור הזה. אם הפריסה הזו מצליחה להגיע לשירות שמחזיק במפתח שלה, חברו מחדש את המקור כדי להחליף אותם; אחרת נסו שוב כשהחיבור הזה יחזור."
|
|
533
|
+
"connection_credentials_unreadable": "לא ניתן היה לקרוא את פרטי הגישה השמורים של החיבור הזה. אם הפריסה הזו מצליחה להגיע לשירות שמחזיק במפתח שלה, חברו מחדש את המקור כדי להחליף אותם; אחרת נסו שוב כשהחיבור הזה יחזור.",
|
|
534
|
+
"vcs_capability_unsupported": "ספק ניהול קוד המקור המחובר למרחב העבודה הזה אינו תומך בפעולה הזו. אין כאן תצורה שגויה ושינוי הגדרות לא יעזור: הפעולה אינה זמינה עבור הספק הזה."
|
|
534
535
|
}
|
|
535
536
|
},
|
|
536
537
|
"action": {
|
|
@@ -2020,8 +2021,11 @@
|
|
|
2020
2021
|
"fs": "מערכת קבצים מקומית",
|
|
2021
2022
|
"s3": "Amazon S3 / תואם S3",
|
|
2022
2023
|
"r2": "Cloudflare R2",
|
|
2023
|
-
"db": "מסד נתונים Postgres"
|
|
2024
|
+
"db": "מסד נתונים Postgres",
|
|
2025
|
+
"custom": "אחסון מותאם (בפריסה זו)"
|
|
2024
2026
|
},
|
|
2027
|
+
"unregisteredStore": "{store} (לא רשום בפריסה זו)",
|
|
2028
|
+
"unregisteredStoreWarning": "חשבון זה שומר פריטים ב־«{store}», שאינו רשום בפריסה זו. דבר אינו נשמר עד שתבחרו אחסון רשום או שהאחסון יירשם מחדש בקוד.",
|
|
2025
2029
|
"basePath": "נתיב בסיס (ברירת מחדל: .file-storage)",
|
|
2026
2030
|
"region": "אזור (לדוגמה us-east-1)",
|
|
2027
2031
|
"bucket": "Bucket",
|
|
@@ -2334,7 +2338,8 @@
|
|
|
2334
2338
|
"shortcuts": "קיצורי מקלדת",
|
|
2335
2339
|
"bugHunt": "ציד באגים",
|
|
2336
2340
|
"toggleUiMode": "החלפת מצב ממשק",
|
|
2337
|
-
"foundationalServices": "שירותי תשתית"
|
|
2341
|
+
"foundationalServices": "שירותי תשתית",
|
|
2342
|
+
"notificationSettings": "ניהול ניתוב התראות"
|
|
2338
2343
|
},
|
|
2339
2344
|
"keywords": {
|
|
2340
2345
|
"newPipeline": "צינור סוכנים שרשרת",
|
|
@@ -2358,7 +2363,8 @@
|
|
|
2358
2363
|
"bugHunt": "באג bug ציד מיון צבר פניות לא משויכות",
|
|
2359
2364
|
"toggleUiMode": "ממשק מצב בסיסי מתקדם הצגה הסתרה",
|
|
2360
2365
|
"tutorial": "מדריך סיור עזרה הדרכה לימוד",
|
|
2361
|
-
"foundationalServices": "יכולת משותפת פלטפורמה שירות api חוזה openapi קטלוג"
|
|
2366
|
+
"foundationalServices": "יכולת משותפת פלטפורמה שירות api חוזה openapi קטלוג",
|
|
2367
|
+
"notificationSettings": "התראות אימייל ניתוב ערוצים תיבה"
|
|
2362
2368
|
}
|
|
2363
2369
|
},
|
|
2364
2370
|
"integrationsHub": {
|
|
@@ -2428,6 +2434,10 @@
|
|
|
2428
2434
|
"bugHunt": {
|
|
2429
2435
|
"label": "ציד באגים",
|
|
2430
2436
|
"description": "הערך את הבאגים הפתוחים והלא משויכים בלוח ובחר אחד לתיקון"
|
|
2437
|
+
},
|
|
2438
|
+
"notificationSettings": {
|
|
2439
|
+
"label": "התראות",
|
|
2440
|
+
"description": "בחרו אילו אירועים מגיעים לתיבה ולאימייל."
|
|
2431
2441
|
}
|
|
2432
2442
|
}
|
|
2433
2443
|
},
|
|
@@ -4219,6 +4229,58 @@
|
|
|
4219
4229
|
"body": "התראות Slack ייפסקו עד לחיבור מחדש."
|
|
4220
4230
|
}
|
|
4221
4231
|
},
|
|
4232
|
+
"notificationSettings": {
|
|
4233
|
+
"panel": {
|
|
4234
|
+
"title": "התראות",
|
|
4235
|
+
"intro": "בחרו אילו אירועים הלוח הזה שולח ובאיזה ערוץ. מה שלא שיניתם משתמש בברירת המחדל.",
|
|
4236
|
+
"inAppNote": "„באפליקציה” שולט רק בהתראה החיה. הכרטיס נשמר בכל מקרה ונשאר בתיבה לאחר רענון.",
|
|
4237
|
+
"emailNote": "אימייל דורש שולח מחובר לחשבון (הגדרות החשבון). כברירת מחדל נשלחים רק אירועים בעלי השפעה גבוהה.",
|
|
4238
|
+
"otherChannelsNote": "Slack ו-webhooks יוצאים בוחרים את רשימת האירועים שלהם במקום שבו מוגדר היעד.",
|
|
4239
|
+
"openSlack": "ניתוב Slack"
|
|
4240
|
+
},
|
|
4241
|
+
"column": {
|
|
4242
|
+
"event": "אירוע",
|
|
4243
|
+
"inApp": "באפליקציה",
|
|
4244
|
+
"email": "אימייל"
|
|
4245
|
+
},
|
|
4246
|
+
"action": {
|
|
4247
|
+
"save": "שמירה",
|
|
4248
|
+
"reset": "שחזור ברירות מחדל"
|
|
4249
|
+
},
|
|
4250
|
+
"toast": {
|
|
4251
|
+
"saved": "ניתוב ההתראות נשמר"
|
|
4252
|
+
},
|
|
4253
|
+
"error": {
|
|
4254
|
+
"load": "לא ניתן לטעון את הגדרות ההתראות",
|
|
4255
|
+
"save": "לא ניתן לשמור את הגדרות ההתראות"
|
|
4256
|
+
},
|
|
4257
|
+
"unavailable": "פריסה זו אינה שומרת ניתוב התראות, ולכן כל האירועים משתמשים בברירת המחדל.",
|
|
4258
|
+
"loadFailed": "לא ניתן היה לקרוא את ניתוב ההתראות של לוח זה, ולכן המתגים שלמטה אינם ההגדרות הנוכחיות שלו. נסו שוב לפני שתשנו משהו.",
|
|
4259
|
+
"type": {
|
|
4260
|
+
"merge_review": "סקירת מיזוג",
|
|
4261
|
+
"pipeline_complete": "הצינור הושלם",
|
|
4262
|
+
"ci_failed": "CI נכשל",
|
|
4263
|
+
"test_failed": "הבדיקות נכשלו",
|
|
4264
|
+
"requirement_review": "סקירת דרישות",
|
|
4265
|
+
"clarity_review": "סקירת בהירות",
|
|
4266
|
+
"release_regression": "רגרסיית שחרור",
|
|
4267
|
+
"decision_required": "נדרשת החלטה",
|
|
4268
|
+
"human_test_ready": "מוכן לבדיקה אנושית",
|
|
4269
|
+
"visual_confirmation_ready": "מוכן לאישור חזותי",
|
|
4270
|
+
"human_review": "ממתין לסקירת קוד",
|
|
4271
|
+
"followup_pending": "מעקבים להכרעה",
|
|
4272
|
+
"fork_decision_pending": "גישת מימוש",
|
|
4273
|
+
"judge_review": "פסיקת סקירה",
|
|
4274
|
+
"pr_review_ready": "ממצאי בדיקת PR",
|
|
4275
|
+
"initiative": "עדכוני יוזמה",
|
|
4276
|
+
"platform_health": "תקינות הפלטפורמה",
|
|
4277
|
+
"infra_unreachable": "תקלות תשתית",
|
|
4278
|
+
"budget_paused": "ריצות מושהות (תקציב)",
|
|
4279
|
+
"budget_threshold": "אזהרת תקציב",
|
|
4280
|
+
"key_drift": "סטיית מפתח ההצפנה",
|
|
4281
|
+
"merge_tag_request": "בקשה לתיוג מאמץ הסקירה"
|
|
4282
|
+
}
|
|
4283
|
+
},
|
|
4222
4284
|
"docInterview": {
|
|
4223
4285
|
"title": "חידוד המסמך",
|
|
4224
4286
|
"subtitle": "ענו על שאלות המראיין כדי לעצב את המסמך",
|