- add an end-to-end walk (account gate -> persona -> goals -> connect -> Stripe) and a self-hosted bypass test, plus the connect no-workspace and just-exploring-saved cases - drop the just_exploring exclusivity: the backend now saves any valid goal combination (the front-end still clears siblings as a UX nicety), removing the withValidator rule, the unused Goal::isExclusive(), and the now-unused goals_exclusive copy
41 lines
1.6 KiB
PHP
41 lines
1.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'title' => 'Welcome to TryPost',
|
|
'description' => 'Tell us what best describes you or your business so we can tailor your experience.',
|
|
'continue' => 'Continue',
|
|
'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 with TryPost?',
|
|
'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' => 'Create posts faster with AI',
|
|
'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',
|
|
'team_collaboration' => 'Work with my team',
|
|
'automate_api' => 'Automate posting with the API, MCP or code',
|
|
'track_performance' => 'See how my posts perform',
|
|
'just_exploring' => 'Just exploring for now',
|
|
'other' => 'Something else',
|
|
],
|
|
'connect' => [
|
|
'title' => 'Connect your first network',
|
|
'description' => 'Link at least one social account to start scheduling. You can add more anytime.',
|
|
'must_connect' => 'Connect at least one network to continue.',
|
|
],
|
|
];
|