@cat-factory/app 0.70.0 → 0.70.1
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/AgentFailureCard.vue +3 -0
- package/app/components/board/nodes/BlockNode.vue +10 -2
- package/app/components/board/nodes/TaskCard.vue +12 -1
- package/app/components/common/ConfirmDialog.vue +59 -0
- package/app/components/common/EmptyState.vue +35 -0
- package/app/components/common/KeyboardShortcutsHelp.vue +48 -0
- package/app/components/documents/ContextDocumentPicker.vue +8 -4
- package/app/components/fragments/FragmentLibraryManager.vue +10 -0
- package/app/components/github/GitHubPanel.vue +9 -0
- package/app/components/layout/BoardSwitcher.vue +11 -0
- package/app/components/layout/CommandBar.vue +8 -0
- package/app/components/layout/NotificationsInbox.vue +11 -0
- package/app/components/panels/InspectorPanel.vue +5 -13
- package/app/components/panels/StepContainerStatus.vue +37 -0
- package/app/components/panels/inspector/TaskDependencies.vue +18 -4
- package/app/components/panels/inspector/TaskExecution.vue +24 -0
- package/app/components/pipeline/PipelineBuilder.vue +13 -1
- package/app/components/providers/PersonalSubscriptionSection.vue +9 -0
- package/app/components/providers/VendorCredentialsModal.vue +12 -3
- package/app/components/settings/LocalModelEndpointsPanel.vue +11 -0
- package/app/components/settings/MergeThresholdsPanel.vue +9 -0
- package/app/components/settings/ModelConfigurationPanel.vue +9 -0
- package/app/components/settings/UserSecretsSection.vue +11 -0
- package/app/components/slack/SlackPanel.vue +9 -0
- package/app/components/tasks/ContextIssuePicker.vue +8 -4
- package/app/composables/useBlockDeletion.ts +63 -0
- package/app/composables/useConfirm.ts +63 -0
- package/app/composables/useKeyboardShortcuts.ts +76 -0
- package/app/pages/index.vue +8 -0
- package/app/stores/agentRuns.spec.ts +56 -0
- package/app/stores/agentRuns.ts +22 -4
- package/app/stores/ui.ts +16 -0
- package/i18n/locales/en.json +103 -5
- package/i18n/locales/es.json +107 -9
- package/i18n/locales/fr.json +107 -9
- package/i18n/locales/he.json +107 -9
- package/i18n/locales/ja.json +107 -9
- package/i18n/locales/pl.json +107 -9
- package/i18n/locales/tr.json +107 -9
- package/i18n/locales/uk.json +107 -9
- package/package.json +1 -1
package/i18n/locales/en.json
CHANGED
|
@@ -13,6 +13,13 @@
|
|
|
13
13
|
"cancel": "Cancel",
|
|
14
14
|
"retry": "Retry",
|
|
15
15
|
"copy": "Copy",
|
|
16
|
+
"copied": "Copied to clipboard",
|
|
17
|
+
"delete": "Delete",
|
|
18
|
+
"remove": "Remove",
|
|
19
|
+
"confirm": {
|
|
20
|
+
"defaultTitle": "Are you sure?",
|
|
21
|
+
"confirm": "Confirm"
|
|
22
|
+
},
|
|
16
23
|
"block": "Block",
|
|
17
24
|
"@block": {
|
|
18
25
|
"description": "Generic fallback NOUN for a board item whose title is unknown (a service / module / task node). Not the verb 'to block'."
|
|
@@ -21,7 +28,9 @@
|
|
|
21
28
|
"close": "Close",
|
|
22
29
|
"@close": {
|
|
23
30
|
"description": "Verb meaning dismiss / shut (a panel, drawer, dialog), NOT the adjective 'near'. Used as an aria-label on close affordances - translate as the imperative verb."
|
|
24
|
-
}
|
|
31
|
+
},
|
|
32
|
+
"disconnect": "Disconnect",
|
|
33
|
+
"copyFailed": "Couldn't copy to clipboard"
|
|
25
34
|
},
|
|
26
35
|
"nav": {
|
|
27
36
|
"menu": "Navigation menu",
|
|
@@ -250,6 +259,10 @@
|
|
|
250
259
|
"blockedByDependenciesTitle": "Blocked by dependencies",
|
|
251
260
|
"noPipelineTitle": "No pipeline defined",
|
|
252
261
|
"noPipelineBody": "Create one in the builder first.",
|
|
262
|
+
"startedToast": {
|
|
263
|
+
"title": "Run started",
|
|
264
|
+
"body": "Running \"{name}\"."
|
|
265
|
+
},
|
|
253
266
|
"pr": "PR",
|
|
254
267
|
"prNumber": "PR #{number}",
|
|
255
268
|
"openPrOnGithub": "Open {pr} on GitHub",
|
|
@@ -359,6 +372,10 @@
|
|
|
359
372
|
"step2": "Open the credentials file Codex wrote at ~/.codex/auth.json (on Windows %USERPROFILE%\\.codex\\auth.json).",
|
|
360
373
|
"step3": "Copy the entire contents of auth.json, paste it below, and choose a personal password to protect it."
|
|
361
374
|
}
|
|
375
|
+
},
|
|
376
|
+
"confirmDisconnect": {
|
|
377
|
+
"title": "Disconnect this subscription?",
|
|
378
|
+
"body": "Your \"{vendor}\" subscription will be disconnected. This can't be undone."
|
|
362
379
|
}
|
|
363
380
|
},
|
|
364
381
|
"inspector": {
|
|
@@ -551,7 +568,11 @@
|
|
|
551
568
|
"merged": "Merged",
|
|
552
569
|
"notMerged": "Not merged yet",
|
|
553
570
|
"empty": "No dependencies. Can run any time.",
|
|
554
|
-
"blocked": "Blocked until dependencies merge."
|
|
571
|
+
"blocked": "Blocked until dependencies merge.",
|
|
572
|
+
"confirmRemove": {
|
|
573
|
+
"title": "Remove this dependency?",
|
|
574
|
+
"body": "This task will no longer wait for \"{name}\"."
|
|
575
|
+
}
|
|
555
576
|
},
|
|
556
577
|
"estimate": {
|
|
557
578
|
"title": "Estimate",
|
|
@@ -565,6 +586,10 @@
|
|
|
565
586
|
"reviewing": "Re-reviewing…",
|
|
566
587
|
"recommending": "Recommending…"
|
|
567
588
|
},
|
|
589
|
+
"empty": {
|
|
590
|
+
"title": "No runs yet",
|
|
591
|
+
"body": "Start a pipeline to see execution history here."
|
|
592
|
+
},
|
|
568
593
|
"prNumber": "PR #{number}",
|
|
569
594
|
"pullRequest": "Pull request",
|
|
570
595
|
"stepState": {
|
|
@@ -706,7 +731,9 @@
|
|
|
706
731
|
"done": "Finishing up"
|
|
707
732
|
},
|
|
708
733
|
"id": "Container",
|
|
709
|
-
"url": "Address"
|
|
734
|
+
"url": "Address",
|
|
735
|
+
"copyId": "Copy container id",
|
|
736
|
+
"copyUrl": "Copy address"
|
|
710
737
|
},
|
|
711
738
|
"subtasks": "Subtasks · {completed}/{total}",
|
|
712
739
|
"standardsApplied": "Standards applied",
|
|
@@ -779,6 +806,24 @@
|
|
|
779
806
|
"deleteTask": "Delete task",
|
|
780
807
|
"deleteModule": "Delete module",
|
|
781
808
|
"deleteService": "Delete service",
|
|
809
|
+
"confirmDelete": {
|
|
810
|
+
"task": {
|
|
811
|
+
"title": "Delete this task?",
|
|
812
|
+
"body": "\"{name}\" and its run history will be removed. This can't be undone."
|
|
813
|
+
},
|
|
814
|
+
"module": {
|
|
815
|
+
"title": "Delete this module?",
|
|
816
|
+
"body": "\"{name}\" and everything inside it will be removed. This can't be undone."
|
|
817
|
+
},
|
|
818
|
+
"service": {
|
|
819
|
+
"title": "Delete this service?",
|
|
820
|
+
"body": "\"{name}\" and everything inside it will be removed. This can't be undone."
|
|
821
|
+
},
|
|
822
|
+
"recurring": {
|
|
823
|
+
"title": "Delete this recurring pipeline?",
|
|
824
|
+
"body": "\"{name}\", its schedule and its run history will be removed. This can't be undone."
|
|
825
|
+
}
|
|
826
|
+
},
|
|
782
827
|
"titlePlaceholder": "Title…",
|
|
783
828
|
"reworkedRequirements": "Reworked requirements",
|
|
784
829
|
"agentStepsUseDocument": "Agent steps use this document.",
|
|
@@ -1103,6 +1148,10 @@
|
|
|
1103
1148
|
"openBoardFailed": "Could not open board",
|
|
1104
1149
|
"boardDeleted": "Board deleted",
|
|
1105
1150
|
"deleteBoardFailed": "Could not delete board"
|
|
1151
|
+
},
|
|
1152
|
+
"confirmDelete": {
|
|
1153
|
+
"title": "Delete this board?",
|
|
1154
|
+
"body": "\"{name}\" and everything in it will be removed. This can't be undone."
|
|
1106
1155
|
}
|
|
1107
1156
|
},
|
|
1108
1157
|
"notifications": {
|
|
@@ -1110,6 +1159,10 @@
|
|
|
1110
1159
|
"overdue": "Overdue",
|
|
1111
1160
|
"openPr": "Open PR",
|
|
1112
1161
|
"dismiss": "Dismiss",
|
|
1162
|
+
"toast": {
|
|
1163
|
+
"acted": "Marked as handled",
|
|
1164
|
+
"dismissed": "Dismissed"
|
|
1165
|
+
},
|
|
1113
1166
|
"action": {
|
|
1114
1167
|
"merge_review": "Merge",
|
|
1115
1168
|
"pipeline_complete": "Confirm & merge",
|
|
@@ -1223,7 +1276,8 @@
|
|
|
1223
1276
|
"serviceFragmentDefaults": "Default service best practices",
|
|
1224
1277
|
"accountSettings": "Account settings",
|
|
1225
1278
|
"localModels": "My local runners",
|
|
1226
|
-
"sandbox": "Open Sandbox"
|
|
1279
|
+
"sandbox": "Open Sandbox",
|
|
1280
|
+
"shortcuts": "Keyboard shortcuts"
|
|
1227
1281
|
},
|
|
1228
1282
|
"keywords": {
|
|
1229
1283
|
"newPipeline": "pipeline agents chain",
|
|
@@ -1242,9 +1296,17 @@
|
|
|
1242
1296
|
"serviceFragmentDefaults": "fragment best practice guideline service default code-aware",
|
|
1243
1297
|
"accountSettings": "account team members roles invitations email api keys fragment best practice library context organization personal",
|
|
1244
1298
|
"localModels": "local model runner ollama lm studio llamacpp vllm endpoint",
|
|
1245
|
-
"sandbox": "sandbox prompt model test experiment judge fixture benchmark evaluate"
|
|
1299
|
+
"sandbox": "sandbox prompt model test experiment judge fixture benchmark evaluate",
|
|
1300
|
+
"shortcuts": "keyboard shortcuts keys hotkeys cheatsheet help"
|
|
1246
1301
|
}
|
|
1247
1302
|
},
|
|
1303
|
+
"shortcuts": {
|
|
1304
|
+
"title": "Keyboard shortcuts",
|
|
1305
|
+
"commandBar": "Open the command bar",
|
|
1306
|
+
"deselect": "Deselect / close the inspector",
|
|
1307
|
+
"deleteBlock": "Delete the selected block",
|
|
1308
|
+
"help": "Show this cheatsheet"
|
|
1309
|
+
},
|
|
1248
1310
|
"integrationsHub": {
|
|
1249
1311
|
"title": "Integrations",
|
|
1250
1312
|
"intro": "Connect and manage the external systems this workspace can link in.",
|
|
@@ -1323,6 +1385,10 @@
|
|
|
1323
1385
|
"subtitle": "Presets that map a model to every agent. A task picks one; tasks default to the workspace default preset.",
|
|
1324
1386
|
"back": "Back",
|
|
1325
1387
|
"closeEsc": "Close (Esc)",
|
|
1388
|
+
"confirmDelete": {
|
|
1389
|
+
"title": "Delete this model preset?",
|
|
1390
|
+
"body": "\"{name}\" will be removed. Tasks using it fall back to the workspace default."
|
|
1391
|
+
},
|
|
1326
1392
|
"quota": "quota",
|
|
1327
1393
|
"list": {
|
|
1328
1394
|
"intro": "Each preset sets a {baseModel} for every agent, with optional per-agent overrides. A model pinned on an individual task still overrides the preset.",
|
|
@@ -1692,11 +1758,19 @@
|
|
|
1692
1758
|
"saveFailed": "Could not save secret",
|
|
1693
1759
|
"removed": "Secret removed",
|
|
1694
1760
|
"removeFailed": "Could not remove secret"
|
|
1761
|
+
},
|
|
1762
|
+
"confirmRemove": {
|
|
1763
|
+
"title": "Remove this secret?",
|
|
1764
|
+
"body": "\"{name}\" will be removed. This can't be undone."
|
|
1695
1765
|
}
|
|
1696
1766
|
},
|
|
1697
1767
|
"mergeThresholds": {
|
|
1698
1768
|
"intro": "Named auto-merge policies a task can choose. After CI passes, the {merger} agent scores the PR on complexity, risk and impact (0-100%); the PR auto-merges only when every score is at or below the preset's ceilings, otherwise a review notification is raised. The default preset governs any task that picks none.",
|
|
1699
1769
|
"mergerAgent": "merger",
|
|
1770
|
+
"confirmDelete": {
|
|
1771
|
+
"title": "Delete this merge preset?",
|
|
1772
|
+
"body": "\"{name}\" will be removed. Tasks using it fall back to the workspace default."
|
|
1773
|
+
},
|
|
1700
1774
|
"concern": {
|
|
1701
1775
|
"none": "None (always stop)",
|
|
1702
1776
|
"low": "Low",
|
|
@@ -1948,6 +2022,10 @@
|
|
|
1948
2022
|
"saveFailed": "Could not save runner",
|
|
1949
2023
|
"removed": "Runner removed",
|
|
1950
2024
|
"removeFailed": "Could not remove runner"
|
|
2025
|
+
},
|
|
2026
|
+
"confirmRemove": {
|
|
2027
|
+
"title": "Remove this runner?",
|
|
2028
|
+
"body": "\"{name}\" will be removed. This can't be undone."
|
|
1951
2029
|
}
|
|
1952
2030
|
}
|
|
1953
2031
|
},
|
|
@@ -2115,6 +2193,10 @@
|
|
|
2115
2193
|
"step2": "Copy the API key. Agent steps will run via Claude Code against DeepSeek's Anthropic endpoint with full context.",
|
|
2116
2194
|
"step3": "Paste the key below."
|
|
2117
2195
|
}
|
|
2196
|
+
},
|
|
2197
|
+
"confirmRemove": {
|
|
2198
|
+
"title": "Remove this credential?",
|
|
2199
|
+
"body": "\"{name}\" will be removed. This can't be undone."
|
|
2118
2200
|
}
|
|
2119
2201
|
}
|
|
2120
2202
|
},
|
|
@@ -2211,6 +2293,10 @@
|
|
|
2211
2293
|
"createBranch": "Could not create branch",
|
|
2212
2294
|
"openPr": "Could not open pull request",
|
|
2213
2295
|
"merge": "Could not merge"
|
|
2296
|
+
},
|
|
2297
|
+
"confirmDisconnect": {
|
|
2298
|
+
"title": "Disconnect GitHub?",
|
|
2299
|
+
"body": "The app will lose access to your repositories until you reconnect."
|
|
2214
2300
|
}
|
|
2215
2301
|
},
|
|
2216
2302
|
"addService": {
|
|
@@ -2322,6 +2408,10 @@
|
|
|
2322
2408
|
"disconnect": "Could not disconnect Slack",
|
|
2323
2409
|
"saveRouting": "Could not save routing",
|
|
2324
2410
|
"saveMap": "Could not save member map"
|
|
2411
|
+
},
|
|
2412
|
+
"confirmDisconnect": {
|
|
2413
|
+
"title": "Disconnect Slack?",
|
|
2414
|
+
"body": "Slack notifications will stop until you reconnect."
|
|
2325
2415
|
}
|
|
2326
2416
|
},
|
|
2327
2417
|
"documents": {
|
|
@@ -2518,6 +2608,10 @@
|
|
|
2518
2608
|
"clone": "Clone",
|
|
2519
2609
|
"edit": "Edit this pipeline",
|
|
2520
2610
|
"delete": "Delete this pipeline",
|
|
2611
|
+
"confirmDeletePipeline": {
|
|
2612
|
+
"title": "Delete this pipeline?",
|
|
2613
|
+
"body": "\"{name}\" will be removed. This can't be undone."
|
|
2614
|
+
},
|
|
2521
2615
|
"disabledStepTooltip": "Disabled, skipped at run",
|
|
2522
2616
|
"cancelEdit": "Cancel edit",
|
|
2523
2617
|
"clear": "Clear",
|
|
@@ -3509,6 +3603,10 @@
|
|
|
3509
3603
|
"checkSourceFailed": "Could not check source",
|
|
3510
3604
|
"sourceUnlinked": "Source unlinked",
|
|
3511
3605
|
"unlinkSourceFailed": "Could not unlink source"
|
|
3606
|
+
},
|
|
3607
|
+
"confirmRemove": {
|
|
3608
|
+
"title": "Delete this fragment?",
|
|
3609
|
+
"body": "\"{name}\" will be removed. This can't be undone."
|
|
3512
3610
|
}
|
|
3513
3611
|
},
|
|
3514
3612
|
"sandbox": {
|
package/i18n/locales/es.json
CHANGED
|
@@ -15,7 +15,16 @@
|
|
|
15
15
|
"copy": "Copiar",
|
|
16
16
|
"actionFailed": "La acción falló",
|
|
17
17
|
"close": "Cerrar",
|
|
18
|
-
"block": "Bloque"
|
|
18
|
+
"block": "Bloque",
|
|
19
|
+
"delete": "Eliminar",
|
|
20
|
+
"remove": "Quitar",
|
|
21
|
+
"confirm": {
|
|
22
|
+
"defaultTitle": "¿Estás seguro?",
|
|
23
|
+
"confirm": "Confirmar"
|
|
24
|
+
},
|
|
25
|
+
"copied": "Copiado al portapapeles",
|
|
26
|
+
"disconnect": "Desconectar",
|
|
27
|
+
"copyFailed": "No se pudo copiar al portapapeles"
|
|
19
28
|
},
|
|
20
29
|
"nav": {
|
|
21
30
|
"menu": "Menú de navegación",
|
|
@@ -235,7 +244,11 @@
|
|
|
235
244
|
"module": "Módulo: {name}",
|
|
236
245
|
"buildSteps": "Pasos de build",
|
|
237
246
|
"reviewAndApprove": "Revisar y aprobar",
|
|
238
|
-
"clickToViewStep": "Haz clic para ver los detalles y la salida del paso"
|
|
247
|
+
"clickToViewStep": "Haz clic para ver los detalles y la salida del paso",
|
|
248
|
+
"startedToast": {
|
|
249
|
+
"title": "Ejecución iniciada",
|
|
250
|
+
"body": "Ejecutando \"{name}\"."
|
|
251
|
+
}
|
|
239
252
|
},
|
|
240
253
|
"epic": {
|
|
241
254
|
"label": "Épica",
|
|
@@ -322,6 +335,10 @@
|
|
|
322
335
|
"step2": "Abre el archivo de credenciales que Codex escribió en ~/.codex/auth.json (en Windows %USERPROFILE%\\.codex\\auth.json).",
|
|
323
336
|
"step3": "Copia todo el contenido de auth.json, pégalo abajo y elige una contraseña personal para protegerlo."
|
|
324
337
|
}
|
|
338
|
+
},
|
|
339
|
+
"confirmDisconnect": {
|
|
340
|
+
"title": "¿Desconectar esta suscripción?",
|
|
341
|
+
"body": "Se desconectará tu suscripción de \"{vendor}\". Esta acción no se puede deshacer."
|
|
325
342
|
}
|
|
326
343
|
},
|
|
327
344
|
"inspector": {
|
|
@@ -514,7 +531,11 @@
|
|
|
514
531
|
"merged": "Fusionado",
|
|
515
532
|
"notMerged": "Aún sin fusionar",
|
|
516
533
|
"empty": "Sin dependencias. Puede ejecutarse en cualquier momento.",
|
|
517
|
-
"blocked": "Bloqueado hasta que se fusionen las dependencias."
|
|
534
|
+
"blocked": "Bloqueado hasta que se fusionen las dependencias.",
|
|
535
|
+
"confirmRemove": {
|
|
536
|
+
"title": "¿Quitar esta dependencia?",
|
|
537
|
+
"body": "Esta tarea ya no esperará a \"{name}\"."
|
|
538
|
+
}
|
|
518
539
|
},
|
|
519
540
|
"estimate": {
|
|
520
541
|
"title": "Estimación",
|
|
@@ -559,7 +580,11 @@
|
|
|
559
580
|
"companionOf": "{label} (acompañante)",
|
|
560
581
|
"merged": "Fusionado",
|
|
561
582
|
"open": "Abierto",
|
|
562
|
-
"mergePr": "Fusionar PR"
|
|
583
|
+
"mergePr": "Fusionar PR",
|
|
584
|
+
"empty": {
|
|
585
|
+
"title": "Aún no hay ejecuciones",
|
|
586
|
+
"body": "Inicia un pipeline para ver el historial de ejecución aquí."
|
|
587
|
+
}
|
|
563
588
|
},
|
|
564
589
|
"structure": {
|
|
565
590
|
"module": "Módulo",
|
|
@@ -689,7 +714,9 @@
|
|
|
689
714
|
"done": "Finalizando"
|
|
690
715
|
},
|
|
691
716
|
"id": "Contenedor",
|
|
692
|
-
"url": "Dirección"
|
|
717
|
+
"url": "Dirección",
|
|
718
|
+
"copyId": "Copiar id del contenedor",
|
|
719
|
+
"copyUrl": "Copiar dirección"
|
|
693
720
|
}
|
|
694
721
|
},
|
|
695
722
|
"stepDetail": {
|
|
@@ -759,7 +786,25 @@
|
|
|
759
786
|
"viewRequirements": "Ver requisitos",
|
|
760
787
|
"reRun": "Reejecutar",
|
|
761
788
|
"run": "Ejecutar",
|
|
762
|
-
"focus": "Enfocar"
|
|
789
|
+
"focus": "Enfocar",
|
|
790
|
+
"confirmDelete": {
|
|
791
|
+
"task": {
|
|
792
|
+
"title": "¿Eliminar esta tarea?",
|
|
793
|
+
"body": "Se eliminarán \"{name}\" y su historial de ejecución. Esta acción no se puede deshacer."
|
|
794
|
+
},
|
|
795
|
+
"module": {
|
|
796
|
+
"title": "¿Eliminar este módulo?",
|
|
797
|
+
"body": "Se eliminará \"{name}\" y todo su contenido. Esta acción no se puede deshacer."
|
|
798
|
+
},
|
|
799
|
+
"service": {
|
|
800
|
+
"title": "¿Eliminar este servicio?",
|
|
801
|
+
"body": "Se eliminará \"{name}\" y todo su contenido. Esta acción no se puede deshacer."
|
|
802
|
+
},
|
|
803
|
+
"recurring": {
|
|
804
|
+
"title": "¿Eliminar este pipeline recurrente?",
|
|
805
|
+
"body": "Se eliminarán \"{name}\", su programación y su historial de ejecución. Esta acción no se puede deshacer."
|
|
806
|
+
}
|
|
807
|
+
}
|
|
763
808
|
}
|
|
764
809
|
},
|
|
765
810
|
"observability": {
|
|
@@ -1063,6 +1108,10 @@
|
|
|
1063
1108
|
"openBoardFailed": "No se pudo abrir el tablero",
|
|
1064
1109
|
"boardDeleted": "Tablero eliminado",
|
|
1065
1110
|
"deleteBoardFailed": "No se pudo eliminar el tablero"
|
|
1111
|
+
},
|
|
1112
|
+
"confirmDelete": {
|
|
1113
|
+
"title": "¿Eliminar este tablero?",
|
|
1114
|
+
"body": "Se eliminará \"{name}\" y todo su contenido. Esta acción no se puede deshacer."
|
|
1066
1115
|
}
|
|
1067
1116
|
},
|
|
1068
1117
|
"notifications": {
|
|
@@ -1084,6 +1133,10 @@
|
|
|
1084
1133
|
"human_review": "Marcar como leída",
|
|
1085
1134
|
"followup_pending": "Marcar como leída",
|
|
1086
1135
|
"markRead": "Marcar como leída"
|
|
1136
|
+
},
|
|
1137
|
+
"toast": {
|
|
1138
|
+
"acted": "Marcado como resuelto",
|
|
1139
|
+
"dismissed": "Descartado"
|
|
1087
1140
|
}
|
|
1088
1141
|
},
|
|
1089
1142
|
"aiProvidersBanner": {
|
|
@@ -1183,7 +1236,8 @@
|
|
|
1183
1236
|
"serviceFragmentDefaults": "Buenas prácticas del servicio por defecto",
|
|
1184
1237
|
"accountSettings": "Ajustes de la cuenta",
|
|
1185
1238
|
"localModels": "Mis ejecutores locales",
|
|
1186
|
-
"sandbox": "Abrir el entorno de pruebas"
|
|
1239
|
+
"sandbox": "Abrir el entorno de pruebas",
|
|
1240
|
+
"shortcuts": "Atajos de teclado"
|
|
1187
1241
|
},
|
|
1188
1242
|
"keywords": {
|
|
1189
1243
|
"newPipeline": "canalización agentes cadena pipeline",
|
|
@@ -1202,7 +1256,8 @@
|
|
|
1202
1256
|
"serviceFragmentDefaults": "fragmento buenas prácticas directriz servicio por defecto consciente del código",
|
|
1203
1257
|
"accountSettings": "cuenta equipo miembros roles invitaciones correo claves api fragmento buenas prácticas biblioteca contexto organización personal",
|
|
1204
1258
|
"localModels": "modelo local ejecutor ollama lm studio llamacpp vllm endpoint",
|
|
1205
|
-
"sandbox": "entorno de pruebas prompt modelo prueba experimento juez fixture benchmark evaluar"
|
|
1259
|
+
"sandbox": "entorno de pruebas prompt modelo prueba experimento juez fixture benchmark evaluar",
|
|
1260
|
+
"shortcuts": "atajos teclado teclas ayuda"
|
|
1206
1261
|
}
|
|
1207
1262
|
},
|
|
1208
1263
|
"integrationsHub": {
|
|
@@ -1275,6 +1330,13 @@
|
|
|
1275
1330
|
"description": "Tus ejecutores de modelos en tu propia máquina (Ollama, LM Studio, vLLM…)."
|
|
1276
1331
|
}
|
|
1277
1332
|
}
|
|
1333
|
+
},
|
|
1334
|
+
"shortcuts": {
|
|
1335
|
+
"title": "Atajos de teclado",
|
|
1336
|
+
"commandBar": "Abrir la barra de comandos",
|
|
1337
|
+
"deselect": "Deseleccionar / cerrar el inspector",
|
|
1338
|
+
"deleteBlock": "Eliminar el bloque seleccionado",
|
|
1339
|
+
"help": "Mostrar esta ayuda"
|
|
1278
1340
|
}
|
|
1279
1341
|
},
|
|
1280
1342
|
"settings": {
|
|
@@ -1317,6 +1379,10 @@
|
|
|
1317
1379
|
"nameRequiredTitle": "Nombre obligatorio",
|
|
1318
1380
|
"nameRequiredBody": "Dale un nombre al ajuste.",
|
|
1319
1381
|
"saveFailed": "No se pudo guardar el ajuste"
|
|
1382
|
+
},
|
|
1383
|
+
"confirmDelete": {
|
|
1384
|
+
"title": "¿Eliminar este preset de modelo?",
|
|
1385
|
+
"body": "Se eliminará \"{name}\". Las tareas que lo usan volverán al valor predeterminado del espacio de trabajo."
|
|
1320
1386
|
}
|
|
1321
1387
|
},
|
|
1322
1388
|
"account": {
|
|
@@ -1536,6 +1602,10 @@
|
|
|
1536
1602
|
"saveFailed": "No se pudo guardar el secreto",
|
|
1537
1603
|
"removed": "Secreto eliminado",
|
|
1538
1604
|
"removeFailed": "No se pudo eliminar el secreto"
|
|
1605
|
+
},
|
|
1606
|
+
"confirmRemove": {
|
|
1607
|
+
"title": "¿Quitar este secreto?",
|
|
1608
|
+
"body": "Se eliminará \"{name}\". Esta acción no se puede deshacer."
|
|
1539
1609
|
}
|
|
1540
1610
|
},
|
|
1541
1611
|
"mergeThresholds": {
|
|
@@ -1582,7 +1652,11 @@
|
|
|
1582
1652
|
"deleteFailed": "No se pudo eliminar el ajuste"
|
|
1583
1653
|
},
|
|
1584
1654
|
"autoMergeOnHint": "Fusionar automáticamente cuando esté dentro de los umbrales.",
|
|
1585
|
-
"autoMergeOffHint": "Enviar siempre el PR a revisión humana."
|
|
1655
|
+
"autoMergeOffHint": "Enviar siempre el PR a revisión humana.",
|
|
1656
|
+
"confirmDelete": {
|
|
1657
|
+
"title": "¿Eliminar este preset de fusión?",
|
|
1658
|
+
"body": "Se eliminará \"{name}\". Las tareas que lo usan volverán al valor predeterminado del espacio de trabajo."
|
|
1659
|
+
}
|
|
1586
1660
|
},
|
|
1587
1661
|
"observabilityConnection": {
|
|
1588
1662
|
"title": "Salud posterior al lanzamiento",
|
|
@@ -1789,6 +1863,10 @@
|
|
|
1789
1863
|
"saveFailed": "No se pudo guardar el runner",
|
|
1790
1864
|
"removed": "Runner eliminado",
|
|
1791
1865
|
"removeFailed": "No se pudo eliminar el runner"
|
|
1866
|
+
},
|
|
1867
|
+
"confirmRemove": {
|
|
1868
|
+
"title": "¿Quitar este runner?",
|
|
1869
|
+
"body": "Se eliminará \"{name}\". Esta acción no se puede deshacer."
|
|
1792
1870
|
}
|
|
1793
1871
|
},
|
|
1794
1872
|
"infrastructure": {
|
|
@@ -2050,6 +2128,10 @@
|
|
|
2050
2128
|
"step2": "Copia la clave de API. Los pasos de agente se ejecutarán vía Claude Code contra el endpoint de Anthropic de DeepSeek con contexto completo.",
|
|
2051
2129
|
"step3": "Pega la clave abajo."
|
|
2052
2130
|
}
|
|
2131
|
+
},
|
|
2132
|
+
"confirmRemove": {
|
|
2133
|
+
"title": "¿Quitar esta credencial?",
|
|
2134
|
+
"body": "Se eliminará \"{name}\". Esta acción no se puede deshacer."
|
|
2053
2135
|
}
|
|
2054
2136
|
}
|
|
2055
2137
|
},
|
|
@@ -2146,6 +2228,10 @@
|
|
|
2146
2228
|
"createBranch": "No se pudo crear la rama",
|
|
2147
2229
|
"openPr": "No se pudo abrir la solicitud de incorporación de cambios",
|
|
2148
2230
|
"merge": "No se pudo fusionar"
|
|
2231
|
+
},
|
|
2232
|
+
"confirmDisconnect": {
|
|
2233
|
+
"title": "¿Desconectar GitHub?",
|
|
2234
|
+
"body": "La app perderá acceso a tus repositorios hasta que vuelvas a conectar."
|
|
2149
2235
|
}
|
|
2150
2236
|
},
|
|
2151
2237
|
"addService": {
|
|
@@ -2254,6 +2340,10 @@
|
|
|
2254
2340
|
"disconnect": "No se pudo desconectar Slack",
|
|
2255
2341
|
"saveRouting": "No se pudo guardar el enrutamiento",
|
|
2256
2342
|
"saveMap": "No se pudo guardar el mapa de miembros"
|
|
2343
|
+
},
|
|
2344
|
+
"confirmDisconnect": {
|
|
2345
|
+
"title": "¿Desconectar Slack?",
|
|
2346
|
+
"body": "Las notificaciones de Slack se detendrán hasta que vuelvas a conectar."
|
|
2257
2347
|
}
|
|
2258
2348
|
},
|
|
2259
2349
|
"documents": {
|
|
@@ -2471,6 +2561,10 @@
|
|
|
2471
2561
|
"cloned": "Clonado \"{name}\" — ahora editando \"{copy}\"",
|
|
2472
2562
|
"cloneFailed": "No se pudo clonar el pipeline",
|
|
2473
2563
|
"updateFailed": "No se pudo actualizar el pipeline"
|
|
2564
|
+
},
|
|
2565
|
+
"confirmDeletePipeline": {
|
|
2566
|
+
"title": "¿Eliminar este pipeline?",
|
|
2567
|
+
"body": "Se eliminará \"{name}\". Esta acción no se puede deshacer."
|
|
2474
2568
|
}
|
|
2475
2569
|
},
|
|
2476
2570
|
"progress": {
|
|
@@ -3380,6 +3474,10 @@
|
|
|
3380
3474
|
"checkSourceFailed": "No se pudo comprobar el origen",
|
|
3381
3475
|
"sourceUnlinked": "Origen desvinculado",
|
|
3382
3476
|
"unlinkSourceFailed": "No se pudo desvincular el origen"
|
|
3477
|
+
},
|
|
3478
|
+
"confirmRemove": {
|
|
3479
|
+
"title": "¿Eliminar este fragmento?",
|
|
3480
|
+
"body": "Se eliminará \"{name}\". Esta acción no se puede deshacer."
|
|
3383
3481
|
}
|
|
3384
3482
|
},
|
|
3385
3483
|
"sandbox": {
|