mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-01 15:03:57 +08:00
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.
This commit is contained in:
68
ccw/frontend/src/locales/en/loops.json
Normal file
68
ccw/frontend/src/locales/en/loops.json
Normal file
@@ -0,0 +1,68 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user