Files
Claude-Code-Workflow/ccw/frontend/src/locales/en/index.json
catlog22 715ef12c92 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.
2026-01-31 15:27:12 +08:00

46 lines
1.2 KiB
JSON

{
"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"
}
}