Files
Claude-Code-Workflow/ccw/frontend/src/locales/en/common.json
catlog22 5483a72e9f feat: add Accordion component for UI and Zustand store for coordinator management
- Implemented Accordion component using Radix UI for collapsible sections.
- Created Zustand store to manage coordinator execution state, command chains, logs, and interactive questions.
- Added validation tests for CLI settings type definitions, ensuring type safety and correct behavior of helper functions.
2026-02-03 10:02:40 +08:00

261 lines
7.7 KiB
JSON

{
"aria": {
"toggleNavigation": "Toggle navigation menu",
"refreshWorkspace": "Refresh workspace",
"switchToLightMode": "Switch to light mode",
"switchToDarkMode": "Switch to dark mode",
"userMenu": "User menu",
"actions": "Actions",
"notifications": "Notifications"
},
"actions": {
"save": "Save",
"cancel": "Cancel",
"delete": "Delete",
"edit": "Edit",
"create": "Create",
"refresh": "Refresh",
"loading": "Loading...",
"retry": "Retry",
"search": "Search...",
"searchIssues": "Search issues...",
"searchLoops": "Search loops...",
"clear": "Clear",
"close": "Close",
"copy": "Copy",
"view": "View",
"viewAll": "View All",
"update": "Update",
"add": "Add",
"new": "New",
"remove": "Remove",
"confirm": "Confirm",
"back": "Back",
"next": "Next",
"previous": "Previous",
"submit": "Submit",
"reset": "Reset",
"resetDesc": "Reset all user preferences to their default values. This cannot be undone.",
"saving": "Saving...",
"resetConfirm": "Reset all settings to defaults?",
"resetToDefaults": "Reset to Defaults",
"enable": "Enable",
"disable": "Disable",
"expand": "Expand All",
"expandAll": "Expand All",
"collapse": "Collapse All",
"collapseAll": "Collapse All",
"filter": "Filter",
"filters": "Filters",
"clearFilters": "Clear filters",
"clearAll": "Clear all",
"select": "Select",
"selectAll": "Select All",
"deselectAll": "Deselect All"
},
"status": {
"active": "Active",
"inactive": "Inactive",
"pending": "Pending",
"inProgress": "In Progress",
"completed": "Completed",
"failed": "Failed",
"blocked": "Blocked",
"cancelled": "Cancelled",
"paused": "Paused",
"archived": "Archived",
"unknown": "Unknown",
"draft": "Draft",
"published": "Published",
"creating": "Creating...",
"deleting": "Deleting...",
"label": "Status",
"openIssues": "Open Issues",
"enabled": "Enabled",
"disabled": "Disabled"
},
"priority": {
"low": "Low",
"medium": "Medium",
"high": "High",
"critical": "Critical",
"label": "Priority"
},
"time": {
"seconds": "seconds",
"minutes": "minutes",
"hours": "hours",
"days": "days",
"weeks": "weeks",
"months": "months",
"years": "years",
"ago": "ago",
"justNow": "just now"
},
"buttons": {
"new": "New",
"create": "Create",
"edit": "Edit",
"delete": "Delete",
"save": "Save",
"cancel": "Cancel",
"confirm": "Confirm",
"retry": "Retry",
"refresh": "Refresh",
"close": "Close",
"back": "Back",
"next": "Next",
"submit": "Submit"
},
"form": {
"required": "Required",
"optional": "optional",
"placeholder": "Enter...",
"search": "Search...",
"select": "Select...",
"noResults": "No results found",
"loading": "Loading...",
"sessionId": "Session ID",
"title": "Title",
"description": "Description",
"sessionIdPlaceholder": "e.g., WFS-feature-auth",
"titlePlaceholder": "e.g., Authentication System",
"descriptionPlaceholder": "Brief description of the session"
},
"emptyState": {
"noData": "No data found",
"noResults": "No results found",
"noItems": "No items",
"createFirst": "Create your first item to get started",
"searchEmpty": "Try adjusting your search or filters",
"filterEmpty": "No items match your current filters"
},
"errors": {
"generic": "An error occurred",
"network": "Network error. Please check your connection.",
"timeout": "Request timed out. Please try again.",
"notFound": "Resource not found",
"unauthorized": "Unauthorized access",
"forbidden": "Access forbidden",
"validation": "Validation error",
"server": "Server error. Please try again later.",
"loadingFailed": "Failed to load data",
"loadFailed": "Failed to load data",
"saveFailed": "Failed to save",
"deleteFailed": "Failed to delete",
"updateFailed": "Failed to update",
"unknownError": "An unexpected error occurred"
},
"success": {
"saved": "Saved successfully",
"created": "Created successfully",
"updated": "Updated successfully",
"deleted": "Deleted successfully",
"copied": "Copied to clipboard"
},
"messages": {
"confirmDelete": "Are you sure you want to delete this item?",
"confirmArchive": "Are you sure you want to archive this item?",
"unsavedChanges": "You have unsaved changes. Are you sure you want to leave?",
"noPermission": "You don't have permission to perform this action"
},
"stats": {
"todayActivity": "Today's Activity",
"totalCommands": "Total Commands",
"totalSkills": "Total Skills",
"categories": "Categories"
},
"dialog": {
"createSession": "Create New Session",
"createSessionDesc": "Create a new workflow session to track your development tasks.",
"deleteSession": "Delete Session",
"deleteConfirm": "Are you sure you want to delete this session? This action cannot be undone."
},
"help": {
"title": "Help & Documentation",
"description": "Learn how to use CCW Dashboard and get the most out of your workflows",
"support": {
"title": "Need more help?",
"description": "Check the project documentation or reach out for support.",
"documentation": "Documentation",
"tutorials": "Tutorials"
}
},
"yes": "Yes",
"no": "No",
"askQuestion": {
"defaultTitle": "Questions",
"description": "Please answer the following questions",
"textPlaceholder": "Enter your answer...",
"yes": "Yes",
"no": "No",
"required": "This question is required"
},
"coordinator": {
"modal": {
"title": "Start Coordinator",
"description": "Describe the task you want the coordinator to execute"
},
"form": {
"taskDescription": "Task Description",
"taskDescriptionPlaceholder": "Describe what you want the coordinator to do (minimum 10 characters)...",
"parameters": "Parameters (Optional)",
"parametersPlaceholder": "{\"key\": \"value\"}",
"parametersHelp": "Optional JSON parameters for the coordinator execution",
"characterCount": "{current} / {max} characters (min: {min})",
"start": "Start Coordinator",
"starting": "Starting..."
},
"validation": {
"taskDescriptionRequired": "Task description is required",
"taskDescriptionTooShort": "Task description must be at least 10 characters",
"taskDescriptionTooLong": "Task description must not exceed 2000 characters",
"parametersInvalidJson": "Parameters must be valid JSON",
"answerRequired": "An answer is required"
},
"success": {
"started": "Coordinator started successfully"
},
"status": {
"pending": "Pending",
"running": "Running",
"completed": "Completed",
"failed": "Failed",
"skipped": "Skipped"
},
"logs": "Logs",
"entries": "entries",
"error": "Error",
"output": "Output",
"startedAt": "Started At",
"completedAt": "Completed At",
"retrying": "Retrying...",
"retry": "Retry",
"skipping": "Skipping...",
"skip": "Skip",
"logLevel": "Log Level",
"level": {
"all": "All",
"info": "Info",
"warn": "Warning",
"error": "Error",
"debug": "Debug"
},
"noLogs": "No logs available",
"question": {
"answer": "Answer",
"textPlaceholder": "Enter your answer...",
"selectOne": "Select One",
"selectMultiple": "Select Multiple",
"confirm": "Confirm",
"yes": "Yes",
"no": "No",
"submitting": "Submitting...",
"submit": "Submit"
},
"error": {
"submitFailed": "Failed to submit answer"
}
}
}