返回 CodeWhale
account-entry.ts
根目录 / web / lib / content / account-entry.ts
1 /**
2 * account-entry.ts — copy for the public sign-in and create-account pages.
3 *
4 * codewhale.net is not the signed-in app; these pages send the person to
5 * app.codewhale.net while saying plainly that the terminal needs no account
6 * and that an account is never a paid plan by itself.
7 */
8
9 import type { LocalizedText } from "./vocabulary";
10
11 export const ACCOUNT_ENTRY_COPY = {
12 signIn: {
13 metaTitle: { en: "Sign in · Codewhale", zh: "登录 · Codewhale" },
14 kicker: { en: "Sign in", zh: "登录" },
15 title: { en: "Sign in to Codewhale.", zh: "登录 Codewhale 账户。" },
16 action: { en: "Sign in", zh: "登录" },
17 switchPrompt: { en: "Need an account?", zh: "还没有账户?" },
18 switchLabel: { en: "Create account", zh: "创建账户" },
19 },
20 signUp: {
21 metaTitle: { en: "Create account · Codewhale", zh: "创建账户 · Codewhale" },
22 kicker: { en: "Create account", zh: "创建账户" },
23 title: { en: "Create a Codewhale account.", zh: "创建 Codewhale 账户。" },
24 action: { en: "Create account", zh: "创建账户" },
25 switchPrompt: { en: "Already have an account?", zh: "已有账户?" },
26 switchLabel: { en: "Sign in", zh: "去登录" },
27 },
28 lede: {
29 en: "Sign in to the Codewhale app to keep your conversations and connected providers together. The web app is a development preview. To continue a terminal session in the browser, run /rc in that session. You can use the terminal without an account.",
30 zh: "登录 Codewhale 应用,集中管理对话与已连接的提供商。网页应用目前为开发预览版。要在浏览器中继续终端会话,请在该会话里运行 /rc。使用终端无需账户。",
31 },
32 metaDescription: {
33 en: "Access your Codewhale account and the app’s development preview. Connect to a terminal session from your browser with /rc.",
34 zh: "访问 Codewhale 账户与应用开发预览版。用 /rc 从浏览器连接终端会话。",
35 },
36 installLocally: { en: "Install locally", zh: "本机安装" },
37 } as const satisfies Record<string, unknown> & { lede: LocalizedText; installLocally: LocalizedText };
38
38 lines TYPESCRIPT