Files
Claude-Code-Workflow/ccw/frontend/src/locales/en/execution-monitor.json
catlog22 37ba849e75 feat: add CLI Viewer Page with multi-pane layout and state management
- Implemented the CliViewerPage component for displaying CLI outputs in a configurable multi-pane layout.
- Integrated Zustand for state management, allowing for dynamic layout changes and tab management.
- Added layout options: single, split horizontal, split vertical, and 2x2 grid.
- Created viewerStore for managing layout, panes, and tabs, including actions for adding/removing panes and tabs.
- Added CoordinatorPage barrel export for easier imports.
2026-02-03 17:28:26 +08:00

55 lines
1.3 KiB
JSON

{
"page": {
"title": "Execution Monitor",
"subtitle": "View real-time execution status and history"
},
"actions": {
"openCliViewer": "CLI Monitor"
},
"currentExecution": {
"title": "Current Execution",
"noExecution": "No workflow is currently executing",
"expand": "Expand",
"collapse": "Collapse"
},
"stats": {
"title": "Statistics",
"totalExecutions": "Total Executions",
"successRate": "Success Rate",
"avgDuration": "Avg Duration",
"nodeSuccessRate": "Node Success Rate"
},
"history": {
"title": "Execution History",
"empty": "No execution history",
"tabs": {
"byWorkflow": "By Workflow",
"timeline": "Timeline",
"list": "List View"
}
},
"filters": {
"workflow": "Workflow",
"status": "Status",
"dateRange": "Date Range",
"all": "All Workflows",
"allStatus": "All Status"
},
"execution": {
"status": {
"pending": "Pending",
"running": "Running",
"paused": "Paused",
"completed": "Completed",
"failed": "Failed"
},
"duration": "Duration",
"startedAt": "Started",
"completedAt": "Completed",
"nodes": "Nodes",
"progress": "Progress",
"logs": "Logs",
"viewDetails": "View Details"
}
}