mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-12 17:21:19 +08:00
- 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.
66 lines
1.5 KiB
JSON
66 lines
1.5 KiB
JSON
{
|
|
"title": "会话",
|
|
"description": "管理工作流会话并跟踪进度",
|
|
"status": {
|
|
"planning": "规划中",
|
|
"inProgress": "进行中",
|
|
"completed": "已完成",
|
|
"archived": "已归档",
|
|
"paused": "已暂停"
|
|
},
|
|
"type": {
|
|
"workflow": "工作流",
|
|
"review": "审查",
|
|
"tdd": "TDD",
|
|
"test": "测试",
|
|
"docs": "文档",
|
|
"lite-plan": "轻量计划",
|
|
"lite-fix": "轻量修复"
|
|
},
|
|
"actions": {
|
|
"viewDetails": "查看详情",
|
|
"archive": "归档",
|
|
"delete": "删除",
|
|
"restore": "恢复",
|
|
"pause": "暂停",
|
|
"resume": "继续"
|
|
},
|
|
"filters": {
|
|
"all": "全部",
|
|
"active": "活跃",
|
|
"planning": "规划中",
|
|
"completed": "已完成",
|
|
"archived": "已归档",
|
|
"paused": "已暂停"
|
|
},
|
|
"searchPlaceholder": "搜索会话...",
|
|
"emptyState": {
|
|
"title": "未找到会话",
|
|
"message": "没有符合当前筛选条件的工作流会话。",
|
|
"createFirst": "创建第一个会话以开始"
|
|
},
|
|
"card": {
|
|
"tasks": "任务",
|
|
"findings": "发现",
|
|
"dimensions": "维度",
|
|
"progress": "进度",
|
|
"createdAt": "创建时间",
|
|
"updatedAt": "更新时间",
|
|
"completed": "已完成",
|
|
"updated": "更新于"
|
|
},
|
|
"taskStatus": {
|
|
"pending": "待处理",
|
|
"inProgress": "进行中",
|
|
"completed": "已完成",
|
|
"failed": "失败"
|
|
},
|
|
"detail": {
|
|
"overview": "概览",
|
|
"tasks": "任务",
|
|
"summary": "摘要",
|
|
"metadata": "元数据",
|
|
"timeline": "时间线"
|
|
}
|
|
}
|