mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-22 21:54:45 +08:00
137 lines
3.7 KiB
TypeScript
137 lines
3.7 KiB
TypeScript
import type { Translations } from "./types";
|
||
|
||
export const zhCN: Translations = {
|
||
// Locale meta
|
||
locale: {
|
||
localName: "中文",
|
||
},
|
||
|
||
// Common
|
||
common: {
|
||
home: "首页",
|
||
settings: "设置",
|
||
delete: "删除",
|
||
openInNewWindow: "在新窗口打开",
|
||
close: "关闭",
|
||
more: "更多",
|
||
search: "搜索",
|
||
download: "下载",
|
||
thinking: "思考",
|
||
artifacts: "文件",
|
||
public: "公共",
|
||
custom: "自定义",
|
||
},
|
||
|
||
// Welcome
|
||
welcome: {
|
||
greeting: "👋 你好,欢迎回来!",
|
||
description:
|
||
"欢迎使用 🦌 DeerFlow,一个完全开源的超级智能体。通过内置和\n自定义的 Skills,DeerFlow 可以帮你搜索网络、分析数据,\n还能为你生成幻灯片、网页等作品,几乎可以做任何事情。",
|
||
},
|
||
|
||
// Clipboard
|
||
clipboard: {
|
||
copyToClipboard: "复制到剪贴板",
|
||
copiedToClipboard: "已复制到剪贴板",
|
||
failedToCopyToClipboard: "复制到剪贴板失败",
|
||
},
|
||
|
||
// Input Box
|
||
inputBox: {
|
||
placeholder: "今天我能为你做些什么?",
|
||
thinking: "思考",
|
||
thinkingEnabled: "思考功能已启用",
|
||
thinkingDisabled: "思考功能已禁用",
|
||
clickToDisableThinking: "点击禁用思考功能",
|
||
clickToEnableThinking: "点击启用思考功能",
|
||
planMode: "To-do 模式",
|
||
planModeEnabled: "To-do 模式已启用",
|
||
planModeDisabled: "To-do 模式已禁用",
|
||
clickToDisablePlanMode: "点击禁用 To-do 模式",
|
||
clickToEnablePlanMode: "点击启用 To-do 模式",
|
||
searchModels: "搜索模型...",
|
||
},
|
||
|
||
// Sidebar
|
||
sidebar: {
|
||
newChat: "新对话",
|
||
chats: "对话",
|
||
recentChats: "最近的聊天",
|
||
},
|
||
|
||
// Breadcrumb
|
||
breadcrumb: {
|
||
workspace: "工作区",
|
||
chats: "对话",
|
||
},
|
||
|
||
// Workspace
|
||
workspace: {
|
||
githubTooltip: "DeerFlow 在 Github",
|
||
},
|
||
|
||
// Conversation
|
||
conversation: {
|
||
noMessages: "还没有消息",
|
||
startConversation: "开始新的对话以查看消息",
|
||
},
|
||
|
||
// Chats
|
||
chats: {
|
||
searchChats: "搜索对话",
|
||
},
|
||
|
||
// Tool calls
|
||
toolCalls: {
|
||
moreSteps: (count: number) => `查看其他 ${count} 个步骤`,
|
||
lessSteps: "隐藏步骤",
|
||
executeCommand: "执行命令",
|
||
presentFiles: "展示文件",
|
||
needYourHelp: "需要你的协助",
|
||
useTool: (toolName: string) => `使用 “${toolName}” 工具`,
|
||
searchForRelatedInfo: "搜索相关信息",
|
||
searchOnWebFor: (query: string) => `在网络上搜索 “${query}”`,
|
||
viewWebPage: "查看网页",
|
||
listFolder: "列出文件夹",
|
||
readFile: "读取文件",
|
||
writeFile: "写入文件",
|
||
writeTodos: "更新 To-do 列表",
|
||
},
|
||
|
||
// Settings
|
||
settings: {
|
||
title: "设置",
|
||
description: "根据你的偏好调整 DeerFlow 的界面和行为。",
|
||
sections: {
|
||
appearance: "外观",
|
||
tools: "工具",
|
||
skills: "技能",
|
||
acknowledge: "致谢",
|
||
},
|
||
appearance: {
|
||
themeTitle: "主题",
|
||
themeDescription: "跟随系统或选择固定的界面模式。",
|
||
system: "系统",
|
||
light: "浅色",
|
||
dark: "深色",
|
||
systemDescription: "自动跟随系统主题。",
|
||
lightDescription: "更明亮的配色,适合日间使用。",
|
||
darkDescription: "更暗的配色,减少眩光方便专注。",
|
||
languageTitle: "语言",
|
||
languageDescription: "在不同语言之间切换。",
|
||
},
|
||
tools: {
|
||
title: "工具",
|
||
description: "管理 MCP 工具的配置和启用状态。",
|
||
},
|
||
skills: {
|
||
title: "技能",
|
||
description: "管理智能体的技能配置和启用状态。",
|
||
},
|
||
acknowledge: {
|
||
emptyTitle: "致谢",
|
||
emptyDescription: "相关的致谢信息会展示在这里。",
|
||
},
|
||
},
|
||
};
|