mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-12 02:37:45 +08:00
- Implemented CliStreamMonitor component for real-time CLI output monitoring with multi-execution support. - Created JsonFormatter component for displaying JSON content in various formats (text, card, inline). - Added utility functions for JSON detection and formatting in jsonUtils.ts. - Introduced LogBlock utility functions for styling CLI output lines. - Developed a new Collapsible component for better UI interactions. - Created IssueHubPage for managing issues, queue, and discovery with tab navigation.
157 lines
4.0 KiB
JSON
157 lines
4.0 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}}"
|
|
},
|
|
"queue": {
|
|
"title": "Queue",
|
|
"pageTitle": "Issue Queue",
|
|
"description": "Manage issue execution queue with execution groups",
|
|
"stats": {
|
|
"totalItems": "Total Items",
|
|
"groups": "Groups",
|
|
"tasks": "Tasks",
|
|
"solutions": "Solutions"
|
|
},
|
|
"actions": {
|
|
"activate": "Activate",
|
|
"deactivate": "Deactivate",
|
|
"delete": "Delete",
|
|
"merge": "Merge",
|
|
"confirmDelete": "Are you sure you want to delete this queue?"
|
|
},
|
|
"executionGroup": "Execution Group",
|
|
"parallel": "Parallel",
|
|
"sequential": "Sequential",
|
|
"emptyState": "No queue data available",
|
|
"conflicts": "Conflicts detected in queue",
|
|
"noQueueData": "No queue data"
|
|
},
|
|
"discovery": {
|
|
"title": "Discovery",
|
|
"pageTitle": "Issue Discovery",
|
|
"description": "View and manage issue discovery sessions",
|
|
"totalSessions": "Total Sessions",
|
|
"completedSessions": "Completed",
|
|
"runningSessions": "Running",
|
|
"totalFindings": "Findings",
|
|
"sessionList": "Session List",
|
|
"noSessions": "No sessions found",
|
|
"noSessionsDescription": "Start a new discovery session to begin",
|
|
"findingsDetail": "Findings Detail",
|
|
"stats": {
|
|
"totalSessions": "Total Sessions",
|
|
"completed": "Completed",
|
|
"running": "Running",
|
|
"findings": "Findings"
|
|
},
|
|
"session": {
|
|
"status": {
|
|
"running": "Running",
|
|
"completed": "Completed",
|
|
"failed": "Failed"
|
|
},
|
|
"findings": "{count} findings",
|
|
"startedAt": "Started"
|
|
},
|
|
"findings": {
|
|
"title": "Findings",
|
|
"filters": {
|
|
"severity": "Severity",
|
|
"type": "Type",
|
|
"search": "Search findings..."
|
|
},
|
|
"severity": {
|
|
"all": "All Severities",
|
|
"critical": "Critical",
|
|
"high": "High",
|
|
"medium": "Medium",
|
|
"low": "Low"
|
|
},
|
|
"type": {
|
|
"all": "All Types"
|
|
},
|
|
"noFindings": "No findings found",
|
|
"export": "Export"
|
|
},
|
|
"tabs": {
|
|
"findings": "Findings",
|
|
"progress": "Progress",
|
|
"info": "Session Info"
|
|
},
|
|
"emptyState": "No discovery sessions found",
|
|
"noSessionSelected": "Select a session to view findings",
|
|
"actions": {
|
|
"export": "Export Findings",
|
|
"refresh": "Refresh"
|
|
}
|
|
},
|
|
"hub": {
|
|
"title": "Issue Hub",
|
|
"description": "Unified management for issues, queues, and discoveries",
|
|
"tabs": {
|
|
"issues": "Issues",
|
|
"queue": "Queue",
|
|
"discovery": "Discovery"
|
|
}
|
|
}
|
|
}
|