* Rename pre-subscription onboarding funnel to Welcome. Move the ICP steps to /welcome, drop the social-connect checkout gate, hold unpaid members on a subscription-required screen, and keep legacy /onboarding URLs working until the post-subscription checklist lands. Closes #237 Co-authored-by: Cursor <cursoragent@cursor.com> * Drop legacy /onboarding ICP URL aliases. Unfinished users re-enter Welcome via EnsureAccountReady on next login; /onboarding stays free for the post-subscription checklist. Co-authored-by: Cursor <cursoragent@cursor.com> * Simplify Welcome PostHog event names. Use welcome.persona/goals/referral and drop the unused checkout case — begin checkout stays on the frontend as checkout.started / begin_checkout. Co-authored-by: Cursor <cursoragent@cursor.com> * Slim welcome goal options to match the #204 set. Drop team_collaboration, automate_api, and track_performance so the goals step stays at nine choices. Co-authored-by: Cursor <cursoragent@cursor.com> * Split Welcome AI goals into TryPost AI and MCP assistants. Rewrite ai_content for in-app generation and add use_mcp so Claude/ChatGPT/Cursor intent is captured separately across locales. Co-authored-by: Cursor <cursoragent@cursor.com> * Harden Welcome goals gate and drop dead checkout UI. Treat removed goal values as incomplete so mid-funnel users re-select, remove the unused canCheckout branch, and fix the pt-BR welcome progress label. Co-authored-by: Cursor <cursoragent@cursor.com> * Add password visibility toggle to the login form. Match the register eye control so users can reveal their password while signing in. Co-authored-by: Cursor <cursoragent@cursor.com> * Point the sidebar community link to Discord. Replace the X stay-updated entry with Join Discord and the trypost.it/discord invite. Co-authored-by: Cursor <cursoragent@cursor.com> * Rename the sidebar Discord link to Discord community. Softer label that matches the other support nav items. Co-authored-by: Cursor <cursoragent@cursor.com> * Fix broken Turkish Discord community translation. An unescaped apostrophe left a parse error in lang/tr/sidebar.php. Co-authored-by: Cursor <cursoragent@cursor.com> --------- Co-authored-by: Cursor <cursoragent@cursor.com>
55 lines
2.2 KiB
PHP
55 lines
2.2 KiB
PHP
<?php
|
||
|
||
declare(strict_types=1);
|
||
|
||
return [
|
||
'title' => '欢迎使用 TryPost',
|
||
'description' => '告诉我们最能描述你或你业务的选项,以便我们为你定制体验。',
|
||
'continue' => '继续',
|
||
'personas' => [
|
||
'creator' => '内容创作者',
|
||
'freelancer' => '自由职业者',
|
||
'developer' => '开发者',
|
||
'startup' => '初创公司',
|
||
'agency' => '代理机构',
|
||
'small_business' => '小型企业',
|
||
'marketer' => '营销人员',
|
||
'online_store' => '网店',
|
||
'other' => '其他',
|
||
],
|
||
'goals_title' => '你使用 TryPost 的目标是什么?',
|
||
'goals_description' => '选择所有符合的选项,我们会为你配置好 TryPost。',
|
||
'goals' => [
|
||
'save_time' => '一次发布到所有平台,节省时间',
|
||
'ai_content' => '用 TryPost AI 生成帖子',
|
||
'use_mcp' => '通过 Claude、ChatGPT 或 Cursor 创建帖子',
|
||
'plan_calendar' => '在日历上规划我的帖子',
|
||
'stay_on_brand' => '让每一条帖子都符合品牌调性',
|
||
'grow_audience' => '增长我的受众和互动',
|
||
'drive_sales' => '获得更多流量和销量',
|
||
'manage_clients' => '管理多个品牌或客户',
|
||
'just_exploring' => '目前只是随便看看',
|
||
'other' => '其他需求',
|
||
],
|
||
'referral_source_title' => '您是如何找到我们的?',
|
||
'referral_source_description' => '这有助于我们了解人们是如何发现 TryPost 的。',
|
||
'referral_source' => [
|
||
'google' => 'Google 或搜索',
|
||
'x' => 'X (Twitter)',
|
||
'linkedin' => 'LinkedIn',
|
||
'youtube' => 'YouTube',
|
||
'tiktok' => 'TikTok',
|
||
'instagram' => 'Instagram 或 Threads',
|
||
'reddit' => 'Reddit',
|
||
'product_hunt' => 'Product Hunt',
|
||
'ai_assistant' => 'AI 助手(ChatGPT、Claude 等)',
|
||
'friend' => '朋友或同事',
|
||
'blog' => '博客、新闻通讯或文章',
|
||
'other' => '其他',
|
||
],
|
||
'connect' => [
|
||
'title' => '连接你的第一个平台',
|
||
'description' => '至少关联一个社交账号即可开始排期。你可以随时添加更多。',
|
||
'must_connect' => '请至少连接一个平台以继续。',
|
||
],
|
||
];
|