Files
Claude-Code-Workflow/ccw/frontend/src/locales/en/review-session.json
catlog22 a8385e2ea5 feat: Enhance Project Overview and Review Session pages with improved UI and functionality
- Updated ProjectOverviewPage to enhance the guidelines section with better spacing, larger icons, and improved button styles.
- Refactored ReviewSessionPage to unify filter controls, improve selection actions, and enhance the findings list with a new layout.
- Added dimension tabs and severity filters to the SessionsPage for better navigation and filtering.
- Improved SessionDetailPage to utilize a mapping for status labels, enhancing internationalization support.
- Refactored TaskListTab to remove unused priority configuration code.
- Updated store types to better reflect session metadata structure.
- Added a temporary JSON file for future use.
2026-02-03 20:58:03 +08:00

104 lines
2.4 KiB
JSON

{
"title": "Review Session",
"type": "Review",
"severity": {
"critical": "Critical",
"high": "High",
"medium": "Medium",
"low": "Low",
"short": {
"critical": "Crit",
"high": "High",
"medium": "Med",
"low": "Low"
}
},
"stats": {
"total": "Total",
"dimensions": "Dimensions"
},
"progress": {
"title": "Review Progress",
"totalFindings": "Total Findings",
"critical": "Critical",
"high": "High"
},
"dimensionTabs": {
"all": "All"
},
"filters": {
"severity": "Severity",
"dimension": "Dimension",
"sort": "Sort",
"reset": "Reset"
},
"search": {
"placeholder": "Search findings..."
},
"sort": {
"severity": "By Severity",
"dimension": "By Dimension",
"file": "By File"
},
"selection": {
"count": "{count} selected",
"countSelected": "{count} selected",
"total": "{count} total",
"selectAll": "Select All",
"clearAll": "Clear All",
"clear": "Clear",
"selectVisible": "Visible",
"selectCritical": "Critical"
},
"export": "Export Fix JSON",
"codeContext": "Code Context",
"rootCause": "Root Cause",
"impact": "Impact",
"recommendations": "Recommendations",
"findingsList": {
"count": "{count} findings"
},
"preview": {
"empty": "Click on a finding to preview details",
"emptyTitle": "Select a Finding",
"emptyTipSeverity": "Filter by severity",
"emptyTipFile": "Group by file",
"location": "Location",
"description": "Description",
"codeContext": "Code Context",
"recommendations": "Recommendations",
"rootCause": "Root Cause",
"impact": "Impact",
"selected": "Selected",
"selectForFix": "Select"
},
"fixProgress": {
"title": "Fix Progress",
"phase": {
"planning": "PLANNING",
"execution": "EXECUTION",
"completion": "COMPLETION"
},
"stats": {
"total": "Total",
"fixed": "Fixed",
"failed": "Failed",
"pending": "Pending"
},
"activeAgents": "Active Agent",
"activeAgentsPlural": "Active Agents",
"stage": "Stage",
"complete": "{percent}% Complete",
"working": "Working..."
},
"empty": {
"title": "No findings found",
"message": "Try adjusting your filters or search query.",
"noFixProgress": "No fix progress data available"
},
"notFound": {
"title": "Review Session Not Found",
"message": "The requested review session could not be found."
}
}