mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-13 02:41:50 +08:00
feat: initialize monorepo with package.json for CCW workflow platform
This commit is contained in:
@@ -51,7 +51,8 @@
|
||||
"clearAll": "Clear all",
|
||||
"select": "Select",
|
||||
"selectAll": "Select All",
|
||||
"deselectAll": "Deselect All"
|
||||
"deselectAll": "Deselect All",
|
||||
"resetLayout": "Reset Layout"
|
||||
},
|
||||
"status": {
|
||||
"active": "Active",
|
||||
@@ -174,15 +175,75 @@
|
||||
"help": {
|
||||
"title": "Help & Documentation",
|
||||
"description": "Learn how to use CCW Dashboard and get the most out of your workflows",
|
||||
"fullDocs": "Full Documentation",
|
||||
"viewAll": "View All",
|
||||
"getStarted": "Get Started",
|
||||
"support": {
|
||||
"title": "Need more help?",
|
||||
"description": "Check the project documentation or reach out for support.",
|
||||
"documentation": "Documentation",
|
||||
"tutorials": "Tutorials"
|
||||
},
|
||||
"searchDocs": {
|
||||
"title": "Search Documentation",
|
||||
"description": "Find answers fast with our comprehensive documentation search",
|
||||
"button": "Search Docs"
|
||||
}
|
||||
},
|
||||
"ticker": {
|
||||
"session_created": "Session {name} created",
|
||||
"task_completed": "Task {name} completed successfully",
|
||||
"session_failed": "Session {name} failed",
|
||||
"workflow_started": "Workflow {name} started",
|
||||
"status_changed": "{name} status changed to {status}",
|
||||
"waiting": "Waiting for activity...",
|
||||
"disconnected": "Ticker disconnected",
|
||||
"aria_label": "Real-time activity ticker"
|
||||
},
|
||||
"all": "All",
|
||||
"yes": "Yes",
|
||||
"no": "No",
|
||||
"navigation": {
|
||||
"header": {
|
||||
"brand": "CCW Dashboard"
|
||||
},
|
||||
"main": {
|
||||
"home": "Home",
|
||||
"project": "Project",
|
||||
"sessions": "Sessions",
|
||||
"liteTasks": "Lite Tasks",
|
||||
"orchestrator": "Orchestrator",
|
||||
"coordinator": "Coordinator",
|
||||
"executions": "Executions",
|
||||
"loops": "Loops",
|
||||
"history": "History",
|
||||
"memory": "Memory",
|
||||
"prompts": "Prompts",
|
||||
"skills": "Skills",
|
||||
"commands": "Commands",
|
||||
"issues": "Issues",
|
||||
"hooks": "Hooks",
|
||||
"settings": "Settings",
|
||||
"rules": "Rules",
|
||||
"codexlens": "CodexLens",
|
||||
"apiSettings": "API Settings",
|
||||
"help": "Help"
|
||||
},
|
||||
"groups": {
|
||||
"overview": "Overview",
|
||||
"workflow": "Workflow",
|
||||
"knowledge": "Knowledge",
|
||||
"issues": "Issues",
|
||||
"tools": "Tools",
|
||||
"configuration": "Configuration"
|
||||
},
|
||||
"sidebar": {
|
||||
"collapse": "Collapse",
|
||||
"collapseAria": "Collapse sidebar",
|
||||
"expand": "Expand",
|
||||
"expandAria": "Expand sidebar"
|
||||
}
|
||||
},
|
||||
"askQuestion": {
|
||||
"defaultTitle": "Questions",
|
||||
"description": "Please answer the following questions",
|
||||
@@ -192,6 +253,12 @@
|
||||
"required": "This question is required"
|
||||
},
|
||||
"coordinator": {
|
||||
"page": {
|
||||
"title": "Coordinator",
|
||||
"status": "Status: {status}",
|
||||
"startButton": "Start Coordinator",
|
||||
"noNodeSelected": "Select a node to view details"
|
||||
},
|
||||
"modal": {
|
||||
"title": "Start Coordinator",
|
||||
"description": "Describe the task you want the coordinator to execute"
|
||||
@@ -256,5 +323,184 @@
|
||||
"error": {
|
||||
"submitFailed": "Failed to submit answer"
|
||||
}
|
||||
},
|
||||
"feedback": {
|
||||
"error": {
|
||||
"network": "Network error. Please check your connection and try again.",
|
||||
"timeout": "Request timed out. Please try again.",
|
||||
"auth": "Authentication failed. Please check your permissions.",
|
||||
"validation": "Please check your input and try again.",
|
||||
"server": "Server error. Please try again later.",
|
||||
"notFound": "The requested resource was not found.",
|
||||
"unknown": "An unexpected error occurred. Please try again."
|
||||
},
|
||||
"skillToggle": {
|
||||
"success": "Skill status updated successfully",
|
||||
"error": "Failed to update skill status"
|
||||
},
|
||||
"skillEnable": {
|
||||
"success": "Skill enabled successfully",
|
||||
"error": "Failed to enable skill"
|
||||
},
|
||||
"skillDisable": {
|
||||
"success": "Skill disabled successfully",
|
||||
"error": "Failed to disable skill"
|
||||
},
|
||||
"commandExecute": {
|
||||
"success": "Command executed successfully",
|
||||
"error": "Failed to execute command"
|
||||
},
|
||||
"commandToggle": {
|
||||
"success": "Command status updated",
|
||||
"error": "Failed to update command status"
|
||||
},
|
||||
"sessionCreate": {
|
||||
"success": "Session created successfully",
|
||||
"error": "Failed to create session"
|
||||
},
|
||||
"sessionDelete": {
|
||||
"success": "Session deleted successfully",
|
||||
"error": "Failed to delete session"
|
||||
},
|
||||
"sessionUpdate": {
|
||||
"success": "Session updated successfully",
|
||||
"error": "Failed to update session"
|
||||
},
|
||||
"settingsSave": {
|
||||
"success": "Settings saved successfully",
|
||||
"error": "Failed to save settings"
|
||||
},
|
||||
"settingsReset": {
|
||||
"success": "Settings reset to defaults",
|
||||
"error": "Failed to reset settings"
|
||||
},
|
||||
"memoryImport": {
|
||||
"success": "Memory imported successfully",
|
||||
"error": "Failed to import memory"
|
||||
},
|
||||
"memoryExport": {
|
||||
"success": "Memory exported successfully",
|
||||
"error": "Failed to export memory"
|
||||
},
|
||||
"memoryDelete": {
|
||||
"success": "Memory deleted successfully",
|
||||
"error": "Failed to delete memory"
|
||||
},
|
||||
"coordinatorStart": {
|
||||
"success": "Coordinator started successfully",
|
||||
"error": "Failed to start coordinator"
|
||||
},
|
||||
"coordinatorStop": {
|
||||
"success": "Coordinator stopped",
|
||||
"error": "Failed to stop coordinator"
|
||||
},
|
||||
"hookToggle": {
|
||||
"success": "Hook status updated",
|
||||
"error": "Failed to update hook status"
|
||||
},
|
||||
"indexRebuild": {
|
||||
"success": "Index rebuild started",
|
||||
"error": "Failed to rebuild index"
|
||||
},
|
||||
"ruleCreate": {
|
||||
"success": "Rule created successfully",
|
||||
"error": "Failed to create rule"
|
||||
},
|
||||
"ruleUpdate": {
|
||||
"success": "Rule updated successfully",
|
||||
"error": "Failed to update rule"
|
||||
},
|
||||
"ruleDelete": {
|
||||
"success": "Rule deleted successfully",
|
||||
"error": "Failed to delete rule"
|
||||
},
|
||||
"promptCreate": {
|
||||
"success": "Prompt created successfully",
|
||||
"error": "Failed to create prompt"
|
||||
},
|
||||
"promptUpdate": {
|
||||
"success": "Prompt updated successfully",
|
||||
"error": "Failed to update prompt"
|
||||
},
|
||||
"promptDelete": {
|
||||
"success": "Prompt deleted successfully",
|
||||
"error": "Failed to delete prompt"
|
||||
},
|
||||
"providerCreate": {
|
||||
"success": "Provider created successfully",
|
||||
"error": "Failed to create provider"
|
||||
},
|
||||
"providerUpdate": {
|
||||
"success": "Provider updated successfully",
|
||||
"error": "Failed to update provider"
|
||||
},
|
||||
"providerDelete": {
|
||||
"success": "Provider deleted successfully",
|
||||
"error": "Failed to delete provider"
|
||||
},
|
||||
"cliToolInstall": {
|
||||
"success": "Tool installed successfully",
|
||||
"error": "Failed to install tool"
|
||||
},
|
||||
"cliToolUninstall": {
|
||||
"success": "Tool uninstalled successfully",
|
||||
"error": "Failed to uninstall tool"
|
||||
},
|
||||
"cliToolUpgrade": {
|
||||
"success": "Tool upgraded successfully",
|
||||
"error": "Failed to upgrade tool"
|
||||
},
|
||||
"codexLensConfigUpdate": {
|
||||
"success": "Configuration updated successfully",
|
||||
"error": "Failed to update configuration"
|
||||
},
|
||||
"codexLensBootstrap": {
|
||||
"success": "CodexLens bootstrapped successfully",
|
||||
"error": "Failed to bootstrap CodexLens"
|
||||
},
|
||||
"codexLensInstallSemantic": {
|
||||
"success": "Semantic dependencies installed",
|
||||
"error": "Failed to install semantic dependencies"
|
||||
},
|
||||
"codexLensUninstall": {
|
||||
"success": "CodexLens uninstalled",
|
||||
"error": "Failed to uninstall CodexLens"
|
||||
},
|
||||
"codexLensDownloadModel": {
|
||||
"success": "Model downloaded successfully",
|
||||
"error": "Failed to download model"
|
||||
},
|
||||
"codexLensDeleteModel": {
|
||||
"success": "Model deleted successfully",
|
||||
"error": "Failed to delete model"
|
||||
},
|
||||
"codexLensUpdateEnv": {
|
||||
"success": "Environment variables updated",
|
||||
"error": "Failed to update environment variables"
|
||||
},
|
||||
"codexLensSelectGpu": {
|
||||
"success": "GPU selected successfully",
|
||||
"error": "Failed to select GPU"
|
||||
},
|
||||
"codexLensResetGpu": {
|
||||
"success": "GPU reset successfully",
|
||||
"error": "Failed to reset GPU"
|
||||
},
|
||||
"codexLensUpdatePatterns": {
|
||||
"success": "Ignore patterns updated",
|
||||
"error": "Failed to update ignore patterns"
|
||||
},
|
||||
"codexLensRebuildIndex": {
|
||||
"success": "Index rebuild started",
|
||||
"error": "Failed to rebuild index"
|
||||
},
|
||||
"codexLensUpdateIndex": {
|
||||
"success": "Index update started",
|
||||
"error": "Failed to update index"
|
||||
},
|
||||
"codexLensCancelIndexing": {
|
||||
"success": "Indexing cancelled",
|
||||
"error": "Failed to cancel indexing"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user