mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-01 12:13:51 +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:
43
ccw/frontend/src/locales/en/commands.json
Normal file
43
ccw/frontend/src/locales/en/commands.json
Normal file
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"title": "Commands Manager",
|
||||
"description": "Manage custom slash commands for Claude Code",
|
||||
"actions": {
|
||||
"create": "New Command",
|
||||
"edit": "Edit Command",
|
||||
"delete": "Delete Command",
|
||||
"refresh": "Refresh",
|
||||
"expandAll": "Expand All",
|
||||
"collapseAll": "Collapse All",
|
||||
"copy": "Copy"
|
||||
},
|
||||
"source": {
|
||||
"builtin": "Built-in",
|
||||
"custom": "Custom"
|
||||
},
|
||||
"filters": {
|
||||
"allCategories": "All Categories",
|
||||
"allSources": "All Sources",
|
||||
"category": "Category",
|
||||
"source": "Source",
|
||||
"searchPlaceholder": "Search commands by name, description, or alias..."
|
||||
},
|
||||
"card": {
|
||||
"name": "Name",
|
||||
"description": "Description",
|
||||
"usage": "Usage",
|
||||
"examples": "Examples",
|
||||
"aliases": "Aliases",
|
||||
"triggers": "Triggers",
|
||||
"noDescription": "No description"
|
||||
},
|
||||
"emptyState": {
|
||||
"title": "No Commands Found",
|
||||
"message": "Try adjusting your search or filters."
|
||||
},
|
||||
"table": {
|
||||
"name": "Name",
|
||||
"description": "Description",
|
||||
"scope": "Scope",
|
||||
"status": "Status"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user