@cat-factory/app 0.296.2 → 0.296.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -3
- package/app/components/board/AddTaskModal.vue +63 -3
- package/app/components/board/BoardCanvas.vue +4 -92
- package/app/components/board/CreateInitiativeModal.vue +2 -2
- package/app/components/bugFishing/BugFishingWindow.vue +170 -48
- package/app/components/common/DescriptorFields.vue +7 -0
- package/app/components/foundational/FoundationalServiceCatalogList.vue +3 -12
- package/app/components/foundational/FoundationalServiceSources.vue +2 -11
- package/app/components/fragments/FragmentLibraryManager.vue +3 -12
- package/app/components/layout/AccountAuditLog.logic.ts +2 -2
- package/app/components/panels/ResultWindowShell.logic.spec.ts +7 -22
- package/app/components/panels/StepToolServers.logic.ts +2 -2
- package/app/components/settings/ConsensusGroupsSection.vue +1 -4
- package/app/components/settings/MergeRolePolicyEditor.logic.spec.ts +0 -1
- package/app/components/skills/SkillLibraryManager.vue +3 -12
- package/app/components/tutorial/TutorialOverlay.logic.ts +2 -2
- package/app/composables/api/client.spec.ts +0 -5
- package/app/composables/useBusyRows.ts +22 -0
- package/app/composables/useFrameResize.ts +0 -5
- package/app/composables/useSemanticZoom.ts +1 -1
- package/app/modular/panels/inspector.ts +1 -1
- package/app/modular/result-views.ts +4 -3
- package/app/stores/board/mutations.ts +1 -14
- package/app/stores/observability/agentContext.ts +1 -8
- package/app/stores/observability/toolCalls.ts +1 -8
- package/app/stores/observability/withFlag.ts +9 -0
- package/app/types/execution.ts +4 -0
- package/app/utils/blockRects.ts +1 -1
- package/app/utils/boardWakeGate.ts +1 -1
- package/app/utils/catalog.ts +1 -14
- package/app/utils/descriptorFields.spec.ts +0 -45
- package/app/utils/descriptorFields.ts +1 -13
- package/app/utils/dnd.ts +1 -25
- package/app/utils/initiative.ts +1 -1
- package/app/utils/settlingLoop.ts +1 -1
- package/app/utils/taskExpansionRanking.spec.ts +8 -17
- package/app/utils/tutorial.ts +1 -1
- package/app/utils/uiMode.spec.ts +0 -1
- package/app/utils/uiRole.ts +1 -1
- package/i18n/locales/de.json +19 -7
- package/i18n/locales/en.json +19 -7
- package/i18n/locales/es.json +19 -7
- package/i18n/locales/fr.json +19 -7
- package/i18n/locales/he.json +19 -7
- package/i18n/locales/it.json +19 -7
- package/i18n/locales/ja.json +19 -7
- package/i18n/locales/pl.json +19 -7
- package/i18n/locales/tr.json +19 -7
- package/i18n/locales/uk.json +19 -7
- package/package.json +2 -2
package/i18n/locales/de.json
CHANGED
|
@@ -2984,13 +2984,7 @@
|
|
|
2984
2984
|
},
|
|
2985
2985
|
"canvas": {
|
|
2986
2986
|
"emptyTitle": "Ihr Board ist leer",
|
|
2987
|
-
"emptyBody": "Fügen Sie einen Service hinzu, um zu beginnen: bootstrappen Sie ein frisches Repo oder binden Sie ein bereits vorhandenes ein."
|
|
2988
|
-
"addBlockFailedTitle": "Block konnte nicht hinzugefügt werden",
|
|
2989
|
-
"addBlockFailedBody": "Das Backend hat die Anfrage abgelehnt.",
|
|
2990
|
-
"dropOntoTaskTitle": "Auf eine Aufgabe ziehen",
|
|
2991
|
-
"dropOntoTaskBody": "Pipelines laufen gegen Aufgaben, nicht gegen Services.",
|
|
2992
|
-
"taskBlockedTitle": "Aufgabe ist blockiert",
|
|
2993
|
-
"taskBlockedBody": "Ihre Abhängigkeiten wurden noch nicht gemergt."
|
|
2987
|
+
"emptyBody": "Fügen Sie einen Service hinzu, um zu beginnen: bootstrappen Sie ein frisches Repo oder binden Sie ein bereits vorhandenes ein."
|
|
2994
2988
|
},
|
|
2995
2989
|
"addTask": {
|
|
2996
2990
|
"title": "Eine Aufgabe hinzufügen",
|
|
@@ -3131,6 +3125,11 @@
|
|
|
3131
3125
|
"focus": {
|
|
3132
3126
|
"label": "Worauf konzentrieren",
|
|
3133
3127
|
"placeholder": "Teilsysteme, Verzeichnisse oder die Fehlerart, die dieses Team bisher Zeit gekostet hat"
|
|
3128
|
+
},
|
|
3129
|
+
"maxPasses": {
|
|
3130
|
+
"label": "Maximale Durchgänge",
|
|
3131
|
+
"hint": "Höchstzahl der Nur-Lese-Durchgänge dieser Expedition. Leer lassen für {count}. Bei einer großen Codebasis wird jeder Blickwinkel pro Gebiet durchsucht; was das Budget streicht, wird als nicht durchsucht vermerkt.",
|
|
3132
|
+
"problem": "Geben Sie eine ganze Zahl zwischen 1 und {max} ein oder lassen Sie das Feld leer für den Standardwert."
|
|
3134
3133
|
}
|
|
3135
3134
|
}
|
|
3136
3135
|
},
|
|
@@ -8444,6 +8443,19 @@
|
|
|
8444
8443
|
"parked": "Alle Blickwinkel wurden untersucht.",
|
|
8445
8444
|
"parkedWithUntriaged": "Über {count} Befund(e) wurde noch nicht entschieden.",
|
|
8446
8445
|
"finish": "Sichtung abschließen"
|
|
8446
|
+
},
|
|
8447
|
+
"coverage": {
|
|
8448
|
+
"share": "{percent}% dieses Gebiets gelesen",
|
|
8449
|
+
"tooltip": "Dieser Durchgang hat angegeben, {percent}% seines Gebiets gelesen zu haben. Selbstauskunft des Agenten."
|
|
8450
|
+
},
|
|
8451
|
+
"plan": {
|
|
8452
|
+
"surveyUnavailable": "Die Codebasis wurde nicht kartiert, daher wurde sie als ein Ganzes durchsucht: {reason}",
|
|
8453
|
+
"treeTruncated": "Der Repository-Baum kam gekürzt zurück, daher decken die Gebiete unten nur den lesbaren Teil ab.",
|
|
8454
|
+
"unfished": "{fished} von {planned} geplanten Durchgängen ausgeführt. In diesem Lauf nicht durchsucht:",
|
|
8455
|
+
"unfishedCell": "{territory}, unter {angle}"
|
|
8456
|
+
},
|
|
8457
|
+
"territories": {
|
|
8458
|
+
"heading": "Gebiete"
|
|
8447
8459
|
}
|
|
8448
8460
|
}
|
|
8449
8461
|
}
|
package/i18n/locales/en.json
CHANGED
|
@@ -235,13 +235,7 @@
|
|
|
235
235
|
},
|
|
236
236
|
"canvas": {
|
|
237
237
|
"emptyTitle": "Your board is empty",
|
|
238
|
-
"emptyBody": "Add a service to get started: bootstrap a fresh repo or pull in one you already have."
|
|
239
|
-
"addBlockFailedTitle": "Could not add block",
|
|
240
|
-
"addBlockFailedBody": "The backend rejected the request.",
|
|
241
|
-
"dropOntoTaskTitle": "Drop onto a task",
|
|
242
|
-
"dropOntoTaskBody": "Pipelines run against tasks, not services.",
|
|
243
|
-
"taskBlockedTitle": "Task is blocked",
|
|
244
|
-
"taskBlockedBody": "Its dependencies haven't merged yet."
|
|
238
|
+
"emptyBody": "Add a service to get started: bootstrap a fresh repo or pull in one you already have."
|
|
245
239
|
},
|
|
246
240
|
"addTask": {
|
|
247
241
|
"title": "Add a task",
|
|
@@ -394,6 +388,11 @@
|
|
|
394
388
|
"focus": {
|
|
395
389
|
"label": "Where to concentrate",
|
|
396
390
|
"placeholder": "Subsystems, directories, or the kind of defect that has been costing this team"
|
|
391
|
+
},
|
|
392
|
+
"maxPasses": {
|
|
393
|
+
"label": "Maximum passes",
|
|
394
|
+
"hint": "Most read-only passes this expedition may run. Leave empty for {count}. On a large codebase each angle is fished per territory, and whatever the budget cuts is recorded as unfished.",
|
|
395
|
+
"problem": "Enter a whole number between 1 and {max}, or leave it empty for the default."
|
|
397
396
|
}
|
|
398
397
|
}
|
|
399
398
|
},
|
|
@@ -8742,6 +8741,19 @@
|
|
|
8742
8741
|
"parked": "Every angle has been fished.",
|
|
8743
8742
|
"parkedWithUntriaged": "{count} finding(s) still undecided.",
|
|
8744
8743
|
"finish": "Finish triage"
|
|
8744
|
+
},
|
|
8745
|
+
"coverage": {
|
|
8746
|
+
"share": "{percent}% of this territory read",
|
|
8747
|
+
"tooltip": "This pass reported reading {percent}% of its territory. Self-reported by the agent."
|
|
8748
|
+
},
|
|
8749
|
+
"plan": {
|
|
8750
|
+
"surveyUnavailable": "The codebase was not surveyed, so this expedition fished it as one whole: {reason}",
|
|
8751
|
+
"treeTruncated": "The repository tree came back truncated, so the territories below cover only the part that could be read.",
|
|
8752
|
+
"unfished": "Fished {fished} of {planned} planned passes. Not fished this run:",
|
|
8753
|
+
"unfishedCell": "{territory}, under {angle}"
|
|
8754
|
+
},
|
|
8755
|
+
"territories": {
|
|
8756
|
+
"heading": "Territories"
|
|
8745
8757
|
}
|
|
8746
8758
|
}
|
|
8747
8759
|
}
|
package/i18n/locales/es.json
CHANGED
|
@@ -202,13 +202,7 @@
|
|
|
202
202
|
},
|
|
203
203
|
"canvas": {
|
|
204
204
|
"emptyTitle": "Tu tablero está vacío",
|
|
205
|
-
"emptyBody": "Añade un servicio para empezar: arranca un repo nuevo o trae uno que ya tengas."
|
|
206
|
-
"addBlockFailedTitle": "No se pudo añadir el bloque",
|
|
207
|
-
"addBlockFailedBody": "El backend rechazó la solicitud.",
|
|
208
|
-
"dropOntoTaskTitle": "Suéltalo sobre una tarea",
|
|
209
|
-
"dropOntoTaskBody": "Las pipelines se ejecutan sobre tareas, no sobre servicios.",
|
|
210
|
-
"taskBlockedTitle": "La tarea está bloqueada",
|
|
211
|
-
"taskBlockedBody": "Sus dependencias aún no se han fusionado."
|
|
205
|
+
"emptyBody": "Añade un servicio para empezar: arranca un repo nuevo o trae uno que ya tengas."
|
|
212
206
|
},
|
|
213
207
|
"addTask": {
|
|
214
208
|
"title": "Añadir una tarea",
|
|
@@ -349,6 +343,11 @@
|
|
|
349
343
|
"focus": {
|
|
350
344
|
"label": "Dónde concentrarse",
|
|
351
345
|
"placeholder": "Subsistemas, directorios o el tipo de defecto que más tiempo le está costando a este equipo"
|
|
346
|
+
},
|
|
347
|
+
"maxPasses": {
|
|
348
|
+
"label": "Pasadas máximas",
|
|
349
|
+
"hint": "Número máximo de pasadas de solo lectura de esta expedición. Déjalo vacío para {count}. En una base de código grande cada ángulo se pesca por territorio, y lo que el presupuesto recorte queda registrado como no pescado.",
|
|
350
|
+
"problem": "Introduce un número entero entre 1 y {max}, o déjalo vacío para el valor predeterminado."
|
|
352
351
|
}
|
|
353
352
|
}
|
|
354
353
|
},
|
|
@@ -8444,6 +8443,19 @@
|
|
|
8444
8443
|
"parked": "Se han explorado todos los ángulos.",
|
|
8445
8444
|
"parkedWithUntriaged": "Quedan {count} hallazgo(s) sin decidir.",
|
|
8446
8445
|
"finish": "Terminar el triaje"
|
|
8446
|
+
},
|
|
8447
|
+
"coverage": {
|
|
8448
|
+
"share": "{percent}% de este territorio leído",
|
|
8449
|
+
"tooltip": "Esta pasada declaró haber leído el {percent}% de su territorio. Dato declarado por el agente."
|
|
8450
|
+
},
|
|
8451
|
+
"plan": {
|
|
8452
|
+
"surveyUnavailable": "No se pudo inspeccionar el código, así que esta expedición lo pescó como un todo: {reason}",
|
|
8453
|
+
"treeTruncated": "El árbol del repositorio llegó truncado, así que los territorios de abajo cubren solo la parte que se pudo leer.",
|
|
8454
|
+
"unfished": "Se pescaron {fished} de {planned} pasadas previstas. Sin pescar en esta ejecución:",
|
|
8455
|
+
"unfishedCell": "{territory}, bajo {angle}"
|
|
8456
|
+
},
|
|
8457
|
+
"territories": {
|
|
8458
|
+
"heading": "Territorios"
|
|
8447
8459
|
}
|
|
8448
8460
|
}
|
|
8449
8461
|
}
|
package/i18n/locales/fr.json
CHANGED
|
@@ -202,13 +202,7 @@
|
|
|
202
202
|
},
|
|
203
203
|
"canvas": {
|
|
204
204
|
"emptyTitle": "Votre tableau est vide",
|
|
205
|
-
"emptyBody": "Ajoutez un service pour commencer : initialisez un nouveau dépôt ou importez-en un existant."
|
|
206
|
-
"addBlockFailedTitle": "Impossible d’ajouter le bloc",
|
|
207
|
-
"addBlockFailedBody": "Le backend a rejeté la requête.",
|
|
208
|
-
"dropOntoTaskTitle": "Déposez sur une tâche",
|
|
209
|
-
"dropOntoTaskBody": "Les pipelines s’exécutent sur des tâches, pas sur des services.",
|
|
210
|
-
"taskBlockedTitle": "La tâche est bloquée",
|
|
211
|
-
"taskBlockedBody": "Ses dépendances n’ont pas encore été fusionnées."
|
|
205
|
+
"emptyBody": "Ajoutez un service pour commencer : initialisez un nouveau dépôt ou importez-en un existant."
|
|
212
206
|
},
|
|
213
207
|
"addTask": {
|
|
214
208
|
"title": "Ajouter une tâche",
|
|
@@ -349,6 +343,11 @@
|
|
|
349
343
|
"focus": {
|
|
350
344
|
"label": "Où se concentrer",
|
|
351
345
|
"placeholder": "Sous-systèmes, répertoires, ou le type de défaut qui coûte le plus de temps à cette équipe"
|
|
346
|
+
},
|
|
347
|
+
"maxPasses": {
|
|
348
|
+
"label": "Passes maximum",
|
|
349
|
+
"hint": "Nombre maximal de passes en lecture seule de cette expédition. Laisser vide pour {count}. Sur un gros code, chaque angle est pêché par territoire, et ce que le budget coupe est consigné comme non pêché.",
|
|
350
|
+
"problem": "Saisissez un nombre entier compris entre 1 et {max}, ou laissez le champ vide pour la valeur par défaut."
|
|
352
351
|
}
|
|
353
352
|
}
|
|
354
353
|
},
|
|
@@ -8444,6 +8443,19 @@
|
|
|
8444
8443
|
"parked": "Tous les angles ont été explorés.",
|
|
8445
8444
|
"parkedWithUntriaged": "{count} constatation(s) encore non tranchée(s).",
|
|
8446
8445
|
"finish": "Terminer le tri"
|
|
8446
|
+
},
|
|
8447
|
+
"coverage": {
|
|
8448
|
+
"share": "{percent}% de ce territoire lu",
|
|
8449
|
+
"tooltip": "Cette passe déclare avoir lu {percent}% de son territoire. Donnée déclarée par l'agent."
|
|
8450
|
+
},
|
|
8451
|
+
"plan": {
|
|
8452
|
+
"surveyUnavailable": "Le code n'a pas été cartographié, cette expédition l'a donc pêché d'un seul tenant : {reason}",
|
|
8453
|
+
"treeTruncated": "L'arbre du dépôt est revenu tronqué : les territoires ci-dessous ne couvrent que la partie lisible.",
|
|
8454
|
+
"unfished": "{fished} passes pêchées sur {planned} prévues. Non pêché lors de cette exécution :",
|
|
8455
|
+
"unfishedCell": "{territory}, sous {angle}"
|
|
8456
|
+
},
|
|
8457
|
+
"territories": {
|
|
8458
|
+
"heading": "Territoires"
|
|
8447
8459
|
}
|
|
8448
8460
|
}
|
|
8449
8461
|
}
|
package/i18n/locales/he.json
CHANGED
|
@@ -202,13 +202,7 @@
|
|
|
202
202
|
},
|
|
203
203
|
"canvas": {
|
|
204
204
|
"emptyTitle": "הלוח שלך ריק",
|
|
205
|
-
"emptyBody": "הוסף שירות כדי להתחיל: אתחל מאגר חדש או משוך מאגר קיים שכבר יש לך."
|
|
206
|
-
"addBlockFailedTitle": "לא ניתן היה להוסיף בלוק",
|
|
207
|
-
"addBlockFailedBody": "השרת דחה את הבקשה.",
|
|
208
|
-
"dropOntoTaskTitle": "גרור על משימה",
|
|
209
|
-
"dropOntoTaskBody": "צינורות פועלים על משימות, לא על שירותים.",
|
|
210
|
-
"taskBlockedTitle": "המשימה חסומה",
|
|
211
|
-
"taskBlockedBody": "התלויות שלה עדיין לא מוזגו."
|
|
205
|
+
"emptyBody": "הוסף שירות כדי להתחיל: אתחל מאגר חדש או משוך מאגר קיים שכבר יש לך."
|
|
212
206
|
},
|
|
213
207
|
"addTask": {
|
|
214
208
|
"title": "הוסף משימה",
|
|
@@ -349,6 +343,11 @@
|
|
|
349
343
|
"focus": {
|
|
350
344
|
"label": "במה להתמקד",
|
|
351
345
|
"placeholder": "תת-מערכות, תיקיות או סוג התקלות שעולה לצוות הזה הכי הרבה זמן"
|
|
346
|
+
},
|
|
347
|
+
"maxPasses": {
|
|
348
|
+
"label": "מספר מעברים מרבי",
|
|
349
|
+
"hint": "מספר המעברים לקריאה בלבד המרבי של המשלחת הזו. השאירו ריק עבור {count}. בבסיס קוד גדול כל זווית נסרקת לכל טריטוריה בנפרד, ומה שהתקציב חותך נרשם כלא נסרק.",
|
|
350
|
+
"problem": "הזינו מספר שלם בין 1 ל-{max}, או השאירו ריק לערך ברירת המחדל."
|
|
352
351
|
}
|
|
353
352
|
}
|
|
354
353
|
},
|
|
@@ -8444,6 +8443,19 @@
|
|
|
8444
8443
|
"parked": "כל הזוויות נסרקו.",
|
|
8445
8444
|
"parkedWithUntriaged": "נותרו {count} ממצאים ללא הכרעה.",
|
|
8446
8445
|
"finish": "סיום המיון"
|
|
8446
|
+
},
|
|
8447
|
+
"coverage": {
|
|
8448
|
+
"share": "{percent}% מהטריטוריה הזו נקראו",
|
|
8449
|
+
"tooltip": "המעבר הזה דיווח שקרא {percent}% מהטריטוריה שלו. דיווח עצמי של הסוכן."
|
|
8450
|
+
},
|
|
8451
|
+
"plan": {
|
|
8452
|
+
"surveyUnavailable": "בסיס הקוד לא נסקר, ולכן המשלחת סרקה אותו כמקשה אחת: {reason}",
|
|
8453
|
+
"treeTruncated": "עץ המאגר חזר קטוע, ולכן הטריטוריות שלהלן מכסות רק את החלק שניתן היה לקרוא.",
|
|
8454
|
+
"unfished": "בוצעו {fished} מתוך {planned} מעברים מתוכננים. לא נסרק בהרצה הזו:",
|
|
8455
|
+
"unfishedCell": "{territory}, בזווית {angle}"
|
|
8456
|
+
},
|
|
8457
|
+
"territories": {
|
|
8458
|
+
"heading": "טריטוריות"
|
|
8447
8459
|
}
|
|
8448
8460
|
}
|
|
8449
8461
|
}
|
package/i18n/locales/it.json
CHANGED
|
@@ -2984,13 +2984,7 @@
|
|
|
2984
2984
|
},
|
|
2985
2985
|
"canvas": {
|
|
2986
2986
|
"emptyTitle": "La tua board è vuota",
|
|
2987
|
-
"emptyBody": "Aggiungi un servizio per iniziare: esegui il bootstrap di un repo nuovo o importane uno che hai già."
|
|
2988
|
-
"addBlockFailedTitle": "Impossibile aggiungere il blocco",
|
|
2989
|
-
"addBlockFailedBody": "Il backend ha rifiutato la richiesta.",
|
|
2990
|
-
"dropOntoTaskTitle": "Rilascia su un'attività",
|
|
2991
|
-
"dropOntoTaskBody": "Le pipeline vengono eseguite sulle attività, non sui servizi.",
|
|
2992
|
-
"taskBlockedTitle": "L'attività è bloccata",
|
|
2993
|
-
"taskBlockedBody": "Le sue dipendenze non sono ancora state unite."
|
|
2987
|
+
"emptyBody": "Aggiungi un servizio per iniziare: esegui il bootstrap di un repo nuovo o importane uno che hai già."
|
|
2994
2988
|
},
|
|
2995
2989
|
"addTask": {
|
|
2996
2990
|
"title": "Aggiungi un'attività",
|
|
@@ -3131,6 +3125,11 @@
|
|
|
3131
3125
|
"focus": {
|
|
3132
3126
|
"label": "Dove concentrarsi",
|
|
3133
3127
|
"placeholder": "Sottosistemi, cartelle o il tipo di difetto che sta costando più tempo a questo team"
|
|
3128
|
+
},
|
|
3129
|
+
"maxPasses": {
|
|
3130
|
+
"label": "Passaggi massimi",
|
|
3131
|
+
"hint": "Numero massimo di passaggi in sola lettura di questa spedizione. Lascia vuoto per {count}. Su una codebase grande ogni angolazione viene pescata per territorio, e ciò che il budget taglia resta registrato come non pescato.",
|
|
3132
|
+
"problem": "Inserisci un numero intero compreso tra 1 e {max}, oppure lascia vuoto per il valore predefinito."
|
|
3134
3133
|
}
|
|
3135
3134
|
}
|
|
3136
3135
|
},
|
|
@@ -8444,6 +8443,19 @@
|
|
|
8444
8443
|
"parked": "Tutte le angolazioni sono state esplorate.",
|
|
8445
8444
|
"parkedWithUntriaged": "Restano {count} rilievi senza decisione.",
|
|
8446
8445
|
"finish": "Concludi il triage"
|
|
8446
|
+
},
|
|
8447
|
+
"coverage": {
|
|
8448
|
+
"share": "{percent}% di questo territorio letto",
|
|
8449
|
+
"tooltip": "Questo passaggio ha dichiarato di aver letto il {percent}% del suo territorio. Dato dichiarato dall'agente."
|
|
8450
|
+
},
|
|
8451
|
+
"plan": {
|
|
8452
|
+
"surveyUnavailable": "La codebase non è stata mappata, quindi questa spedizione l'ha pescata per intero: {reason}",
|
|
8453
|
+
"treeTruncated": "L'albero del repository è arrivato troncato, quindi i territori qui sotto coprono solo la parte leggibile.",
|
|
8454
|
+
"unfished": "Pescati {fished} passaggi su {planned} previsti. Non pescati in questa esecuzione:",
|
|
8455
|
+
"unfishedCell": "{territory}, sotto {angle}"
|
|
8456
|
+
},
|
|
8457
|
+
"territories": {
|
|
8458
|
+
"heading": "Territori"
|
|
8447
8459
|
}
|
|
8448
8460
|
}
|
|
8449
8461
|
}
|
package/i18n/locales/ja.json
CHANGED
|
@@ -202,13 +202,7 @@
|
|
|
202
202
|
},
|
|
203
203
|
"canvas": {
|
|
204
204
|
"emptyTitle": "ボードが空です",
|
|
205
|
-
"emptyBody": "サービスを追加して始めましょう。新しいリポジトリをブートストラップするか、既存のリポジトリを取り込みます。"
|
|
206
|
-
"addBlockFailedTitle": "ブロックを追加できませんでした",
|
|
207
|
-
"addBlockFailedBody": "バックエンドがリクエストを拒否しました。",
|
|
208
|
-
"dropOntoTaskTitle": "タスクにドロップ",
|
|
209
|
-
"dropOntoTaskBody": "パイプラインはサービスではなくタスクに対して実行されます。",
|
|
210
|
-
"taskBlockedTitle": "タスクがブロックされています",
|
|
211
|
-
"taskBlockedBody": "依存関係がまだマージされていません。"
|
|
205
|
+
"emptyBody": "サービスを追加して始めましょう。新しいリポジトリをブートストラップするか、既存のリポジトリを取り込みます。"
|
|
212
206
|
},
|
|
213
207
|
"addTask": {
|
|
214
208
|
"title": "タスクを追加",
|
|
@@ -349,6 +343,11 @@
|
|
|
349
343
|
"focus": {
|
|
350
344
|
"label": "重点を置く箇所",
|
|
351
345
|
"placeholder": "サブシステム、ディレクトリ、またはこのチームで手間になっている不具合の種類"
|
|
346
|
+
},
|
|
347
|
+
"maxPasses": {
|
|
348
|
+
"label": "最大パス数",
|
|
349
|
+
"hint": "この遠征が実行できる読み取り専用パスの上限です。空欄なら {count} 回。大規模なコードベースでは各観点を領域ごとに探索し、予算で削られた分は未探索として記録されます。",
|
|
350
|
+
"problem": "1 から {max} までの整数を入力してください。空欄のままにすると既定値が使われます。"
|
|
352
351
|
}
|
|
353
352
|
}
|
|
354
353
|
},
|
|
@@ -8444,6 +8443,19 @@
|
|
|
8444
8443
|
"parked": "すべての観点の探索が終わりました。",
|
|
8445
8444
|
"parkedWithUntriaged": "未判断の指摘が {count} 件あります。",
|
|
8446
8445
|
"finish": "トリアージを終了"
|
|
8446
|
+
},
|
|
8447
|
+
"coverage": {
|
|
8448
|
+
"share": "この領域の {percent}% を読了",
|
|
8449
|
+
"tooltip": "このパスは自身の領域の {percent}% を読んだと報告しました。エージェントの自己申告です。"
|
|
8450
|
+
},
|
|
8451
|
+
"plan": {
|
|
8452
|
+
"surveyUnavailable": "コードベースを調査できなかったため、この遠征は全体を一括で探索しました: {reason}",
|
|
8453
|
+
"treeTruncated": "リポジトリのツリーが切り詰められて返されたため、以下の領域は読み取れた範囲のみを対象としています。",
|
|
8454
|
+
"unfished": "予定 {planned} パス中 {fished} パスを実施しました。今回未探索:",
|
|
8455
|
+
"unfishedCell": "{territory} の {angle}"
|
|
8456
|
+
},
|
|
8457
|
+
"territories": {
|
|
8458
|
+
"heading": "領域"
|
|
8447
8459
|
}
|
|
8448
8460
|
}
|
|
8449
8461
|
}
|
package/i18n/locales/pl.json
CHANGED
|
@@ -202,13 +202,7 @@
|
|
|
202
202
|
},
|
|
203
203
|
"canvas": {
|
|
204
204
|
"emptyTitle": "Twoja tablica jest pusta",
|
|
205
|
-
"emptyBody": "Dodaj usługę, aby zacząć: zainicjuj nowe repozytorium albo dołącz istniejące."
|
|
206
|
-
"addBlockFailedTitle": "Nie udało się dodać bloku",
|
|
207
|
-
"addBlockFailedBody": "Backend odrzucił żądanie.",
|
|
208
|
-
"dropOntoTaskTitle": "Upuść na zadanie",
|
|
209
|
-
"dropOntoTaskBody": "Pipeline’y działają na zadaniach, a nie na usługach.",
|
|
210
|
-
"taskBlockedTitle": "Zadanie jest zablokowane",
|
|
211
|
-
"taskBlockedBody": "Jego zależności nie zostały jeszcze scalone."
|
|
205
|
+
"emptyBody": "Dodaj usługę, aby zacząć: zainicjuj nowe repozytorium albo dołącz istniejące."
|
|
212
206
|
},
|
|
213
207
|
"addTask": {
|
|
214
208
|
"title": "Dodaj zadanie",
|
|
@@ -349,6 +343,11 @@
|
|
|
349
343
|
"focus": {
|
|
350
344
|
"label": "Na czym się skupić",
|
|
351
345
|
"placeholder": "Podsystemy, katalogi albo rodzaj usterki, który najbardziej kosztuje ten zespół"
|
|
346
|
+
},
|
|
347
|
+
"maxPasses": {
|
|
348
|
+
"label": "Maksymalna liczba przejść",
|
|
349
|
+
"hint": "Najwyższa liczba przejść tylko do odczytu w tej wyprawie. Zostaw puste, aby użyć {count}. W dużej bazie kodu każdy kąt przeszukiwany jest osobno dla każdego terytorium, a to, co utnie budżet, zapisujemy jako nieprzeszukane.",
|
|
350
|
+
"problem": "Podaj liczbę całkowitą od 1 do {max} albo pozostaw pole puste, aby użyć wartości domyślnej."
|
|
352
351
|
}
|
|
353
352
|
}
|
|
354
353
|
},
|
|
@@ -8444,6 +8443,19 @@
|
|
|
8444
8443
|
"parked": "Przeszukano wszystkie perspektywy.",
|
|
8445
8444
|
"parkedWithUntriaged": "Pozostało {count} nierozstrzygniętych znalezisk.",
|
|
8446
8445
|
"finish": "Zakończ segregację"
|
|
8446
|
+
},
|
|
8447
|
+
"coverage": {
|
|
8448
|
+
"share": "Przeczytano {percent}% tego terytorium",
|
|
8449
|
+
"tooltip": "To przejście zgłosiło przeczytanie {percent}% swojego terytorium. Dane podane przez agenta."
|
|
8450
|
+
},
|
|
8451
|
+
"plan": {
|
|
8452
|
+
"surveyUnavailable": "Baza kodu nie została zbadana, więc ta wyprawa przeszukała ją w całości: {reason}",
|
|
8453
|
+
"treeTruncated": "Drzewo repozytorium wróciło obcięte, więc terytoria poniżej obejmują tylko tę część, którą udało się odczytać.",
|
|
8454
|
+
"unfished": "Wykonano {fished} z {planned} zaplanowanych przejść. Nieprzeszukane w tym uruchomieniu:",
|
|
8455
|
+
"unfishedCell": "{territory}, pod kątem {angle}"
|
|
8456
|
+
},
|
|
8457
|
+
"territories": {
|
|
8458
|
+
"heading": "Terytoria"
|
|
8447
8459
|
}
|
|
8448
8460
|
}
|
|
8449
8461
|
}
|
package/i18n/locales/tr.json
CHANGED
|
@@ -202,13 +202,7 @@
|
|
|
202
202
|
},
|
|
203
203
|
"canvas": {
|
|
204
204
|
"emptyTitle": "Panonuz boş",
|
|
205
|
-
"emptyBody": "Başlamak için bir servis ekleyin: yeni bir depo başlatın veya zaten sahip olduğunuz bir depoyu ekleyin."
|
|
206
|
-
"addBlockFailedTitle": "Blok eklenemedi",
|
|
207
|
-
"addBlockFailedBody": "Arka uç isteği reddetti.",
|
|
208
|
-
"dropOntoTaskTitle": "Bir göreve bırakın",
|
|
209
|
-
"dropOntoTaskBody": "İşlem hatları servislere değil, görevlere karşı çalışır.",
|
|
210
|
-
"taskBlockedTitle": "Görev engellendi",
|
|
211
|
-
"taskBlockedBody": "Bağımlılıkları henüz birleştirilmedi."
|
|
205
|
+
"emptyBody": "Başlamak için bir servis ekleyin: yeni bir depo başlatın veya zaten sahip olduğunuz bir depoyu ekleyin."
|
|
212
206
|
},
|
|
213
207
|
"addTask": {
|
|
214
208
|
"title": "Görev ekle",
|
|
@@ -349,6 +343,11 @@
|
|
|
349
343
|
"focus": {
|
|
350
344
|
"label": "Nereye yoğunlaşılsın",
|
|
351
345
|
"placeholder": "Alt sistemler, dizinler ya da bu ekibe en çok zaman kaybettiren kusur türü"
|
|
346
|
+
},
|
|
347
|
+
"maxPasses": {
|
|
348
|
+
"label": "En fazla geçiş",
|
|
349
|
+
"hint": "Bu seferin yapabileceği en fazla salt okunur geçiş sayısı. {count} için boş bırakın. Büyük bir kod tabanında her açı her bölge için ayrı taranır ve bütçenin kestikleri taranmamış olarak kaydedilir.",
|
|
350
|
+
"problem": "1 ile {max} arasında bir tam sayı girin veya varsayılan değer için boş bırakın."
|
|
352
351
|
}
|
|
353
352
|
}
|
|
354
353
|
},
|
|
@@ -8444,6 +8443,19 @@
|
|
|
8444
8443
|
"parked": "Tüm açılar tarandı.",
|
|
8445
8444
|
"parkedWithUntriaged": "{count} bulgu hâlâ karara bağlanmadı.",
|
|
8446
8445
|
"finish": "Triyajı bitir"
|
|
8446
|
+
},
|
|
8447
|
+
"coverage": {
|
|
8448
|
+
"share": "Bu bölgenin %{percent} kadarı okundu",
|
|
8449
|
+
"tooltip": "Bu geçiş, bölgesinin %{percent} kadarını okuduğunu bildirdi. Ajanın kendi beyanı."
|
|
8450
|
+
},
|
|
8451
|
+
"plan": {
|
|
8452
|
+
"surveyUnavailable": "Kod tabanı taranamadı, bu nedenle bu sefer tek parça olarak tarandı: {reason}",
|
|
8453
|
+
"treeTruncated": "Depo ağacı kırpılmış olarak döndü, bu nedenle aşağıdaki bölgeler yalnızca okunabilen kısmı kapsıyor.",
|
|
8454
|
+
"unfished": "Planlanan {planned} geçişten {fished} tanesi yapıldı. Bu çalışmada taranmayanlar:",
|
|
8455
|
+
"unfishedCell": "{angle} açısından {territory}"
|
|
8456
|
+
},
|
|
8457
|
+
"territories": {
|
|
8458
|
+
"heading": "Bölgeler"
|
|
8447
8459
|
}
|
|
8448
8460
|
}
|
|
8449
8461
|
}
|
package/i18n/locales/uk.json
CHANGED
|
@@ -202,13 +202,7 @@
|
|
|
202
202
|
},
|
|
203
203
|
"canvas": {
|
|
204
204
|
"emptyTitle": "Ваша дошка порожня",
|
|
205
|
-
"emptyBody": "Додайте сервіс, щоб почати: ініціалізуйте нове репозиторій або підключіть наявне."
|
|
206
|
-
"addBlockFailedTitle": "Не вдалося додати блок",
|
|
207
|
-
"addBlockFailedBody": "Бекенд відхилив запит.",
|
|
208
|
-
"dropOntoTaskTitle": "Перетягніть на завдання",
|
|
209
|
-
"dropOntoTaskBody": "Конвеєри виконуються над завданнями, а не над сервісами.",
|
|
210
|
-
"taskBlockedTitle": "Завдання заблоковано",
|
|
211
|
-
"taskBlockedBody": "Його залежності ще не злито."
|
|
205
|
+
"emptyBody": "Додайте сервіс, щоб почати: ініціалізуйте нове репозиторій або підключіть наявне."
|
|
212
206
|
},
|
|
213
207
|
"addTask": {
|
|
214
208
|
"title": "Додати завдання",
|
|
@@ -349,6 +343,11 @@
|
|
|
349
343
|
"focus": {
|
|
350
344
|
"label": "На чому зосередитися",
|
|
351
345
|
"placeholder": "Підсистеми, каталоги або тип дефектів, що найбільше коштує цій команді"
|
|
346
|
+
},
|
|
347
|
+
"maxPasses": {
|
|
348
|
+
"label": "Максимум проходів",
|
|
349
|
+
"hint": "Найбільша кількість проходів лише для читання в цій експедиції. Залиште порожнім, щоб узяти {count}. У великій кодовій базі кожен кут перевіряється для кожної території, а зрізане бюджетом записується як неперевірене.",
|
|
350
|
+
"problem": "Введіть ціле число від 1 до {max} або залиште поле порожнім, щоб використати типове значення."
|
|
352
351
|
}
|
|
353
352
|
}
|
|
354
353
|
},
|
|
@@ -8444,6 +8443,19 @@
|
|
|
8444
8443
|
"parked": "Пройдено всі кути.",
|
|
8445
8444
|
"parkedWithUntriaged": "Залишилося {count} нерозглянутих знахідок.",
|
|
8446
8445
|
"finish": "Завершити сортування"
|
|
8446
|
+
},
|
|
8447
|
+
"coverage": {
|
|
8448
|
+
"share": "Прочитано {percent}% цієї території",
|
|
8449
|
+
"tooltip": "Цей прохід повідомив, що прочитав {percent}% своєї території. Дані з власних слів агента."
|
|
8450
|
+
},
|
|
8451
|
+
"plan": {
|
|
8452
|
+
"surveyUnavailable": "Кодову базу не обстежено, тож ця експедиція шукала в ній як у єдиному цілому: {reason}",
|
|
8453
|
+
"treeTruncated": "Дерево репозиторію повернулося обрізаним, тож території нижче охоплюють лише прочитану частину.",
|
|
8454
|
+
"unfished": "Виконано {fished} із {planned} запланованих проходів. Не перевірено цього разу:",
|
|
8455
|
+
"unfishedCell": "{territory}, під кутом {angle}"
|
|
8456
|
+
},
|
|
8457
|
+
"territories": {
|
|
8458
|
+
"heading": "Території"
|
|
8447
8459
|
}
|
|
8448
8460
|
}
|
|
8449
8461
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cat-factory/app",
|
|
3
|
-
"version": "0.296.
|
|
3
|
+
"version": "0.296.4",
|
|
4
4
|
"description": "Reusable Nuxt layer for the Agent Architecture Board SPA (components, stores, composables, pages). Consume it from a thin deployment app via `extends: ['@cat-factory/app']` and point it at your backend with NUXT_PUBLIC_API_BASE. See deploy/frontend for an example.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"access": "public"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@cat-factory/contracts": "0.
|
|
21
|
+
"@cat-factory/contracts": "0.347.0",
|
|
22
22
|
"@modular-frontend/core": "0.6.0",
|
|
23
23
|
"@modular-vue/core": "^1.5.0",
|
|
24
24
|
"@modular-vue/journeys": "^1.4.0",
|