trypost/lang/en/welcome.php
Paulo Castellano 15f87aebe4
Add social connect step to welcome before Stripe (#293)
* feat: add social connect step to welcome before Stripe checkout

Ask new owners to connect a network after referral source so we can track welcome.connect in PostHog and still let them continue to checkout without a connection.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Nest welcome connect copy under a connect array.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Require a connected social account before welcome checkout.

Skip is no longer allowed, and the welcome layout takes a Tailwind size so the connect grid can sit two rows of six.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Harden the welcome connect step after review.

Track connect only after Stripe creates a session, restore a missing workspace before showing networks, and cover the remaining checkout and analytics cases.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Refactor social account status handling across components

Updated the SocialAccountsGrid, NetworkConnectGrid, onboarding, and welcome connect components to utilize the new SocialAccountStatus enum for improved clarity and maintainability. This change replaces string literals for account statuses with the enum values, enhancing type safety and consistency throughout the application.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Refactor workspace resolution in WelcomeController and StoreWelcomeConnectRequest

Updated the WelcomeController and StoreWelcomeConnectRequest to directly access the user's current workspace, simplifying the code by removing the resolveCurrentWorkspace method. This change enhances readability and maintains functionality by ensuring the current workspace is correctly utilized in the connection process. Additionally, removed outdated test cases related to workspace restoration.

* Inline welcome connect PostHog platforms from the current workspace.

Drop the extra helper — the grid already loads accounts the same way as onboarding and accounts.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Inline Stripe checkout into the welcome connect store.

startCheckout was a one-caller wrapper; storeConnect now matches the other welcome steps.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Move welcome connect validation into the controller.

The FormRequest had no input to validate and duplicated step-gating. Require a connected account in storeConnect, and drop the dead owner abort plus the always-true PostHog connected flag.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Show welcome toasts and cover remaining connect cases.

Mount the app Toast host on WelcomeLayout so OAuth, Telegram, and disconnect feedback is visible. Add tests for stale goals, an empty workspace grid, accounts on another workspace, and skipped identify when Stripe fails.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Assume a welcome workspace, validate connect in the FormRequest, and add browser tests.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Rename WelcomeEvent::dashboardFunnel() to funnel().

Co-authored-by: Cursor <cursoragent@cursor.com>

* Identify connected platforms from the social account observer.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Queue connected-platform identify on the posthog queue.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Harden welcome connect: 404 without a workspace, and keep step redirects ahead of connect validation.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Identify connected platforms on workspace and account groups, and keep the account union on the owner.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Share hasCurrentGoals on User and keep Stripe checkout when PostHog capture fails.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Skip welcome connect validation when the controller would redirect the user away.

Co-authored-by: Cursor <cursoragent@cursor.com>

* Move current-goal membership onto the Goal enum.

Co-authored-by: Cursor <cursoragent@cursor.com>

---------

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-17 19:37:43 -03:00

67 lines
2.8 KiB
PHP

<?php
declare(strict_types=1);
return [
'title' => 'What best describes you?',
'description' => 'Choose the closest match and we\'ll tailor your experience.',
'continue' => 'Continue',
'subscription_required_title' => 'Waiting for the account owner',
'subscription_required_description' => 'This account doesn\'t have an active subscription yet. Ask the account owner to finish checkout — you\'ll get full access as soon as it is active.',
'subscription_required_owner' => 'Your account owner is :name.',
'subscription_required_auto' => 'This page updates automatically — no need to refresh.',
'progress' => 'Welcome progress',
'go_to_step' => 'Go to step :step',
'step_current' => 'Step :step (current)',
'personas' => [
'creator' => 'Content creator',
'freelancer' => 'Freelancer',
'developer' => 'Developer',
'startup' => 'Startup',
'agency' => 'Agency',
'small_business' => 'Small business',
'marketer' => 'Marketer',
'online_store' => 'Online store',
'other' => 'Other',
],
'goals_title' => 'What\'s your goal?',
'goals_description' => 'Pick everything that fits and we\'ll set TryPost up for you.',
'goals' => [
'save_time' => 'Save time by posting everywhere at once',
'ai_content' => 'Generate posts with TryPost AI',
'use_mcp' => 'Create posts from Claude, ChatGPT, or Cursor',
'plan_calendar' => 'Plan my posts on a calendar',
'stay_on_brand' => 'Keep every post on brand',
'grow_audience' => 'Grow my audience and engagement',
'drive_sales' => 'Get more traffic and sales',
'manage_clients' => 'Manage several brands or clients',
'just_exploring' => 'Just exploring for now',
'other' => 'Something else',
],
'referral_source_title' => 'How did you find us?',
'referral_source_description' => 'This helps us understand how people discover TryPost.',
'referral_source' => [
'google' => 'Google',
'x' => 'X (Twitter)',
'linkedin' => 'LinkedIn',
'youtube' => 'YouTube',
'tiktok' => 'TikTok',
'instagram' => 'Instagram',
'threads' => 'Threads',
'reddit' => 'Reddit',
'product_hunt' => 'Product Hunt',
'github' => 'GitHub',
'hacker_news' => 'Hacker News',
'directories' => 'Directory (G2, Capterra…)',
'ai_assistant' => 'ChatGPT / Claude',
'friend' => 'Friend or colleague',
'founder' => 'Founder',
'blog' => 'Blog / newsletter',
'other' => 'Something else',
],
'connect' => [
'title' => 'Connect a social account',
'description' => 'Choose at least one network where TryPost can publish your content.',
'required' => 'Connect at least one social account to continue.',
],
];