@cat-factory/app 0.275.0 → 0.276.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/README.md +89 -2
- package/app/components/board/LaneViewControl.vue +87 -0
- package/app/components/board/nodes/BlockNode.vue +24 -10
- package/app/components/board/nodes/FrameSwimlanes.vue +139 -0
- package/app/components/board/nodes/InitiativeCard.vue +9 -28
- package/app/components/board/nodes/LaneGroup.vue +93 -0
- package/app/components/board/nodes/LaneTask.vue +66 -0
- package/app/components/board/nodes/TaskCard.vue +16 -2
- package/app/components/board/nodes/TaskLane.vue +82 -0
- package/app/components/layout/BoardToolbar.vue +4 -0
- package/app/components/panels/InspectorPanel.vue +15 -2
- package/app/components/panels/inspector/TaskStructure.vue +70 -3
- package/app/components/settings/WorkspaceSettingsPanel.vue +59 -0
- package/app/composables/useBlockDrag.ts +47 -17
- package/app/composables/useBlockQueries.ts +27 -24
- package/app/composables/useFrameLanes.ts +177 -0
- package/app/composables/useTaskExpansion.ts +1 -1
- package/app/stores/board/placement.ts +7 -0
- package/app/stores/board.spec.ts +119 -14
- package/app/stores/laneView.spec.ts +61 -0
- package/app/stores/laneView.ts +85 -0
- package/app/stores/taskExpansion.spec.ts +1 -1
- package/app/stores/taskExpansion.ts +1 -1
- package/app/stores/workspaceSettings.ts +4 -0
- package/app/utils/framePlacement.ts +9 -4
- package/app/utils/laneGeometry.spec.ts +69 -0
- package/app/utils/laneGeometry.ts +104 -0
- package/app/utils/laneSort.spec.ts +236 -0
- package/app/utils/laneSort.ts +306 -0
- package/app/utils/swimlanes.spec.ts +259 -0
- package/app/utils/swimlanes.ts +355 -0
- package/i18n/locales/de.json +78 -3
- package/i18n/locales/en.json +78 -3
- package/i18n/locales/es.json +78 -3
- package/i18n/locales/fr.json +78 -3
- package/i18n/locales/he.json +78 -3
- package/i18n/locales/it.json +78 -3
- package/i18n/locales/ja.json +78 -3
- package/i18n/locales/pl.json +78 -3
- package/i18n/locales/tr.json +78 -3
- package/i18n/locales/uk.json +78 -3
- package/package.json +2 -2
- package/app/components/board/nodes/DraggableTask.vue +0 -58
- package/app/components/board/nodes/ModuleFrame.vue +0 -73
package/i18n/locales/de.json
CHANGED
|
@@ -1163,6 +1163,15 @@
|
|
|
1163
1163
|
"advisory": "Hinweis (erfassen, nie anhalten)",
|
|
1164
1164
|
"off": "Aus (Prüfung überspringen)"
|
|
1165
1165
|
}
|
|
1166
|
+
},
|
|
1167
|
+
"doneLane": {
|
|
1168
|
+
"heading": "Spalte „Fertig“",
|
|
1169
|
+
"body": "Wie viel abgeschlossene Arbeit die Spalte „Fertig“ jedes Service-Rahmens sichtbar hält. Beide Grenzen verbergen nur Karten: eine ausgeblendete Aufgabe bleibt auf dem Board, bleibt durchsuchbar und bleibt in der Gesamtzahl der Spalte.",
|
|
1170
|
+
"maxItems": "Angezeigte Karten",
|
|
1171
|
+
"zeroHint": "Abgeschlossene Aufgaben werden gezählt, aber nie aufgeführt.",
|
|
1172
|
+
"ageToggle": "Außerdem länger abgeschlossene Aufgaben verbergen",
|
|
1173
|
+
"days": "Aufbewahren (Tage)",
|
|
1174
|
+
"hidesOnlyHint": "Es wird nichts gelöscht. Aufgaben ohne erfasstes Abschlussdatum werden nie wegen ihres Alters verborgen."
|
|
1166
1175
|
}
|
|
1167
1176
|
},
|
|
1168
1177
|
"localModelEndpoints": {
|
|
@@ -1791,11 +1800,12 @@
|
|
|
1791
1800
|
"title": "Struktur",
|
|
1792
1801
|
"hint": "Wo diese Aufgabe in ihrem Service liegt und welchen Coding-Standards ihre Agents folgen.",
|
|
1793
1802
|
"module": "Modul",
|
|
1794
|
-
"modulePlaceholder": "
|
|
1795
|
-
"moduleHint": "Das Service-Modul, zu dem diese Aufgabe gehört
|
|
1803
|
+
"modulePlaceholder": "Modul wählen oder eingeben",
|
|
1804
|
+
"moduleHint": "Das Service-Modul, zu dem diese Aufgabe gehört; das Board gruppiert die Spalten danach. Ein noch nicht vorhandenes Modul wird bei der Umsetzung der Aufgabe erstellt.",
|
|
1796
1805
|
"bestPractices": "Best Practices",
|
|
1797
1806
|
"bestPracticesEmpty": "Keine. Agents folgen ihren Standardvorgaben.",
|
|
1798
|
-
"bestPracticesHint": "Best-Practice-Fragmente, die zusätzlich zu den Standards auf Service-Ebene in die Prompts der Agents dieser Aufgabe eingearbeitet werden."
|
|
1807
|
+
"bestPracticesHint": "Best-Practice-Fragmente, die zusätzlich zu den Standards auf Service-Ebene in die Prompts der Agents dieser Aufgabe eingearbeitet werden.",
|
|
1808
|
+
"moduleNone": "Kein Modul"
|
|
1799
1809
|
},
|
|
1800
1810
|
"runSettings": {
|
|
1801
1811
|
"title": "Lauf-Einstellungen",
|
|
@@ -3261,6 +3271,71 @@
|
|
|
3261
3271
|
"label": "Epic",
|
|
3262
3272
|
"activeCount": "{count} aktiv",
|
|
3263
3273
|
"noTasksYet": "Noch keine Aufgaben"
|
|
3274
|
+
},
|
|
3275
|
+
"lanes": {
|
|
3276
|
+
"viewTitle": "Anordnen",
|
|
3277
|
+
"resetView": "Auf Standard zurücksetzen",
|
|
3278
|
+
"notStarted": {
|
|
3279
|
+
"label": "Nicht begonnen",
|
|
3280
|
+
"empty": "Nichts wartet auf Bearbeitung."
|
|
3281
|
+
},
|
|
3282
|
+
"inProgress": {
|
|
3283
|
+
"label": "In Arbeit",
|
|
3284
|
+
"empty": "Keine laufenden Durchläufe."
|
|
3285
|
+
},
|
|
3286
|
+
"needsYou": {
|
|
3287
|
+
"label": "Wartet auf dich",
|
|
3288
|
+
"empty": "Nichts wartet auf dich."
|
|
3289
|
+
},
|
|
3290
|
+
"done": {
|
|
3291
|
+
"label": "Fertig",
|
|
3292
|
+
"empty": "Noch nichts abgeschlossen.",
|
|
3293
|
+
"hiddenByCap": "+{count} nicht angezeigt",
|
|
3294
|
+
"hiddenByAge": "+{count} außerhalb des Aufbewahrungszeitraums",
|
|
3295
|
+
"undated": "{count} ohne erfasstes Datum",
|
|
3296
|
+
"allWithheld": "Abgeschlossene Aufgaben werden hier gezählt, aber laut Board-Einstellungen nicht aufgeführt."
|
|
3297
|
+
},
|
|
3298
|
+
"reason": {
|
|
3299
|
+
"unstarted": "Startbereit",
|
|
3300
|
+
"dependencies": "Wartet auf eine Abhängigkeit",
|
|
3301
|
+
"running": "Läuft",
|
|
3302
|
+
"backgroundReview": "Prüfung im Hintergrund",
|
|
3303
|
+
"decision": "Entscheidung erforderlich",
|
|
3304
|
+
"approval": "Freigabe erforderlich",
|
|
3305
|
+
"failed": "Durchlauf fehlgeschlagen",
|
|
3306
|
+
"budgetPaused": "Vom Ausgabenbudget angehalten",
|
|
3307
|
+
"prAwaitingMerge": "Pull Request wartet auf Merge",
|
|
3308
|
+
"parked": "Wartet auf einen Menschen",
|
|
3309
|
+
"unclassified": "Unbekannter Status",
|
|
3310
|
+
"merged": "Zusammengeführt"
|
|
3311
|
+
},
|
|
3312
|
+
"sort": {
|
|
3313
|
+
"heading": "Sortieren nach",
|
|
3314
|
+
"smart": "Pro Spalte empfohlen",
|
|
3315
|
+
"title": "Titel (A–Z)",
|
|
3316
|
+
"oldest_activity": "Stillste zuerst",
|
|
3317
|
+
"newest_activity": "Zuletzt aktiv",
|
|
3318
|
+
"longest_wait": "Am längsten wartend",
|
|
3319
|
+
"severity_desc": "Schweregrad (höchster zuerst)",
|
|
3320
|
+
"impact_desc": "Geschätzte Wirkung (höchste zuerst)",
|
|
3321
|
+
"task_type": "Aufgabentyp"
|
|
3322
|
+
},
|
|
3323
|
+
"group": {
|
|
3324
|
+
"heading": "Gruppieren nach",
|
|
3325
|
+
"none": "Keine Gruppierung",
|
|
3326
|
+
"module": "Modul",
|
|
3327
|
+
"task_type": "Aufgabentyp",
|
|
3328
|
+
"initiative": "Initiative",
|
|
3329
|
+
"epic": "Epic",
|
|
3330
|
+
"blocking_reason": "Was benötigt wird",
|
|
3331
|
+
"catchAll": {
|
|
3332
|
+
"module": "Kein Modul",
|
|
3333
|
+
"task_type": "Kein Typ",
|
|
3334
|
+
"initiative": "Nicht in einer Initiative",
|
|
3335
|
+
"epic": "Nicht in einem Epic",
|
|
3336
|
+
"blocking_reason": "Nicht klassifiziert"
|
|
3337
|
+
}
|
|
3338
|
+
}
|
|
3264
3339
|
}
|
|
3265
3340
|
},
|
|
3266
3341
|
"contextAttachments": {
|
package/i18n/locales/en.json
CHANGED
|
@@ -569,6 +569,71 @@
|
|
|
569
569
|
"label": "Epic",
|
|
570
570
|
"activeCount": "{count} active",
|
|
571
571
|
"noTasksYet": "No tasks yet"
|
|
572
|
+
},
|
|
573
|
+
"lanes": {
|
|
574
|
+
"viewTitle": "Arrange",
|
|
575
|
+
"resetView": "Reset to defaults",
|
|
576
|
+
"notStarted": {
|
|
577
|
+
"label": "Not started",
|
|
578
|
+
"empty": "Nothing waiting to be picked up."
|
|
579
|
+
},
|
|
580
|
+
"inProgress": {
|
|
581
|
+
"label": "In progress",
|
|
582
|
+
"empty": "No runs in flight."
|
|
583
|
+
},
|
|
584
|
+
"needsYou": {
|
|
585
|
+
"label": "Needs you",
|
|
586
|
+
"empty": "Nothing is waiting on you."
|
|
587
|
+
},
|
|
588
|
+
"done": {
|
|
589
|
+
"label": "Done",
|
|
590
|
+
"empty": "Nothing finished yet.",
|
|
591
|
+
"hiddenByCap": "+{count} not shown",
|
|
592
|
+
"hiddenByAge": "+{count} beyond the retention window",
|
|
593
|
+
"undated": "{count} with no recorded date",
|
|
594
|
+
"allWithheld": "Finished tasks are counted here but not listed, per this board settings."
|
|
595
|
+
},
|
|
596
|
+
"reason": {
|
|
597
|
+
"unstarted": "Ready to start",
|
|
598
|
+
"dependencies": "Waiting on a dependency",
|
|
599
|
+
"running": "Running",
|
|
600
|
+
"backgroundReview": "Reviewing in the background",
|
|
601
|
+
"decision": "Decision needed",
|
|
602
|
+
"approval": "Approval needed",
|
|
603
|
+
"failed": "Run failed",
|
|
604
|
+
"budgetPaused": "Paused by the spend budget",
|
|
605
|
+
"prAwaitingMerge": "Pull request awaiting merge",
|
|
606
|
+
"parked": "Waiting on a human",
|
|
607
|
+
"unclassified": "Unrecognised status",
|
|
608
|
+
"merged": "Merged"
|
|
609
|
+
},
|
|
610
|
+
"sort": {
|
|
611
|
+
"heading": "Sort by",
|
|
612
|
+
"smart": "Recommended per lane",
|
|
613
|
+
"title": "Title (A–Z)",
|
|
614
|
+
"oldest_activity": "Quietest first",
|
|
615
|
+
"newest_activity": "Most recently active",
|
|
616
|
+
"longest_wait": "Longest waiting",
|
|
617
|
+
"severity_desc": "Severity (highest first)",
|
|
618
|
+
"impact_desc": "Estimated impact (highest first)",
|
|
619
|
+
"task_type": "Task type"
|
|
620
|
+
},
|
|
621
|
+
"group": {
|
|
622
|
+
"heading": "Group by",
|
|
623
|
+
"none": "No grouping",
|
|
624
|
+
"module": "Module",
|
|
625
|
+
"task_type": "Task type",
|
|
626
|
+
"initiative": "Initiative",
|
|
627
|
+
"epic": "Epic",
|
|
628
|
+
"blocking_reason": "What it needs",
|
|
629
|
+
"catchAll": {
|
|
630
|
+
"module": "No module",
|
|
631
|
+
"task_type": "No type",
|
|
632
|
+
"initiative": "Not in an initiative",
|
|
633
|
+
"epic": "Not in an epic",
|
|
634
|
+
"blocking_reason": "Unclassified"
|
|
635
|
+
}
|
|
636
|
+
}
|
|
572
637
|
}
|
|
573
638
|
},
|
|
574
639
|
"contextAttachments": {
|
|
@@ -1236,11 +1301,12 @@
|
|
|
1236
1301
|
"title": "Structure",
|
|
1237
1302
|
"hint": "Where this task lives in its service and which coding standards its agents follow.",
|
|
1238
1303
|
"module": "Module",
|
|
1239
|
-
"modulePlaceholder": "
|
|
1240
|
-
"moduleHint": "The service module this task belongs to
|
|
1304
|
+
"modulePlaceholder": "Pick or type a module",
|
|
1305
|
+
"moduleHint": "The service module this task belongs to; the board groups lanes by it. A module that doesn't exist yet is created when the task is implemented.",
|
|
1241
1306
|
"bestPractices": "Best practices",
|
|
1242
1307
|
"bestPracticesEmpty": "None. Agents follow their default guidance.",
|
|
1243
|
-
"bestPracticesHint": "Best-practice fragments folded into the prompts of this task's agents, on top of the service-level standards."
|
|
1308
|
+
"bestPracticesHint": "Best-practice fragments folded into the prompts of this task's agents, on top of the service-level standards.",
|
|
1309
|
+
"moduleNone": "No module"
|
|
1244
1310
|
},
|
|
1245
1311
|
"runSettings": {
|
|
1246
1312
|
"title": "Run settings",
|
|
@@ -3952,6 +4018,15 @@
|
|
|
3952
4018
|
"advisory": "Advisory (record, never park)",
|
|
3953
4019
|
"off": "Off (skip the check)"
|
|
3954
4020
|
}
|
|
4021
|
+
},
|
|
4022
|
+
"doneLane": {
|
|
4023
|
+
"heading": "Done lane",
|
|
4024
|
+
"body": "How much finished work each service frame's Done lane keeps in view. Both caps hide cards only: an aged-out task stays on the board, stays searchable, and stays in the lane's total.",
|
|
4025
|
+
"maxItems": "Cards shown",
|
|
4026
|
+
"zeroHint": "Finished tasks will be counted but never listed.",
|
|
4027
|
+
"ageToggle": "Also hide tasks completed long ago",
|
|
4028
|
+
"days": "Keep for (days)",
|
|
4029
|
+
"hidesOnlyHint": "Nothing is deleted. Tasks with no recorded completion date are never hidden by age."
|
|
3955
4030
|
}
|
|
3956
4031
|
},
|
|
3957
4032
|
"localModelEndpoints": {
|
package/i18n/locales/es.json
CHANGED
|
@@ -509,6 +509,71 @@
|
|
|
509
509
|
"label": "Épica",
|
|
510
510
|
"activeCount": "{count} activas",
|
|
511
511
|
"noTasksYet": "Aún no hay tareas"
|
|
512
|
+
},
|
|
513
|
+
"lanes": {
|
|
514
|
+
"viewTitle": "Organizar",
|
|
515
|
+
"resetView": "Restablecer los valores predeterminados",
|
|
516
|
+
"notStarted": {
|
|
517
|
+
"label": "Sin empezar",
|
|
518
|
+
"empty": "Nada esperando a que se tome."
|
|
519
|
+
},
|
|
520
|
+
"inProgress": {
|
|
521
|
+
"label": "En curso",
|
|
522
|
+
"empty": "No hay ejecuciones en marcha."
|
|
523
|
+
},
|
|
524
|
+
"needsYou": {
|
|
525
|
+
"label": "Te necesita",
|
|
526
|
+
"empty": "Nada espera por ti."
|
|
527
|
+
},
|
|
528
|
+
"done": {
|
|
529
|
+
"label": "Terminado",
|
|
530
|
+
"empty": "Aún no hay nada terminado.",
|
|
531
|
+
"hiddenByCap": "+{count} sin mostrar",
|
|
532
|
+
"hiddenByAge": "+{count} fuera del periodo de conservación",
|
|
533
|
+
"undated": "{count} sin fecha registrada",
|
|
534
|
+
"allWithheld": "Las tareas terminadas se cuentan aquí, pero no se listan, según los ajustes de este tablero."
|
|
535
|
+
},
|
|
536
|
+
"reason": {
|
|
537
|
+
"unstarted": "Lista para empezar",
|
|
538
|
+
"dependencies": "Esperando una dependencia",
|
|
539
|
+
"running": "En ejecución",
|
|
540
|
+
"backgroundReview": "Revisando en segundo plano",
|
|
541
|
+
"decision": "Se necesita una decisión",
|
|
542
|
+
"approval": "Se necesita aprobación",
|
|
543
|
+
"failed": "La ejecución falló",
|
|
544
|
+
"budgetPaused": "Pausada por el presupuesto de gasto",
|
|
545
|
+
"prAwaitingMerge": "Pull request pendiente de fusión",
|
|
546
|
+
"parked": "Esperando a una persona",
|
|
547
|
+
"unclassified": "Estado no reconocido",
|
|
548
|
+
"merged": "Fusionada"
|
|
549
|
+
},
|
|
550
|
+
"sort": {
|
|
551
|
+
"heading": "Ordenar por",
|
|
552
|
+
"smart": "Recomendado por columna",
|
|
553
|
+
"title": "Título (A–Z)",
|
|
554
|
+
"oldest_activity": "Las más silenciosas primero",
|
|
555
|
+
"newest_activity": "Actividad más reciente",
|
|
556
|
+
"longest_wait": "Las que esperan más tiempo",
|
|
557
|
+
"severity_desc": "Gravedad (mayor primero)",
|
|
558
|
+
"impact_desc": "Impacto estimado (mayor primero)",
|
|
559
|
+
"task_type": "Tipo de tarea"
|
|
560
|
+
},
|
|
561
|
+
"group": {
|
|
562
|
+
"heading": "Agrupar por",
|
|
563
|
+
"none": "Sin agrupar",
|
|
564
|
+
"module": "Módulo",
|
|
565
|
+
"task_type": "Tipo de tarea",
|
|
566
|
+
"initiative": "Iniciativa",
|
|
567
|
+
"epic": "Épica",
|
|
568
|
+
"blocking_reason": "Qué necesita",
|
|
569
|
+
"catchAll": {
|
|
570
|
+
"module": "Sin módulo",
|
|
571
|
+
"task_type": "Sin tipo",
|
|
572
|
+
"initiative": "Fuera de una iniciativa",
|
|
573
|
+
"epic": "Fuera de una épica",
|
|
574
|
+
"blocking_reason": "Sin clasificar"
|
|
575
|
+
}
|
|
576
|
+
}
|
|
512
577
|
}
|
|
513
578
|
},
|
|
514
579
|
"contextAttachments": {
|
|
@@ -1143,11 +1208,12 @@
|
|
|
1143
1208
|
"title": "Estructura",
|
|
1144
1209
|
"hint": "Dónde vive esta tarea dentro de su servicio y qué estándares de código siguen sus agentes.",
|
|
1145
1210
|
"module": "Módulo",
|
|
1146
|
-
"modulePlaceholder": "
|
|
1147
|
-
"moduleHint": "El módulo del servicio al que pertenece esta tarea
|
|
1211
|
+
"modulePlaceholder": "Elige o escribe un módulo",
|
|
1212
|
+
"moduleHint": "El módulo del servicio al que pertenece esta tarea; el tablero agrupa las columnas por él. Un módulo que aún no existe se crea cuando se implementa la tarea.",
|
|
1148
1213
|
"bestPractices": "Buenas prácticas",
|
|
1149
1214
|
"bestPracticesEmpty": "Ninguna. Los agentes siguen su guía predeterminada.",
|
|
1150
|
-
"bestPracticesHint": "Fragmentos de buenas prácticas incorporados a los prompts de los agentes de esta tarea, además de los estándares a nivel de servicio."
|
|
1215
|
+
"bestPracticesHint": "Fragmentos de buenas prácticas incorporados a los prompts de los agentes de esta tarea, además de los estándares a nivel de servicio.",
|
|
1216
|
+
"moduleNone": "Sin módulo"
|
|
1151
1217
|
},
|
|
1152
1218
|
"runSettings": {
|
|
1153
1219
|
"title": "Ajustes de ejecución",
|
|
@@ -3664,6 +3730,15 @@
|
|
|
3664
3730
|
"advisory": "Aviso (registrar, nunca detener)",
|
|
3665
3731
|
"off": "Desactivado (omitir la comprobación)"
|
|
3666
3732
|
}
|
|
3733
|
+
},
|
|
3734
|
+
"doneLane": {
|
|
3735
|
+
"heading": "Columna «Terminado»",
|
|
3736
|
+
"body": "Cuánto trabajo terminado mantiene a la vista la columna «Terminado» de cada servicio. Ambos límites solo ocultan tarjetas: una tarea oculta sigue en el tablero, sigue siendo buscable y sigue contando en el total de la columna.",
|
|
3737
|
+
"maxItems": "Tarjetas mostradas",
|
|
3738
|
+
"zeroHint": "Las tareas terminadas se contarán, pero nunca se listarán.",
|
|
3739
|
+
"ageToggle": "Ocultar también las tareas terminadas hace tiempo",
|
|
3740
|
+
"days": "Conservar (días)",
|
|
3741
|
+
"hidesOnlyHint": "No se elimina nada. Las tareas sin fecha de finalización registrada nunca se ocultan por antigüedad."
|
|
3667
3742
|
}
|
|
3668
3743
|
},
|
|
3669
3744
|
"localModelEndpoints": {
|
package/i18n/locales/fr.json
CHANGED
|
@@ -509,6 +509,71 @@
|
|
|
509
509
|
"label": "Épopée",
|
|
510
510
|
"activeCount": "{count} actives",
|
|
511
511
|
"noTasksYet": "Pas encore de tâches"
|
|
512
|
+
},
|
|
513
|
+
"lanes": {
|
|
514
|
+
"viewTitle": "Organiser",
|
|
515
|
+
"resetView": "Rétablir les valeurs par défaut",
|
|
516
|
+
"notStarted": {
|
|
517
|
+
"label": "Pas commencé",
|
|
518
|
+
"empty": "Rien n'attend d'être pris en charge."
|
|
519
|
+
},
|
|
520
|
+
"inProgress": {
|
|
521
|
+
"label": "En cours",
|
|
522
|
+
"empty": "Aucune exécution en cours."
|
|
523
|
+
},
|
|
524
|
+
"needsYou": {
|
|
525
|
+
"label": "Vous attend",
|
|
526
|
+
"empty": "Rien ne vous attend."
|
|
527
|
+
},
|
|
528
|
+
"done": {
|
|
529
|
+
"label": "Terminé",
|
|
530
|
+
"empty": "Rien de terminé pour le moment.",
|
|
531
|
+
"hiddenByCap": "+{count} non affichées",
|
|
532
|
+
"hiddenByAge": "+{count} au-delà de la période de conservation",
|
|
533
|
+
"undated": "{count} sans date enregistrée",
|
|
534
|
+
"allWithheld": "Les tâches terminées sont comptées ici mais pas listées, conformément aux réglages de ce tableau."
|
|
535
|
+
},
|
|
536
|
+
"reason": {
|
|
537
|
+
"unstarted": "Prête à démarrer",
|
|
538
|
+
"dependencies": "En attente d’une dépendance",
|
|
539
|
+
"running": "En cours d’exécution",
|
|
540
|
+
"backgroundReview": "Relecture en arrière-plan",
|
|
541
|
+
"decision": "Décision requise",
|
|
542
|
+
"approval": "Approbation requise",
|
|
543
|
+
"failed": "Exécution en échec",
|
|
544
|
+
"budgetPaused": "Mise en pause par le budget de dépenses",
|
|
545
|
+
"prAwaitingMerge": "Pull request en attente de fusion",
|
|
546
|
+
"parked": "En attente d’une personne",
|
|
547
|
+
"unclassified": "Statut non reconnu",
|
|
548
|
+
"merged": "Fusionnée"
|
|
549
|
+
},
|
|
550
|
+
"sort": {
|
|
551
|
+
"heading": "Trier par",
|
|
552
|
+
"smart": "Recommandé par colonne",
|
|
553
|
+
"title": "Titre (A–Z)",
|
|
554
|
+
"oldest_activity": "Les plus silencieuses d’abord",
|
|
555
|
+
"newest_activity": "Activité la plus récente",
|
|
556
|
+
"longest_wait": "En attente depuis le plus longtemps",
|
|
557
|
+
"severity_desc": "Gravité (la plus élevée d’abord)",
|
|
558
|
+
"impact_desc": "Impact estimé (le plus élevé d’abord)",
|
|
559
|
+
"task_type": "Type de tâche"
|
|
560
|
+
},
|
|
561
|
+
"group": {
|
|
562
|
+
"heading": "Grouper par",
|
|
563
|
+
"none": "Aucun groupement",
|
|
564
|
+
"module": "Module",
|
|
565
|
+
"task_type": "Type de tâche",
|
|
566
|
+
"initiative": "Initiative",
|
|
567
|
+
"epic": "Épopée",
|
|
568
|
+
"blocking_reason": "Ce qu’il faut",
|
|
569
|
+
"catchAll": {
|
|
570
|
+
"module": "Aucun module",
|
|
571
|
+
"task_type": "Aucun type",
|
|
572
|
+
"initiative": "Hors initiative",
|
|
573
|
+
"epic": "Hors épopée",
|
|
574
|
+
"blocking_reason": "Non classé"
|
|
575
|
+
}
|
|
576
|
+
}
|
|
512
577
|
}
|
|
513
578
|
},
|
|
514
579
|
"contextAttachments": {
|
|
@@ -1143,11 +1208,12 @@
|
|
|
1143
1208
|
"title": "Structure",
|
|
1144
1209
|
"hint": "Où vit cette tâche dans son service et quelles normes de code ses agents suivent.",
|
|
1145
1210
|
"module": "Module",
|
|
1146
|
-
"modulePlaceholder": "
|
|
1147
|
-
"moduleHint": "Le module du service auquel cette tâche
|
|
1211
|
+
"modulePlaceholder": "Choisissez ou saisissez un module",
|
|
1212
|
+
"moduleHint": "Le module du service auquel appartient cette tâche ; le tableau groupe les colonnes par module. Un module qui n’existe pas encore est créé lors de l’implémentation de la tâche.",
|
|
1148
1213
|
"bestPractices": "Bonnes pratiques",
|
|
1149
1214
|
"bestPracticesEmpty": "Aucune. Les agents suivent leurs consignes par défaut.",
|
|
1150
|
-
"bestPracticesHint": "Fragments de bonnes pratiques ajoutés aux prompts des agents de cette tâche, en plus des normes au niveau du service."
|
|
1215
|
+
"bestPracticesHint": "Fragments de bonnes pratiques ajoutés aux prompts des agents de cette tâche, en plus des normes au niveau du service.",
|
|
1216
|
+
"moduleNone": "Aucun module"
|
|
1151
1217
|
},
|
|
1152
1218
|
"runSettings": {
|
|
1153
1219
|
"title": "Paramètres d'exécution",
|
|
@@ -3664,6 +3730,15 @@
|
|
|
3664
3730
|
"advisory": "Indicatif (enregistrer, jamais mettre en pause)",
|
|
3665
3731
|
"off": "Désactivé (ignorer la vérification)"
|
|
3666
3732
|
}
|
|
3733
|
+
},
|
|
3734
|
+
"doneLane": {
|
|
3735
|
+
"heading": "Colonne « Terminé »",
|
|
3736
|
+
"body": "La quantité de travail terminé que la colonne « Terminé » de chaque service garde visible. Les deux limites masquent seulement des cartes : une tâche masquée reste sur le tableau, reste trouvable et reste comptée dans le total de la colonne.",
|
|
3737
|
+
"maxItems": "Cartes affichées",
|
|
3738
|
+
"zeroHint": "Les tâches terminées seront comptées mais jamais listées.",
|
|
3739
|
+
"ageToggle": "Masquer aussi les tâches terminées depuis longtemps",
|
|
3740
|
+
"days": "Conserver (jours)",
|
|
3741
|
+
"hidesOnlyHint": "Rien n’est supprimé. Les tâches sans date d’achèvement enregistrée ne sont jamais masquées en raison de leur ancienneté."
|
|
3667
3742
|
}
|
|
3668
3743
|
},
|
|
3669
3744
|
"localModelEndpoints": {
|
package/i18n/locales/he.json
CHANGED
|
@@ -509,6 +509,71 @@
|
|
|
509
509
|
"label": "אפיק",
|
|
510
510
|
"activeCount": "{count} פעילים",
|
|
511
511
|
"noTasksYet": "אין עדיין משימות"
|
|
512
|
+
},
|
|
513
|
+
"lanes": {
|
|
514
|
+
"viewTitle": "סידור",
|
|
515
|
+
"resetView": "איפוס לברירת המחדל",
|
|
516
|
+
"notStarted": {
|
|
517
|
+
"label": "לא התחיל",
|
|
518
|
+
"empty": "אין דבר שממתין שיטופל."
|
|
519
|
+
},
|
|
520
|
+
"inProgress": {
|
|
521
|
+
"label": "בתהליך",
|
|
522
|
+
"empty": "אין הרצות פעילות."
|
|
523
|
+
},
|
|
524
|
+
"needsYou": {
|
|
525
|
+
"label": "ממתין לך",
|
|
526
|
+
"empty": "שום דבר לא ממתין לך."
|
|
527
|
+
},
|
|
528
|
+
"done": {
|
|
529
|
+
"label": "הושלם",
|
|
530
|
+
"empty": "עדיין לא הושלם דבר.",
|
|
531
|
+
"hiddenByCap": "+{count} לא מוצגות",
|
|
532
|
+
"hiddenByAge": "+{count} מחוץ לחלון השמירה",
|
|
533
|
+
"undated": "{count} ללא תאריך מתועד",
|
|
534
|
+
"allWithheld": "משימות שהושלמו נספרות כאן אך אינן מוצגות, בהתאם להגדרות הלוח."
|
|
535
|
+
},
|
|
536
|
+
"reason": {
|
|
537
|
+
"unstarted": "מוכן להתחלה",
|
|
538
|
+
"dependencies": "ממתין לתלות",
|
|
539
|
+
"running": "רץ",
|
|
540
|
+
"backgroundReview": "סקירה ברקע",
|
|
541
|
+
"decision": "נדרשת החלטה",
|
|
542
|
+
"approval": "נדרש אישור",
|
|
543
|
+
"failed": "ההרצה נכשלה",
|
|
544
|
+
"budgetPaused": "הושהה בגלל תקציב ההוצאות",
|
|
545
|
+
"prAwaitingMerge": "בקשת משיכה ממתינה למיזוג",
|
|
546
|
+
"parked": "ממתין לאדם",
|
|
547
|
+
"unclassified": "מצב לא מזוהה",
|
|
548
|
+
"merged": "מוזג"
|
|
549
|
+
},
|
|
550
|
+
"sort": {
|
|
551
|
+
"heading": "מיון לפי",
|
|
552
|
+
"smart": "מומלץ לכל עמודה",
|
|
553
|
+
"title": "כותרת (א׳–ת׳)",
|
|
554
|
+
"oldest_activity": "השקטים תחילה",
|
|
555
|
+
"newest_activity": "הפעילים לאחרונה",
|
|
556
|
+
"longest_wait": "הממתינים הכי הרבה זמן",
|
|
557
|
+
"severity_desc": "חומרה (הגבוהה תחילה)",
|
|
558
|
+
"impact_desc": "השפעה משוערת (הגבוהה תחילה)",
|
|
559
|
+
"task_type": "סוג משימה"
|
|
560
|
+
},
|
|
561
|
+
"group": {
|
|
562
|
+
"heading": "קיבוץ לפי",
|
|
563
|
+
"none": "בלי קיבוץ",
|
|
564
|
+
"module": "מודול",
|
|
565
|
+
"task_type": "סוג משימה",
|
|
566
|
+
"initiative": "יוזמה",
|
|
567
|
+
"epic": "אפוס",
|
|
568
|
+
"blocking_reason": "מה נדרש",
|
|
569
|
+
"catchAll": {
|
|
570
|
+
"module": "ללא מודול",
|
|
571
|
+
"task_type": "ללא סוג",
|
|
572
|
+
"initiative": "לא ביוזמה",
|
|
573
|
+
"epic": "לא באפוס",
|
|
574
|
+
"blocking_reason": "לא מסווג"
|
|
575
|
+
}
|
|
576
|
+
}
|
|
512
577
|
}
|
|
513
578
|
},
|
|
514
579
|
"contextAttachments": {
|
|
@@ -1143,11 +1208,12 @@
|
|
|
1143
1208
|
"title": "מבנה",
|
|
1144
1209
|
"hint": "היכן משימה זו נמצאת בשירות שלה ואילו תקני קוד הסוכנים שלה מיישמים.",
|
|
1145
1210
|
"module": "מודול",
|
|
1146
|
-
"modulePlaceholder": "
|
|
1147
|
-
"moduleHint": "מודול השירות
|
|
1211
|
+
"modulePlaceholder": "בחר או הקלד מודול",
|
|
1212
|
+
"moduleHint": "מודול השירות שהמשימה שייכת אליו; הלוח מקבץ את העמודות לפיו. מודול שאינו קיים עדיין נוצר כשהמשימה מיושמת.",
|
|
1148
1213
|
"bestPractices": "מומלצות עבודה",
|
|
1149
1214
|
"bestPracticesEmpty": "אין. הסוכנים פועלים לפי ההנחיות המוגדרות כברירת מחדל.",
|
|
1150
|
-
"bestPracticesHint": "פרגמנטים של שיטות עבודה מומלצות שמתווספים לפרומפטים של סוכני משימה זו, בנוסף לתקנים ברמת השירות."
|
|
1215
|
+
"bestPracticesHint": "פרגמנטים של שיטות עבודה מומלצות שמתווספים לפרומפטים של סוכני משימה זו, בנוסף לתקנים ברמת השירות.",
|
|
1216
|
+
"moduleNone": "ללא מודול"
|
|
1151
1217
|
},
|
|
1152
1218
|
"runSettings": {
|
|
1153
1219
|
"title": "הגדרות הרצה",
|
|
@@ -3806,6 +3872,15 @@
|
|
|
3806
3872
|
"advisory": "המלצה (תיעוד, בלי עצירה)",
|
|
3807
3873
|
"off": "כבוי (דילוג על הבדיקה)"
|
|
3808
3874
|
}
|
|
3875
|
+
},
|
|
3876
|
+
"doneLane": {
|
|
3877
|
+
"heading": "עמודת «הושלם»",
|
|
3878
|
+
"body": "כמה עבודה שהושלמה נשארת גלויה בעמודת «הושלם» של כל שירות. שתי המגבלות מסתירות כרטיסים בלבד: משימה שהוסתרה נשארת בלוח, נשארת ניתנת לחיפוש ונשארת בסך הכול של העמודה.",
|
|
3879
|
+
"maxItems": "כרטיסים מוצגים",
|
|
3880
|
+
"zeroHint": "משימות שהושלמו ייספרו אך לא יוצגו לעולם.",
|
|
3881
|
+
"ageToggle": "להסתיר גם משימות שהושלמו מזמן",
|
|
3882
|
+
"days": "לשמור (ימים)",
|
|
3883
|
+
"hidesOnlyHint": "שום דבר לא נמחק. משימות ללא תאריך השלמה מתועד לא מוסתרות לפי גיל."
|
|
3809
3884
|
}
|
|
3810
3885
|
},
|
|
3811
3886
|
"localModelEndpoints": {
|
package/i18n/locales/it.json
CHANGED
|
@@ -1163,6 +1163,15 @@
|
|
|
1163
1163
|
"advisory": "Segnalazione (registra, mai in pausa)",
|
|
1164
1164
|
"off": "Disattivato (salta il controllo)"
|
|
1165
1165
|
}
|
|
1166
|
+
},
|
|
1167
|
+
"doneLane": {
|
|
1168
|
+
"heading": "Colonna «Completato»",
|
|
1169
|
+
"body": "Quanto lavoro completato la colonna «Completato» di ogni servizio mantiene in vista. Entrambi i limiti nascondono solo le schede: un’attività nascosta resta sulla board, resta ricercabile e resta nel totale della colonna.",
|
|
1170
|
+
"maxItems": "Schede mostrate",
|
|
1171
|
+
"zeroHint": "Le attività completate saranno conteggiate ma mai elencate.",
|
|
1172
|
+
"ageToggle": "Nascondi anche le attività completate da tempo",
|
|
1173
|
+
"days": "Conserva (giorni)",
|
|
1174
|
+
"hidesOnlyHint": "Non viene eliminato nulla. Le attività senza data di completamento registrata non vengono mai nascoste per anzianità."
|
|
1166
1175
|
}
|
|
1167
1176
|
},
|
|
1168
1177
|
"localModelEndpoints": {
|
|
@@ -1791,11 +1800,12 @@
|
|
|
1791
1800
|
"title": "Struttura",
|
|
1792
1801
|
"hint": "Dove risiede questa attivita' nel suo servizio e quali standard di coding seguono i suoi agenti.",
|
|
1793
1802
|
"module": "Modulo",
|
|
1794
|
-
"modulePlaceholder": "
|
|
1795
|
-
"moduleHint": "Il modulo del servizio a cui appartiene questa
|
|
1803
|
+
"modulePlaceholder": "Scegli o digita un modulo",
|
|
1804
|
+
"moduleHint": "Il modulo del servizio a cui appartiene questa attività; la board raggruppa le colonne in base a esso. Un modulo che non esiste ancora viene creato quando l’attività viene implementata.",
|
|
1796
1805
|
"bestPractices": "Best practice",
|
|
1797
1806
|
"bestPracticesEmpty": "Nessuna. Gli agenti seguono le loro linee guida predefinite.",
|
|
1798
|
-
"bestPracticesHint": "Frammenti di best practice integrati nei prompt degli agenti di questa attivita', in aggiunta agli standard a livello di servizio."
|
|
1807
|
+
"bestPracticesHint": "Frammenti di best practice integrati nei prompt degli agenti di questa attivita', in aggiunta agli standard a livello di servizio.",
|
|
1808
|
+
"moduleNone": "Nessun modulo"
|
|
1799
1809
|
},
|
|
1800
1810
|
"runSettings": {
|
|
1801
1811
|
"title": "Impostazioni di esecuzione",
|
|
@@ -3261,6 +3271,71 @@
|
|
|
3261
3271
|
"label": "Epic",
|
|
3262
3272
|
"activeCount": "{count} attive",
|
|
3263
3273
|
"noTasksYet": "Ancora nessuna attività"
|
|
3274
|
+
},
|
|
3275
|
+
"lanes": {
|
|
3276
|
+
"viewTitle": "Disponi",
|
|
3277
|
+
"resetView": "Ripristina i valori predefiniti",
|
|
3278
|
+
"notStarted": {
|
|
3279
|
+
"label": "Non iniziato",
|
|
3280
|
+
"empty": "Non c’è nulla in attesa di essere preso."
|
|
3281
|
+
},
|
|
3282
|
+
"inProgress": {
|
|
3283
|
+
"label": "In corso",
|
|
3284
|
+
"empty": "Nessuna esecuzione in corso."
|
|
3285
|
+
},
|
|
3286
|
+
"needsYou": {
|
|
3287
|
+
"label": "Richiede te",
|
|
3288
|
+
"empty": "Non c’è nulla in attesa di te."
|
|
3289
|
+
},
|
|
3290
|
+
"done": {
|
|
3291
|
+
"label": "Completato",
|
|
3292
|
+
"empty": "Ancora nulla di completato.",
|
|
3293
|
+
"hiddenByCap": "+{count} non mostrate",
|
|
3294
|
+
"hiddenByAge": "+{count} oltre la finestra di conservazione",
|
|
3295
|
+
"undated": "{count} senza data registrata",
|
|
3296
|
+
"allWithheld": "Le attività completate vengono conteggiate qui ma non elencate, secondo le impostazioni di questa board."
|
|
3297
|
+
},
|
|
3298
|
+
"reason": {
|
|
3299
|
+
"unstarted": "Pronta per iniziare",
|
|
3300
|
+
"dependencies": "In attesa di una dipendenza",
|
|
3301
|
+
"running": "In esecuzione",
|
|
3302
|
+
"backgroundReview": "Revisione in background",
|
|
3303
|
+
"decision": "Serve una decisione",
|
|
3304
|
+
"approval": "Serve un’approvazione",
|
|
3305
|
+
"failed": "Esecuzione fallita",
|
|
3306
|
+
"budgetPaused": "In pausa per il budget di spesa",
|
|
3307
|
+
"prAwaitingMerge": "Pull request in attesa di merge",
|
|
3308
|
+
"parked": "In attesa di una persona",
|
|
3309
|
+
"unclassified": "Stato non riconosciuto",
|
|
3310
|
+
"merged": "Unita"
|
|
3311
|
+
},
|
|
3312
|
+
"sort": {
|
|
3313
|
+
"heading": "Ordina per",
|
|
3314
|
+
"smart": "Consigliato per colonna",
|
|
3315
|
+
"title": "Titolo (A–Z)",
|
|
3316
|
+
"oldest_activity": "Le più silenziose per prime",
|
|
3317
|
+
"newest_activity": "Attività più recente",
|
|
3318
|
+
"longest_wait": "In attesa da più tempo",
|
|
3319
|
+
"severity_desc": "Gravità (dalla più alta)",
|
|
3320
|
+
"impact_desc": "Impatto stimato (dal più alto)",
|
|
3321
|
+
"task_type": "Tipo di attività"
|
|
3322
|
+
},
|
|
3323
|
+
"group": {
|
|
3324
|
+
"heading": "Raggruppa per",
|
|
3325
|
+
"none": "Nessun raggruppamento",
|
|
3326
|
+
"module": "Modulo",
|
|
3327
|
+
"task_type": "Tipo di attività",
|
|
3328
|
+
"initiative": "Iniziativa",
|
|
3329
|
+
"epic": "Epica",
|
|
3330
|
+
"blocking_reason": "Cosa serve",
|
|
3331
|
+
"catchAll": {
|
|
3332
|
+
"module": "Nessun modulo",
|
|
3333
|
+
"task_type": "Nessun tipo",
|
|
3334
|
+
"initiative": "Fuori da un’iniziativa",
|
|
3335
|
+
"epic": "Fuori da un’epica",
|
|
3336
|
+
"blocking_reason": "Non classificato"
|
|
3337
|
+
}
|
|
3338
|
+
}
|
|
3264
3339
|
}
|
|
3265
3340
|
},
|
|
3266
3341
|
"contextAttachments": {
|