mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-04 01:40:45 +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.
80 lines
1.8 KiB
JSON
80 lines
1.8 KiB
JSON
{
|
|
"title": "Memory",
|
|
"description": "Manage core memory, context, and knowledge base",
|
|
"actions": {
|
|
"add": "Add Memory",
|
|
"edit": "Edit",
|
|
"delete": "Delete",
|
|
"copy": "Copy",
|
|
"copySuccess": "Copied to clipboard",
|
|
"copyError": "Failed to copy",
|
|
"refresh": "Refresh",
|
|
"expand": "Expand",
|
|
"collapse": "Collapse"
|
|
},
|
|
"tabs": {
|
|
"memories": "Memories",
|
|
"favorites": "Favorites",
|
|
"archived": "Archived"
|
|
},
|
|
"stats": {
|
|
"totalSize": "Total Size",
|
|
"count": "Count",
|
|
"claudeMdCount": "CLAUDE.md Files",
|
|
"totalEntries": "Total Entries"
|
|
},
|
|
"filters": {
|
|
"search": "Search memories...",
|
|
"tags": "Tags",
|
|
"clear": "Clear",
|
|
"all": "All"
|
|
},
|
|
"card": {
|
|
"id": "ID",
|
|
"content": "Content",
|
|
"summary": "Summary",
|
|
"tags": "Tags",
|
|
"createdAt": "Created",
|
|
"updatedAt": "Updated",
|
|
"size": "Size",
|
|
"favorite": "Favorite",
|
|
"archived": "Archived"
|
|
},
|
|
"emptyState": {
|
|
"title": "No Memories Stored",
|
|
"message": "Add context and knowledge to help Claude understand your project better.",
|
|
"createFirst": "Add First Memory"
|
|
},
|
|
"createDialog": {
|
|
"title": "Add Memory",
|
|
"editTitle": "Edit Memory",
|
|
"labels": {
|
|
"content": "Content",
|
|
"tags": "Tags",
|
|
"favorite": "Favorite",
|
|
"priority": "Priority"
|
|
},
|
|
"placeholders": {
|
|
"content": "Enter memory content...",
|
|
"tags": "e.g., project, config, api"
|
|
},
|
|
"buttons": {
|
|
"create": "Add Memory",
|
|
"update": "Update Memory",
|
|
"cancel": "Cancel",
|
|
"creating": "Creating...",
|
|
"updating": "Updating..."
|
|
}
|
|
},
|
|
"priority": {
|
|
"low": "Low",
|
|
"medium": "Medium",
|
|
"high": "High"
|
|
},
|
|
"types": {
|
|
"coreMemory": "Core Memory",
|
|
"workflow": "Workflow",
|
|
"cliHistory": "CLI History"
|
|
}
|
|
}
|