mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-28 09:23:08 +08:00
- 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.
69 lines
1.5 KiB
JSON
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"
|
|
}
|
|
}
|