i18n: 全部用户可见字符串统一为英文(46个文件)

- 所有Command/Tool/Core/MCP/Plugin中的中文提示改为英文
- Javadoc注释和行内注释保留中文不变
- AI提示词(compact/commit/review等)改为英文
- 编译验证通过

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
liuzh
2026-04-02 00:30:47 +08:00
co-authored by Copilot
parent 1172ab6b08
commit ff734d6b0d
46 changed files with 469 additions and 469 deletions
@@ -42,7 +42,7 @@ public class ExportCommand implements SlashCommand {
// 至少需要系统提示 + 用户消息 + 助手回复
if (history.size() < 3) {
return AnsiStyle.yellow("暂无足够的对话内容可导出");
return AnsiStyle.yellow("Not enough conversation content to export");
}
// 确定输出路径
@@ -67,10 +67,10 @@ public class ExportCommand implements SlashCommand {
int msgCount = history.size();
int lineCount = (int) markdown.lines().count();
return AnsiStyle.green("对话已导出: " + outputPath)
return AnsiStyle.green("Conversation exported: " + outputPath)
+ AnsiStyle.dim(" (" + msgCount + " messages, " + lineCount + " lines)");
} catch (IOException e) {
return AnsiStyle.red("导出失败: " + e.getMessage());
return AnsiStyle.red("Export failed: " + e.getMessage());
}
}