mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-28 09:23:08 +08:00
feat: Refactor AppShell and Header components, enhance memory management UI, and align API endpoints
- Removed defaultCollapsed prop from AppShell and set sidebar to be collapsed by default. - Updated Header component to remove mobile menu toggle and added a history entry button. - Refactored ExplorationsSection to streamline data extraction and improve UI rendering. - Added new messages for GitHub sync success and error handling in issues. - Implemented View Memory Dialog for better memory content viewing and editing. - Enhanced FlowToolbar to auto-create flows and improved save functionality. - Conducted a frontend audit for API endpoint alignment with backend implementations.
This commit is contained in:
@@ -358,6 +358,7 @@
|
||||
"status": "Status",
|
||||
"provider": "Provider",
|
||||
"enableThis": "Enable this",
|
||||
"showAll": "Show All",
|
||||
"validation": {
|
||||
"nameRequired": "Name is required"
|
||||
}
|
||||
|
||||
@@ -37,6 +37,9 @@
|
||||
"reset": "Reset",
|
||||
"resetDesc": "Reset all user preferences to their default values. This cannot be undone.",
|
||||
"saving": "Saving...",
|
||||
"deleting": "Deleting...",
|
||||
"merging": "Merging...",
|
||||
"splitting": "Splitting...",
|
||||
"resetConfirm": "Reset all settings to defaults?",
|
||||
"resetToDefaults": "Reset to Defaults",
|
||||
"enable": "Enable",
|
||||
@@ -52,6 +55,7 @@
|
||||
"select": "Select",
|
||||
"selectAll": "Select All",
|
||||
"deselectAll": "Deselect All",
|
||||
"openMenu": "Open menu",
|
||||
"resetLayout": "Reset Layout"
|
||||
},
|
||||
"status": {
|
||||
|
||||
@@ -25,6 +25,10 @@
|
||||
"markResolved": "Mark Resolved",
|
||||
"github": "Pull from GitHub"
|
||||
},
|
||||
"messages": {
|
||||
"githubSyncSuccess": "GitHub sync complete: {imported} imported, {updated} updated, {skipped} skipped.",
|
||||
"githubSyncError": "GitHub sync failed"
|
||||
},
|
||||
"filters": {
|
||||
"all": "All",
|
||||
"open": "Open",
|
||||
@@ -147,7 +151,10 @@
|
||||
"groups": "groups",
|
||||
"parallel": "Parallel",
|
||||
"sequential": "Sequential",
|
||||
"emptyState": "No queue data available",
|
||||
"emptyState": {
|
||||
"title": "No Queue Data",
|
||||
"description": "No queue data available"
|
||||
},
|
||||
"empty": "No data",
|
||||
"conflicts": "Conflicts detected in queue",
|
||||
"noQueueData": "No queue data",
|
||||
@@ -257,7 +264,8 @@
|
||||
"critical": "Critical",
|
||||
"high": "High",
|
||||
"medium": "Medium",
|
||||
"low": "Low"
|
||||
"low": "Low",
|
||||
"unknown": "Unknown"
|
||||
},
|
||||
"type": {
|
||||
"all": "All Types"
|
||||
|
||||
@@ -206,6 +206,16 @@
|
||||
"button": "搜索文档"
|
||||
}
|
||||
},
|
||||
"ticker": {
|
||||
"session_created": "会话 {name} 已创建",
|
||||
"task_completed": "任务 {name} 已成功完成",
|
||||
"session_failed": "会话 {name} 失败",
|
||||
"workflow_started": "工作流 {name} 已启动",
|
||||
"status_changed": "{name} 状态已变更为 {status}",
|
||||
"waiting": "等待活动…",
|
||||
"disconnected": "活动通知已断开连接",
|
||||
"aria_label": "实时活动滚动条"
|
||||
},
|
||||
"dashboard": {
|
||||
"config": {
|
||||
"title": "部件",
|
||||
|
||||
@@ -25,6 +25,10 @@
|
||||
"markResolved": "标记为已解决",
|
||||
"github": "从 GitHub 拉取"
|
||||
},
|
||||
"messages": {
|
||||
"githubSyncSuccess": "GitHub 同步完成:新增 {imported}、更新 {updated}、跳过 {skipped}。",
|
||||
"githubSyncError": "GitHub 同步失败"
|
||||
},
|
||||
"filters": {
|
||||
"all": "全部",
|
||||
"open": "开放",
|
||||
@@ -147,7 +151,6 @@
|
||||
"groups": "组",
|
||||
"parallel": "并行",
|
||||
"sequential": "顺序",
|
||||
"emptyState": "无队列数据",
|
||||
"empty": "无数据",
|
||||
"conflicts": "队列中检测到冲突",
|
||||
"noQueueData": "无队列数据",
|
||||
|
||||
@@ -107,7 +107,8 @@
|
||||
"searchSuggestion": "尝试不同的搜索查询"
|
||||
},
|
||||
"footer": {
|
||||
"templateCount": "{count} 个模板"
|
||||
"templateCount": "{count} 个模板",
|
||||
"templateCount_plural": "{count} 个模板"
|
||||
},
|
||||
"card": {
|
||||
"nodes": "个节点",
|
||||
|
||||
Reference in New Issue
Block a user