Files
Claude-Code-Workflow/ccw/frontend/src/locales/en/execution-monitor.json
catlog22 715ef12c92 feat(a2ui): Implement A2UI backend with question handling and WebSocket support
- Added A2UITypes for defining question structures and answers.
- Created A2UIWebSocketHandler for managing WebSocket connections and message handling.
- Developed ask-question tool for interactive user questions via A2UI.
- Introduced platformUtils for platform detection and shell command handling.
- Centralized TypeScript types in index.ts for better organization.
- Implemented compatibility checks for hook templates based on platform requirements.
2026-01-31 15:27:12 +08:00

52 lines
1.2 KiB
JSON

{
"page": {
"title": "Execution Monitor",
"subtitle": "View real-time execution status and history"
},
"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"
}
}