Files
Claude-Code-Workflow/ccw/frontend/src/locales/en/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

{
"title": "Loop Monitor",
"description": "Monitor and control running development loops",
"status": {
"created": "Pending",
"running": "Running",
"paused": "Paused",
"completed": "Completed",
"failed": "Failed"
},
"actions": {
"create": "New Loop",
"pause": "Pause",
"resume": "Resume",
"stop": "Stop",
"restart": "Restart",
"viewDetails": "View Details"
},
"emptyState": {
"title": "No Active Loops",
"message": "Start a new development loop to begin monitoring progress.",
"createFirst": "Start New Loop"
},
"card": {
"step": "Step",
"of": "of",
"progress": "Progress",
"prompt": "Prompt",
"tool": "Tool",
"iteration": "Iteration",
"error": "Error"
},
"createDialog": {
"title": "Start New Loop",
"labels": {
"prompt": "Prompt",
"tool": "CLI Tool (optional)"
},
"placeholders": {
"prompt": "Enter your development loop prompt...",
"tool": "e.g., gemini, qwen, codex"
},
"buttons": {
"create": "Start",
"cancel": "Cancel"
}
},
"monitor": {
"title": "Loop Monitor",
"loops": "Loops",
"tasks": "Tasks",
"iterations": "Iterations",
"timeline": "Timeline"
},
"taskStatus": {
"pending": "Pending",
"inProgress": "In Progress",
"blocked": "Blocked",
"done": "Done"
},
"columns": {
"pending": "Pending",
"running": "Running",
"paused": "Paused",
"completed": "Completed",
"failed": "Failed"
}
}