Files
Claude-Code-Workflow/ccw/frontend/src/locales/en/issues.json
catlog22 c6093ef741 feat: add CLI Command Node and Prompt Node components for orchestrator
- Implemented CliCommandNode component for executing CLI tools with AI models.
- Implemented PromptNode component for constructing AI prompts with context.
- Added styling for mode and tool badges in both components.
- Enhanced user experience with command and argument previews, execution status, and error handling.

test: add comprehensive tests for ask_question tool

- Created direct test for ask_question tool execution.
- Developed end-to-end tests to validate ask_question tool integration with WebSocket and A2UI surfaces.
- Implemented simple and integrated WebSocket tests to ensure proper message handling and surface reception.
- Added tool registration test to verify ask_question tool is correctly registered.

chore: add WebSocket listener and simulation tests

- Added WebSocket listener for A2UI surfaces to facilitate testing.
- Implemented frontend simulation test to validate complete flow from backend to frontend.
- Created various test scripts to ensure robust testing of ask_question tool functionality.
2026-02-03 23:10:36 +08:00

294 lines
8.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}}"
},
"detail": {
"title": "Issue Details",
"tabs": {
"overview": "Overview",
"solutions": "Solutions",
"history": "History",
"json": "JSON"
},
"overview": {
"title": "Title",
"status": "Status",
"priority": "Priority",
"createdAt": "Created At",
"updatedAt": "Updated At",
"context": "Context",
"labels": "Labels",
"assignee": "Assignee"
},
"solutions": {
"title": "Solutions",
"empty": "No solutions yet",
"addSolution": "Add Solution",
"boundSolution": "Bound Solution"
},
"history": {
"title": "History",
"empty": "No history yet"
}
},
"queue": {
"title": "Queue",
"pageTitle": "Issue Queue",
"description": "Manage issue execution queue with execution groups",
"status": {
"pending": "Pending",
"ready": "Ready",
"executing": "Executing",
"completed": "Completed",
"failed": "Failed",
"blocked": "Blocked",
"active": "Active",
"inactive": "Inactive"
},
"stats": {
"totalItems": "Total Items",
"groups": "Groups",
"tasks": "Tasks",
"solutions": "Solutions",
"items": "Items",
"executionGroups": "Execution Groups"
},
"actions": {
"activate": "Activate",
"deactivate": "Deactivate",
"delete": "Delete",
"merge": "Merge",
"split": "Split",
"confirmDelete": "Are you sure you want to delete this queue?"
},
"executionGroup": "Execution Group",
"executionGroups": "Execution Groups",
"parallelGroup": "Parallel Group",
"sequentialGroup": "Sequential Group",
"items": "items",
"itemCount": "{count} items",
"groups": "groups",
"parallel": "Parallel",
"sequential": "Sequential",
"emptyState": "No queue data available",
"empty": "No data",
"conflicts": "Conflicts detected in queue",
"noQueueData": "No queue data",
"error": {
"title": "Load Failed",
"message": "Unable to load queue data, please try again later"
},
"conflicts": {
"title": "Queue Conflicts",
"description": "conflicts"
},
"deleteDialog": {
"title": "Delete Queue",
"description": "Are you sure you want to delete this queue? This action cannot be undone."
},
"mergeDialog": {
"title": "Merge Queues",
"targetQueueLabel": "Target Queue ID",
"targetQueuePlaceholder": "Enter the queue ID to merge into"
},
"splitDialog": {
"title": "Split Queue",
"selected": "{count}/{total} selected",
"selectAll": "Select All",
"clearAll": "Clear All",
"noSelection": "Please select items to split",
"cannotSplitAll": "Cannot split all items, source queue must retain at least one item"
}
},
"solution": {
"issue": "Issue",
"solution": "Solution",
"shortIssue": "Issue",
"shortSolution": "Sol",
"tabs": {
"overview": "Overview",
"tasks": "Tasks",
"json": "JSON"
},
"overview": {
"executionInfo": "Execution Info",
"executionOrder": "Execution Order",
"semanticPriority": "Semantic Priority",
"group": "Execution Group",
"taskCount": "Task Count",
"dependencies": "Dependencies",
"filesTouched": "Files Touched"
},
"tasks": {
"comingSoon": "Task list coming soon"
}
},
"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",
"selectSession": "Select a session to view findings",
"sessionId": "Session ID",
"name": "Name",
"status": "Status",
"createdAt": "Created At",
"completedAt": "Completed At",
"progress": "Progress",
"findingsCount": "Findings Count",
"export": "Export JSON",
"exportSelected": "Export Selected ({count})",
"exporting": "Exporting...",
"exportAsIssues": "Export as Issues",
"severityBreakdown": "Severity Breakdown",
"typeBreakdown": "Type Breakdown",
"tabFindings": "Findings",
"tabProgress": "Progress",
"tabInfo": "Session Info",
"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"
},
"exportedStatus": {
"all": "All Export Status",
"exported": "Exported",
"notExported": "Not Exported"
},
"issueStatus": {
"all": "All Issue Status",
"hasIssue": "Has Issue",
"noIssue": "No Issue"
},
"noFindings": "No findings found",
"noFindingsDescription": "No matching findings found",
"searchPlaceholder": "Search findings...",
"filterBySeverity": "Filter by severity",
"filterByType": "Filter by type",
"filterByExported": "Filter by export status",
"filterByIssue": "Filter by issue link",
"allSeverities": "All severities",
"allTypes": "All types",
"showingCount": "Showing {count} findings",
"exported": "Exported",
"hasIssue": "Linked",
"export": "Export",
"selectAll": "Select All",
"deselectAll": "Deselect All"
},
"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"
}
}
}