| 1 | import type { ChromeDict } from "../types"; |
| 2 | |
| 3 | /** |
| 4 | * Simplified Chinese chrome. Extracted verbatim from the previous inline |
| 5 | * `isZh` branches in components/nav.tsx, components/footer.tsx, |
| 6 | * components/nav-links.tsx, components/theme-toggle.tsx, |
| 7 | * components/ticker.tsx, and components/terminal-player.tsx — this was a |
| 8 | * move, not a retranslation. Only genuinely new keys carry new prose. |
| 9 | */ |
| 10 | export const chrome: ChromeDict = { |
| 11 | navDocs: "文档", |
| 12 | navStart: "指引", |
| 13 | navInstall: "安装", |
| 14 | navFaq: "常见问题", |
| 15 | navCommunity: "社区", |
| 16 | navContribute: "贡献", |
| 17 | |
| 18 | navDocsSecondary: "Docs", |
| 19 | navStartSecondary: "Start", |
| 20 | navInstallSecondary: "Install", |
| 21 | navFaqSecondary: "FAQ", |
| 22 | navCommunitySecondary: "Community", |
| 23 | navContributeSecondary: "Contribute", |
| 24 | |
| 25 | skipToContent: "跳到主要内容", |
| 26 | |
| 27 | |
| 28 | navPrimaryAria: "主导航", |
| 29 | navHomeAria: "Codewhale 首页", |
| 30 | |
| 31 | installCta: "安装 →", |
| 32 | |
| 33 | wordmarkSeal: "深", |
| 34 | wordmarkTag: "任何模型 · 本地优先", |
| 35 | |
| 36 | issueLabel: "第 {date} 期", |
| 37 | dateLocale: "zh-CN", |
| 38 | |
| 39 | starsAria: "GitHub 星标数", |
| 40 | githubFallback: "GitHub", |
| 41 | |
| 42 | tickerLiveLabel: "实 时", |
| 43 | tickerLiveTag: "LIVE", |
| 44 | tickerMerged: "已合并", |
| 45 | tickerOpened: "已提出", |
| 46 | tickerClosed: "已关闭", |
| 47 | tickerReleased: "已发布", |
| 48 | tickerFirstContribution: "首次贡献", |
| 49 | tickerBy: "作者 {handle}", |
| 50 | tickerAria: "仓库近期动态", |
| 51 | |
| 52 | traceLabel: "推理痕迹", |
| 53 | traceTabsAria: "会话片段", |
| 54 | |
| 55 | menuOpen: "打开菜单", |
| 56 | menuClose: "关闭菜单", |
| 57 | |
| 58 | themeAuto: "自动", |
| 59 | themeLight: "浅色", |
| 60 | themeDark: "深色", |
| 61 | themeAria: "文档主题:{mode}(点击切换)", |
| 62 | themeTitle: "文档主题 · 自动 / 浅色 / 深色", |
| 63 | |
| 64 | footerTagline: "潜入数据与代码的深海——开源运行时、文档与社区入口。", |
| 65 | footerProduct: "产品", |
| 66 | footerProject: "项目", |
| 67 | footerDocs: "文档", |
| 68 | footerGuide: "新手指引", |
| 69 | footerInstall: "安装", |
| 70 | footerModels: "模型", |
| 71 | footerRuntime: "运行时", |
| 72 | footerFaq: "常见问题", |
| 73 | footerIssues: "议题", |
| 74 | footerContribute: "参与贡献", |
| 75 | footerLicense: "MIT 许可证", |
| 76 | footerCanonicalSource: "官方源码:", |
| 77 | footerReleases: " · 发布:", |
| 78 | footerReleasesLink: "GitHub 发布页", |
| 79 | footerSecurity: "安全联系", |
| 80 | |
| 81 | switcherLabel: "语言", |
| 82 | switcherSwitchTo: "切换到{label}", |
| 83 | partialBadge: "(部分)", |
| 84 | }; |
| 85 |