mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-28 09:23:08 +08:00
- Implemented Accordion component using Radix UI for collapsible sections. - Created Zustand store to manage coordinator execution state, command chains, logs, and interactive questions. - Added validation tests for CLI settings type definitions, ensuring type safety and correct behavior of helper functions.
114 lines
3.1 KiB
JSON
114 lines
3.1 KiB
JSON
{
|
|
"title": "Prompt History",
|
|
"description": "View and analyze your prompt history with AI insights",
|
|
"searchPlaceholder": "Search prompts...",
|
|
"filterByIntent": "Filter by intent",
|
|
"filterByProject": "Filter by project",
|
|
"intents": {
|
|
"all": "All Intents",
|
|
"intent": "Intent",
|
|
"bug-fix": "Bug Fix",
|
|
"feature": "Feature",
|
|
"refactor": "Refactor",
|
|
"document": "Document",
|
|
"analyze": "Analyze"
|
|
},
|
|
"projects": {
|
|
"all": "All Projects",
|
|
"project": "Project"
|
|
},
|
|
"stats": {
|
|
"totalCount": "Total Prompts",
|
|
"totalCountDesc": "All stored prompts",
|
|
"avgLength": "Avg Length",
|
|
"avgLengthDesc": "Mean character count",
|
|
"topIntent": "Top Intent",
|
|
"topIntentDesc": "Most used category",
|
|
"noIntent": "N/A",
|
|
"avgQuality": "Avg Quality",
|
|
"avgQualityDesc": "Quality score distribution"
|
|
},
|
|
"quality": {
|
|
"high": "High",
|
|
"medium": "Medium",
|
|
"low": "Low",
|
|
"none": "N/A"
|
|
},
|
|
"card": {
|
|
"untitled": "Untitled Prompt",
|
|
"used": "Used {count} times"
|
|
},
|
|
"timeline": {
|
|
"ungrouped": "Ungrouped",
|
|
"session": "Session: {session}"
|
|
},
|
|
"actions": {
|
|
"copy": "Copy prompt",
|
|
"copied": "Copied!",
|
|
"delete": "Delete",
|
|
"expand": "Expand",
|
|
"collapse": "Collapse"
|
|
},
|
|
"insights": {
|
|
"title": "AI Insights",
|
|
"analyze": "Analyze",
|
|
"analyzing": "Analyzing prompts...",
|
|
"selectTool": "Select tool",
|
|
"confidence": "confidence",
|
|
"empty": {
|
|
"title": "No insights yet",
|
|
"message": "Run an analysis to get AI-powered insights about your prompt patterns and suggestions for improvement."
|
|
},
|
|
"sections": {
|
|
"insights": "Insights",
|
|
"patterns": "Detected Patterns",
|
|
"suggestions": "Suggestions"
|
|
}
|
|
},
|
|
"insightsHistory": {
|
|
"loading": "Loading insights history...",
|
|
"patterns": "Patterns",
|
|
"suggestions": "Suggestions",
|
|
"prompts": "Prompts",
|
|
"empty": {
|
|
"title": "No analysis history",
|
|
"message": "Run an analysis to see historical insights and patterns."
|
|
}
|
|
},
|
|
"insightDetail": {
|
|
"title": "Insight Detail",
|
|
"patterns": "Patterns Found",
|
|
"suggestions": "Suggestions",
|
|
"promptsAnalyzed": "prompts analyzed",
|
|
"noContent": "No patterns or suggestions available for this insight.",
|
|
"deleting": "Deleting..."
|
|
},
|
|
"suggestions": {
|
|
"types": {
|
|
"refactor": "Refactor",
|
|
"optimize": "Optimize",
|
|
"fix": "Fix",
|
|
"document": "Document"
|
|
},
|
|
"effort": "Effort"
|
|
},
|
|
"dialog": {
|
|
"deleteTitle": "Delete Prompt",
|
|
"deleteConfirm": "Are you sure you want to delete this prompt? This action cannot be undone.",
|
|
"batchDeleteTitle": "Delete Prompts",
|
|
"batchDeleteConfirm": "Are you sure you want to delete {count} selected prompt(s)? This action cannot be undone."
|
|
},
|
|
"batch": {
|
|
"selected": "{count} selected",
|
|
"selectAll": "Select All",
|
|
"clearSelection": "Clear Selection",
|
|
"deleteSelected": "Delete Selected"
|
|
},
|
|
"emptyState": {
|
|
"title": "No prompts found",
|
|
"message": "No prompts match your current filter.",
|
|
"noPrompts": "No prompts yet",
|
|
"createFirst": "Create your first prompt to start building history"
|
|
}
|
|
}
|