mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-13 02:41:50 +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:
44
ccw/frontend/src/locales/en/fix-session.json
Normal file
44
ccw/frontend/src/locales/en/fix-session.json
Normal file
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"progress": {
|
||||
"title": "Fix Progress"
|
||||
},
|
||||
"tasks": {
|
||||
"title": "Fix Tasks"
|
||||
},
|
||||
"stats": {
|
||||
"total": "Total",
|
||||
"fixed": "Fixed",
|
||||
"failed": "Failed",
|
||||
"pending": "Pending"
|
||||
},
|
||||
"status": {
|
||||
"fixed": "Fixed",
|
||||
"failed": "Failed",
|
||||
"inProgress": "In Progress",
|
||||
"pending": "Pending"
|
||||
},
|
||||
"filter": {
|
||||
"all": "All",
|
||||
"pending": "Pending",
|
||||
"inProgress": "In Progress",
|
||||
"fixed": "Fixed",
|
||||
"failed": "Failed"
|
||||
},
|
||||
"task": {
|
||||
"untitled": "Untitled Task",
|
||||
"attempts": "{count} attempts"
|
||||
},
|
||||
"info": {
|
||||
"created": "Created",
|
||||
"updated": "Updated",
|
||||
"description": "Description"
|
||||
},
|
||||
"notFound": {
|
||||
"title": "Session Not Found",
|
||||
"message": "The fix session you're looking for doesn't exist or has been deleted."
|
||||
},
|
||||
"empty": {
|
||||
"title": "No Tasks Found",
|
||||
"message": "No fix tasks match the current filter."
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user