52 lines
2.3 KiB
PHP
52 lines
2.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'title' => 'Workspaces',
|
|
'select_title' => 'Your workspaces',
|
|
'select_description' => 'Select a workspace to continue',
|
|
'current' => 'Current',
|
|
'connections' => ':count connections',
|
|
'posts' => ':count posts',
|
|
|
|
'create' => [
|
|
'page_title' => 'Create your workspace',
|
|
'title' => 'Set up your workspace',
|
|
'description' => 'Tell us about your brand. We\'ll use this to tailor AI-generated posts to your voice.',
|
|
'website' => 'Website',
|
|
'website_placeholder' => 'https://yourbrand.com',
|
|
'autofill' => 'Autofill from website',
|
|
'autofill_missing_url' => 'Enter a URL first.',
|
|
'autofill_success' => 'Brand info loaded.',
|
|
'autofill_error' => 'Could not autofill. You can fill the fields manually.',
|
|
'autofill_errors' => [
|
|
'unreachable' => 'We could not reach that website (:reason).',
|
|
'http_status' => 'The website returned an unexpected status (:status).',
|
|
'invalid_scheme' => 'Only http and https URLs are supported.',
|
|
'missing_host' => 'The URL is missing a host.',
|
|
'unresolvable_host' => 'We could not resolve the host (:host).',
|
|
'private_network' => 'URLs pointing to private networks are not allowed.',
|
|
],
|
|
'logo_captured' => 'Logo captured from your website.',
|
|
'name' => 'Workspace name',
|
|
'name_placeholder' => 'e.g. Acme Inc',
|
|
'brand_description' => 'Brand description',
|
|
'brand_description_placeholder' => 'What does your brand do?',
|
|
'tone' => 'Brand tone',
|
|
'tone_professional' => 'Professional',
|
|
'tone_casual' => 'Casual',
|
|
'tone_friendly' => 'Friendly',
|
|
'tone_bold' => 'Bold',
|
|
'tone_inspirational' => 'Inspirational',
|
|
'tone_humorous' => 'Humorous',
|
|
'tone_educational' => 'Educational',
|
|
'content_language' => 'Content language',
|
|
'content_language_description' => 'AI-generated captions will be written in this language.',
|
|
'voice_notes' => 'Voice notes (optional)',
|
|
'voice_notes_placeholder' => 'e.g. short, punchy sentences. avoid jargon.',
|
|
'submit' => 'Create workspace',
|
|
'first_workspace_success' => 'Workspace created. Connect a social account to start posting.',
|
|
'success' => 'Workspace created.',
|
|
],
|
|
];
|