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:
63
ccw/frontend/src/locales/en/orchestrator.json
Normal file
63
ccw/frontend/src/locales/en/orchestrator.json
Normal file
@@ -0,0 +1,63 @@
|
||||
{
|
||||
"title": "Orchestrator",
|
||||
"description": "Manage and execute workflow flows",
|
||||
"flow": {
|
||||
"title": "Flow",
|
||||
"flows": "Flows",
|
||||
"create": "New Flow",
|
||||
"edit": "Edit Flow",
|
||||
"delete": "Delete Flow",
|
||||
"duplicate": "Duplicate Flow",
|
||||
"export": "Export Flow",
|
||||
"import": "Import Flow"
|
||||
},
|
||||
"execution": {
|
||||
"title": "Execution",
|
||||
"status": "Status",
|
||||
"start": "Start",
|
||||
"pause": "Pause",
|
||||
"resume": "Resume",
|
||||
"stop": "Stop",
|
||||
"restart": "Restart",
|
||||
"viewLogs": "View Logs"
|
||||
},
|
||||
"status": {
|
||||
"pending": "Pending",
|
||||
"running": "Running",
|
||||
"paused": "Paused",
|
||||
"completed": "Completed",
|
||||
"failed": "Failed"
|
||||
},
|
||||
"node": {
|
||||
"title": "Node",
|
||||
"nodes": "Nodes",
|
||||
"add": "Add Node",
|
||||
"edit": "Edit Node",
|
||||
"delete": "Delete Node",
|
||||
"status": "Node Status",
|
||||
"result": "Result"
|
||||
},
|
||||
"actions": {
|
||||
"execute": "Execute",
|
||||
"validate": "Validate",
|
||||
"save": "Save",
|
||||
"cancel": "Cancel"
|
||||
},
|
||||
"emptyState": {
|
||||
"noFlows": {
|
||||
"title": "No Flows Found",
|
||||
"message": "Create your first workflow flow to get started."
|
||||
},
|
||||
"noExecution": {
|
||||
"title": "No Execution History",
|
||||
"message": "Execute a flow to see the execution history."
|
||||
}
|
||||
},
|
||||
"monitor": {
|
||||
"title": "Execution Monitor",
|
||||
"logs": "Logs",
|
||||
"timeline": "Timeline",
|
||||
"variables": "Variables",
|
||||
"realtime": "Real-time Updates"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user