返回 CodeWhale
computer-use.ts
根目录 / web / lib / i18n / dictionaries / zh / computer-use.ts
1 import type { ComputerUseDict } from "../types";
2
3 /**
4 * Simplified-Chinese dictionary for `app/[locale]/computer-use/page.tsx` and
5 * the Computer Use section of the install page. Product names, the menu
6 * items Pause, Stop and Check for updates, and the macOS setting names stay
7 * as the app shows them.
8 */
9 export const computerUse: ComputerUseDict = {
10 metaTitle: "Mac 版 Computer Use · Codewhale",
11 metaDescription: "下载并设置 Mac 版 Codewhale Computer Use。提供应用后台操作、权限设置,以及由用户控制的暂停和停止功能。",
12 title: "Computer Use",
13 lead: "让 Codewhale 在应用中完成操作,你也可以继续工作。Mac 助手将权限设置、应用后台操作,以及暂停或停止输入的控制集中在菜单栏中。",
14 publisher: "由 Codewhale 开发",
15 download: "下载 Mac 版",
16 downloadZip: "ZIP 压缩包(供应用内更新使用)",
17 requirements: "macOS 13.5 或更高版本 · Apple 芯片与 Intel",
18 included: "只需下载一个应用,无需另行安装 Node 或编译器。",
19 pendingTitle: "Mac 下载包准备中",
20 pendingBody: "完成 Apple 公证和发布检查后,正式安装包将在此提供。",
21 unavailableTitle: "暂时无法查询下载状态",
22 unavailableBody: "请刷新页面重试,或通过下方链接查看已发布版本。",
23 releases: "已发布版本",
24 receipt: "下载校验信息",
25 setup: "设置你的 Mac",
26 steps: [
27 { title: "安装应用", body: "打开下载的磁盘映像,将 Codewhale Computer Use 拖入“应用程序”。从“应用程序”中打开它,然后点击菜单栏中的鲸鱼图标,选择 Computer Use。" },
28 { title: "检查权限", body: "通过设置按钮打开系统设置中的“辅助功能”和“屏幕录制”。由你决定授予哪些权限。" },
29 { title: "运行后台检查", body: "助手会打开一个临时练习窗口,输入文本并截取该窗口,同时检查运行期间指针或前台应用是否发生变化。" },
30 { title: "连接 Codewhale", body: "在 Codewhale 插件市场中审查、信任并启用 Computer Use。请使用 0.3.1 或更高版本,确保本地操作受助手的暂停和停止控制。" },
31 ],
32 controlsTitle: "继续工作,掌握控制权。",
33 controlsBody: "受支持的操作可在选定应用的后台完成。需要前台控制的应用或手势必须得到你的授权。菜单会显示目标应用与输入模式;Pause 暂停助手输入,Stop 结束助手的现有会话。",
34 updateTitle: "由你决定何时更新",
35 updateBody: "在应用中选择 Check for updates。安装更新前,助手会校验下载文件、Codewhale 签名和 Apple 公证,并保留旧版应用以便恢复。",
36 help: "设置与故障排查",
37 notes: "版本说明",
38 demo: "查看后台检查演示",
39 source: "源码与其他平台",
40 platforms: "此下载适用于 Mac。Windows 和 Linux 目前通过源码插件及宿主端设置使用。",
41 installTitle: "Mac 版 Computer Use",
42 installLead: "通过 Computer Use 助手添加应用后台操作能力。设置 Mac 权限、运行后台检查,并从菜单栏暂停或停止助手输入。",
43 installLink: "Computer Use 下载与设置",
44 };
45
45 lines TYPESCRIPT