- 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.8 KiB
PHP
41 lines
1.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'title' => 'Bienvenido a TryPost',
|
|
'description' => 'Cuéntanos qué te describe mejor a ti o a tu negocio para personalizar tu experiencia.',
|
|
'continue' => 'Continuar',
|
|
'personas' => [
|
|
'creator' => 'Creador de contenido',
|
|
'freelancer' => 'Freelancer',
|
|
'developer' => 'Desarrollador',
|
|
'startup' => 'Startup',
|
|
'agency' => 'Agencia',
|
|
'small_business' => 'Pequeña empresa',
|
|
'marketer' => 'Profesional de marketing',
|
|
'online_store' => 'Tienda online',
|
|
'other' => 'Otro',
|
|
],
|
|
'goals_title' => '¿Cuál es tu objetivo con TryPost?',
|
|
'goals_description' => 'Marca todo lo que encaje y adaptamos TryPost a ti.',
|
|
'goals' => [
|
|
'save_time' => 'Ahorrar tiempo publicando en todas mis redes a la vez',
|
|
'ai_content' => 'Crear publicaciones más rápido con IA',
|
|
'plan_calendar' => 'Planificar mis publicaciones en un calendario',
|
|
'stay_on_brand' => 'Mantener la coherencia de mi marca',
|
|
'grow_audience' => 'Hacer crecer mi audiencia y engagement',
|
|
'drive_sales' => 'Conseguir más tráfico y ventas',
|
|
'manage_clients' => 'Gestionar varias marcas o clientes',
|
|
'team_collaboration' => 'Trabajar con mi equipo',
|
|
'automate_api' => 'Automatizar publicaciones con la API, MCP o código',
|
|
'track_performance' => 'Ver cómo rinden mis publicaciones',
|
|
'just_exploring' => 'Solo estoy explorando por ahora',
|
|
'other' => 'Otra cosa',
|
|
],
|
|
'connect' => [
|
|
'title' => 'Conecta tu primera red',
|
|
'description' => 'Vincula al menos una cuenta social para empezar a programar. Puedes añadir más cuando quieras.',
|
|
'must_connect' => 'Conecta al menos una red para continuar.',
|
|
],
|
|
];
|