- Fix StripeEventListener: mark setup as Completed when subscription.created webhook fires - Fix notifications routes: move outside subscribed middleware (non-critical feature) - Fix NotificationBell: guard response.ok before parsing JSON - Fix StripeEventListener: use data_get() for payload access - Rewrite billing page to use SettingsLayout with download buttons on invoices - Remove duplicate Unit/Listeners/StripeEventListenerTest (consolidated into Feature) - Add comprehensive Stripe webhook tests (14 scenarios: happy path, setup transitions, edge cases, error handling) - Update billing i18n: remove "no credit card" text, add status key - Move auth layout logo to top-left corner - Redesign onboarding Role page with compact list layout - Add persona i18n translations (EN, PT-BR, ES) - Update README with API, MCP, tech stack, quick start
48 lines
1.4 KiB
PHP
48 lines
1.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'role' => [
|
|
'page_title' => 'Bem-vindo - Conte-nos sobre você',
|
|
'title' => 'Conte-nos sobre você',
|
|
'description' => 'Nos ajude a personalizar sua experiência',
|
|
'submit' => 'Continuar',
|
|
],
|
|
|
|
'personas' => [
|
|
'founder' => [
|
|
'label' => 'Fundador',
|
|
'description' => 'Construindo uma startup ou novo negócio',
|
|
],
|
|
'creator' => [
|
|
'label' => 'Criador de Conteúdo',
|
|
'description' => 'Criador de conteúdo ou influenciador',
|
|
],
|
|
'agency' => [
|
|
'label' => 'Agência',
|
|
'description' => 'Agência de marketing ou mídias sociais',
|
|
],
|
|
'enterprise' => [
|
|
'label' => 'Empresa',
|
|
'description' => 'Grande empresa ou corporação',
|
|
],
|
|
'small_business' => [
|
|
'label' => 'Pequeno Negócio',
|
|
'description' => 'Pequena ou média empresa',
|
|
],
|
|
'personal' => [
|
|
'label' => 'Pessoal',
|
|
'description' => 'Marca pessoal ou hobby',
|
|
],
|
|
],
|
|
|
|
'connect' => [
|
|
'page_title' => 'Conecte suas contas',
|
|
'title' => 'Conecte suas contas',
|
|
'description' => 'Conecte pelo menos uma rede social para começar',
|
|
'submit' => 'Continuar',
|
|
'error' => 'Algo deu errado. Tente novamente.',
|
|
'go_back' => 'Voltar',
|
|
],
|
|
];
|