Files
codewhale/web/lib/i18n/dictionaries/en.ts
T
Hunter Bown 9e45780ba0 feat(web): community site for deepseek-tui.com (mobile + color refresh) (#1108)
First commit of the Next.js community site that powers
deepseek-tui.com, deployed via Cloudflare Workers / OpenNext.

This commit lands the scaffold and applies the visual + correctness
pass requested by community feedback:

- Palette: drop the cream/Anthropic-feel paper (#F4F1E8) for a
  DeepSeek-aligned cool white + soft gray (#FFFFFF / #F4F6FB), with
  indigo accents kept. Soften default hairlines so a pure-white
  background reads clean instead of harsh.
- Mobile: add a hamburger menu (mobile-menu.tsx) so phones can reach
  Install / Docs / Activity / Roadmap / Contribute — previously the
  link list was hidden on phones with no replacement. Tighter hero,
  flexible button row, viewport-safe code blocks, columnar grids
  collapse cleanly under 768px, and the printed-almanac center rule
  is desktop-only now (it sliced through narrow viewports).
- "How it works" diagram: replace the hand-rolled ASCII art (which
  misaligned under CJK monospace because Han characters take 2
  columns vs Latin's 1, per dhh's note in WeChat) with a real
  mermaid diagram rendered client-side via dynamic import. Uses the
  mermaid.live standard syntax 庄表伟 recommended.
- Issue #1104: the docs listed a `deepseek-cn` provider that the
  v0.8.16 binary doesn't accept (`ProviderArg` in crates/cli only
  has 9 variants; the 10th lives only in the legacy tui/config.rs).
  derive-facts.mjs now omits `deepseek-cn` until that variant is
  wired through the shared ProviderKind, and the install page's
  China-network recipe uses `base_url` / `DEEPSEEK_BASE_URL` (which
  actually works on v0.8.16) instead of the unsupported provider.

Auto-deploys via .github/workflows/deploy-web.yml on push to main.

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-07 21:00:06 -05:00

59 lines
2.1 KiB
TypeScript

/** en dictionary — minimal, pages carry inline copy */
const en = {
nav: {
links: [
{ href: "/install", label: "Install", cn: "安装" },
{ href: "/docs", label: "Docs", cn: "文档" },
{ href: "/feed", label: "Activity", cn: "动态" },
{ href: "/roadmap", label: "Roadmap", cn: "路线" },
{ href: "/contribute", label: "Contribute", cn: "参与" },
],
edition: "Edition",
online: "API · Online",
install: "Install →",
starGitHub: "★ GitHub",
},
footer: {
cols: [
{
title: "Product",
cn: "产品",
items: [
{ label: "Install", href: "/install" },
{ label: "Documentation", href: "/docs" },
{ label: "Roadmap", href: "/roadmap" },
{ label: "Releases", href: "https://github.com/Hmbown/deepseek-tui/releases" },
],
},
{
title: "Community",
cn: "社区",
items: [
{ label: "Issues", href: "https://github.com/Hmbown/deepseek-tui/issues" },
{ label: "Pull Requests", href: "https://github.com/Hmbown/deepseek-tui/pulls" },
{ label: "Discussions", href: "https://github.com/Hmbown/deepseek-tui/discussions" },
{ label: "Contribute", href: "/contribute" },
],
},
{
title: "Resources",
cn: "资源",
items: [
{ label: "Activity Feed", href: "/feed" },
{ label: "Code of Conduct", href: "https://github.com/Hmbown/deepseek-tui/blob/main/CODE_OF_CONDUCT.md" },
{ label: "Security", href: "https://github.com/Hmbown/deepseek-tui/blob/main/SECURITY.md" },
{ label: "License (MIT)", href: "https://github.com/Hmbown/deepseek-tui/blob/main/LICENSE" },
],
},
],
tagline:
"Open-source terminal-native coding agent built on DeepSeek V4. MIT licensed. Maintained from a small workshop in Texas. Pull requests welcome.",
crafted: "Made with care · 用心制作",
poweredBy: "本网站由 DeepSeek V4-Flash 协同维护",
mirrors: "镜像源 / Mirror",
},
localeSwitch: { en: "EN", zh: "中文" },
};
export default en;