| 1 | import type { DocsGuideDict } from "../types"; |
| 2 | |
| 3 | /** |
| 4 | * Simplified-Chinese dictionary for the docs "Getting started" page. |
| 5 | * Copy moved verbatim from the former `isZh` branches in |
| 6 | * `app/[locale]/docs/guide/page.tsx`. |
| 7 | */ |
| 8 | export const docsGuide: DocsGuideDict = { |
| 9 | metaTitle: "新手指引 · Codewhale 文档", |
| 10 | metaDescription: |
| 11 | "安装 Codewhale、连接模型并开始第一项任务。需要模型与角色列表时,再配置 Fleet。", |
| 12 | bodyClassName: "text-ink-soft leading-[1.9] tracking-wide", |
| 13 | overviewTitle: "新手指引", |
| 14 | overviewLead: |
| 15 | "安装 Codewhale,连接模型,然后交给它一项任务。Fleet 配置为可选步骤。", |
| 16 | sessionTitle: "看一次真实会话", |
| 17 | sessionLead: |
| 18 | "查看一项任务从首次请求到完成的全过程。", |
| 19 | nextTitle: "接下来", |
| 20 | sourceNote: |
| 21 | "更多细节见文档中的用户指南与快捷键说明。", |
| 22 | }; |
| 23 |