mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-11 02:33:51 +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.
65 lines
1.5 KiB
JSON
65 lines
1.5 KiB
JSON
{
|
|
"title": "Issues",
|
|
"description": "Track and manage issues",
|
|
"status": {
|
|
"open": "Open",
|
|
"inProgress": "In Progress",
|
|
"resolved": "Resolved",
|
|
"closed": "Closed",
|
|
"completed": "Completed"
|
|
},
|
|
"priority": {
|
|
"low": "Low",
|
|
"medium": "Medium",
|
|
"high": "High",
|
|
"critical": "Critical"
|
|
},
|
|
"actions": {
|
|
"create": "New Issue",
|
|
"edit": "Edit",
|
|
"delete": "Delete",
|
|
"viewDetails": "View Details",
|
|
"changeStatus": "Change Status",
|
|
"changePriority": "Change Priority",
|
|
"startProgress": "Start Progress",
|
|
"markResolved": "Mark Resolved",
|
|
"github": "Pull from GitHub"
|
|
},
|
|
"filters": {
|
|
"all": "All",
|
|
"open": "Open",
|
|
"inProgress": "In Progress",
|
|
"resolved": "Resolved",
|
|
"closed": "Closed",
|
|
"byPriority": "By Priority"
|
|
},
|
|
"emptyState": {
|
|
"title": "No Issues Found",
|
|
"message": "No issues match your current filter.",
|
|
"createFirst": "Create your first issue to get started"
|
|
},
|
|
"createDialog": {
|
|
"title": "Create New Issue",
|
|
"labels": {
|
|
"title": "Title",
|
|
"context": "Context",
|
|
"priority": "Priority"
|
|
},
|
|
"placeholders": {
|
|
"title": "Enter issue title...",
|
|
"context": "Describe the issue context..."
|
|
},
|
|
"buttons": {
|
|
"create": "Create",
|
|
"cancel": "Cancel",
|
|
"creating": "Creating..."
|
|
}
|
|
},
|
|
"card": {
|
|
"id": "ID",
|
|
"createdAt": "Created",
|
|
"updatedAt": "Updated",
|
|
"solutions": "{count, plural, one {solution} other {solutions}}"
|
|
}
|
|
}
|