mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-28 09:23:08 +08:00
feat(a2ui): Implement A2UI backend with question handling and WebSocket support
- Added A2UITypes for defining question structures and answers. - Created A2UIWebSocketHandler for managing WebSocket connections and message handling. - Developed ask-question tool for interactive user questions via A2UI. - Introduced platformUtils for platform detection and shell command handling. - Centralized TypeScript types in index.ts for better organization. - Implemented compatibility checks for hook templates based on platform requirements.
This commit is contained in:
45
ccw/frontend/src/locales/en/index.json
Normal file
45
ccw/frontend/src/locales/en/index.json
Normal file
@@ -0,0 +1,45 @@
|
||||
{
|
||||
"title": "Code Index",
|
||||
"description": "Manage the code search index for faster navigation and code discovery",
|
||||
"sections": {
|
||||
"status": "Status",
|
||||
"actions": "Actions",
|
||||
"settings": "Settings"
|
||||
},
|
||||
"status": {
|
||||
"idle": "Idle",
|
||||
"building": "Building",
|
||||
"completed": "Ready",
|
||||
"failed": "Failed"
|
||||
},
|
||||
"actions": {
|
||||
"rebuild": "Rebuild Index",
|
||||
"rebuildFull": "Full Rebuild",
|
||||
"cancel": "Cancel"
|
||||
},
|
||||
"stats": {
|
||||
"totalFiles": "Total Files",
|
||||
"totalFilesDesc": "Files in the index",
|
||||
"lastUpdated": "Last Updated",
|
||||
"lastUpdatedDesc": "When the index was last built",
|
||||
"buildTime": "Build Time",
|
||||
"buildTimeDesc": "Time taken for last build",
|
||||
"never": "Never indexed"
|
||||
},
|
||||
"time": {
|
||||
"justNow": "Just now",
|
||||
"minutesAgo": "{value}m ago",
|
||||
"hoursAgo": "{value}h ago",
|
||||
"daysAgo": "{value}d ago"
|
||||
},
|
||||
"errors": {
|
||||
"rebuildFailed": "Index rebuild failed",
|
||||
"loadFailed": "Failed to load index status"
|
||||
},
|
||||
"settings": {
|
||||
"autoRebuild": "Auto Rebuild",
|
||||
"autoRebuildDesc": "Automatically rebuild index when code changes",
|
||||
"rebuildInterval": "Rebuild Interval",
|
||||
"rebuildIntervalDesc": "How often to check for code changes"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user