Files
DevFlow/src/i18n/en/ideas.ts
T
lxy 5c539fe764 修复: 前端 TS 阻断 + G1/G2 单测 + 归档已完成项
- 修复 vue-tsc 3 阻断: i18n 重复 err key 删除 + store 补 relateIdeas
- G1: extract_pinned_goal 单测 10 条(mention剥离/截断/空输入/全角冒号)
- G2: is_empty_tool_result 单测 11 条(JSON标记/中文/英文/非空判定)
- 归档: todo.md/docs/todo.md/待决策.md/待审查.md 已完成项迁入归档
2026-06-27 22:35:37 +08:00

144 lines
4.1 KiB
TypeScript

export default {
ideas: {
// Page header
title: '💡 Ideas',
refresh: '🔄 Refresh',
capture: '✨ Capture Idea',
// Filter bar
searchPlaceholder: 'Search ideas...',
filter: {
all: 'All',
hot: 'Hot',
pending: 'Pending',
promoted: 'Promoted',
},
// Empty state
emptyState: 'Select an idea to view details',
// List empty / async button placeholders
listEmpty: '📭 No ideas yet. Click "Capture Idea" at the top right to start.',
creating: 'Creating…',
deleting: 'Deleting…',
promoting: 'Promoting…',
// Errors
err: {
loadFailed: 'Failed to load ideas',
createFailed: 'Failed to create idea',
deleteFailed: 'Failed to delete idea',
relateFailed: 'Failed to update relations',
},
// Adversarial evaluation
adversarialTitle: '⚖️ Adversarial Evaluation',
evalModeHeuristic: 'Heuristic',
positive: '📈 Pro',
negative: '📉 Con',
confidence: '{n}% confidence',
analystTitle: '🧠 AI Analyst Conclusion',
finalScore: 'Overall score: {score}/10',
netSentiment: 'Overall sentiment: {tone} ({n})',
sentimentPositive: 'Positive',
sentimentNegative: 'Cautious',
sentimentNeutral: 'Neutral',
actionTitle: '💡 Action Items',
evaluating: '⏳ Evaluating…',
startEval: '🔍 Start Adversarial Eval',
retryEval: 'Retry',
evalModeLlm: 'LLM deep eval',
evalModeFallback: 'Heuristic fallback',
// Description editing
editDesc: 'Edit',
saveDesc: 'Save',
cancelEdit: 'Cancel',
// List sorting
sortByScore: 'By score',
sortByTime: 'By time',
// Assessment badges
assessment: {
'immediate action': '🚀 Act immediately',
soon: '📅 Act soon',
'with resources': '📦 Act with resources',
'research more': '🔍 Needs more research',
monitor: '👁️ Keep monitoring',
cancel: '❌ Cancel idea',
},
// Project detail "Source Idea" card (promote carries evaluation conclusion back)
sourceIdea: '💡 Source Idea',
sourceIdeaNotEvaluated: 'Idea not evaluated yet, click to view',
// Multi-dimensional score
multiScoreTitle: '📊 Multi-dim Score',
noEval: 'No evaluation yet',
// Evaluation history (version timeline)
historyTitle: '📜 Evaluation History',
historyVersion: 'Version',
historyLatest: 'Latest',
historyEmpty: 'No evaluation history',
historyLoading: 'Loading history…',
// Related ideas
relatedTitle: '🔗 Related Ideas',
relatedEmpty: 'No relations',
relatedManage: 'Manage relations',
relatedConfirm: 'Confirm',
relatedCancel: 'Cancel',
// Idea stats panel (used by IdeasPanel)
statsTitle: '📈 Overview',
statsTotal: 'Total',
statsPending: 'Pending',
statsPromoted: 'Promoted',
statsAvgScore: 'Avg score',
// Tags
tagsTitle: '🏷️ Tags',
noTags: 'No tags yet',
// Status management
statusTitle: '📋 Status',
status: {
draft: '📝 Draft',
pending_review: '⏳ Pending',
approved: '✅ Approved',
promoted: '🚀 Promoted',
rejected: '❌ Rejected',
},
// Action buttons
promoteToProject: '🚀 Promote to Project',
deleteIdea: '🗑️ Delete Idea',
promotedProject: 'Promoted to project',
// Capture modal
captureTitle: '✨ Capture New Idea',
fieldTitle: 'Title',
fieldDesc: 'Description',
fieldTags: 'Tags',
fieldPriority: 'Priority',
fieldSource: 'Source',
titlePlaceholder: 'Describe your idea in one sentence...',
descPlaceholder: 'More details (optional)...',
tagsPlaceholder: 'Comma-separated, e.g. tools, efficiency, automation',
sourcePlaceholder: 'Source (optional, e.g. user feedback, competitor analysis)',
priorityCritical: 'Critical',
priorityHigh: 'High',
priorityMedium: 'Medium',
priorityLow: 'Low',
// Deep link not found
notFound: 'Idea not found or deleted',
// Native dialog text (confirm / alert)
confirmDelete: 'Delete idea "{title}"? This cannot be undone.',
promoteFailed: 'Promotion failed',
evalFailed: 'Evaluation failed',
},
}