Files
Claude-Code-Workflow/ccw/frontend/src/locales/zh/loops.json
catlog22 81725c94b1 Add E2E tests for internationalization across multiple pages
- Implemented navigation.spec.ts to test language switching and translation of navigation elements.
- Created sessions-page.spec.ts to verify translations on the sessions page, including headers, status badges, and date formatting.
- Developed settings-page.spec.ts to ensure settings page content is translated and persists across sessions.
- Added skills-page.spec.ts to validate translations for skill categories, action buttons, and empty states.
2026-01-30 22:54:21 +08:00

69 lines
1.5 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"title": "循环监控",
"description": "监控和控制运行中的开发循环",
"status": {
"created": "待处理",
"running": "运行中",
"paused": "已暂停",
"completed": "已完成",
"failed": "失败"
},
"actions": {
"create": "新建循环",
"pause": "暂停",
"resume": "继续",
"stop": "停止",
"restart": "重新开始",
"viewDetails": "查看详情"
},
"emptyState": {
"title": "无活跃循环",
"message": "启动新的开发循环以开始监控进度。",
"createFirst": "启动新循环"
},
"card": {
"step": "步骤",
"of": "/",
"progress": "进度",
"prompt": "提示词",
"tool": "工具",
"iteration": "迭代",
"error": "错误"
},
"createDialog": {
"title": "启动新循环",
"labels": {
"prompt": "提示词",
"tool": "CLI 工具(可选)"
},
"placeholders": {
"prompt": "输入开发循环提示词...",
"tool": "例如gemini、qwen、codex"
},
"buttons": {
"create": "启动",
"cancel": "取消"
}
},
"monitor": {
"title": "循环监控",
"loops": "循环",
"tasks": "任务",
"iterations": "迭代",
"timeline": "时间线"
},
"taskStatus": {
"pending": "待处理",
"inProgress": "进行中",
"blocked": "已阻塞",
"done": "完成"
},
"columns": {
"pending": "待处理",
"running": "运行中",
"paused": "已暂停",
"completed": "已完成",
"failed": "失败"
}
}