* Unify sidebar workspace and account menus. Merge workspace switching, profile, billing, and language into one header dropdown, move notifications beside it, pin support links to the footer, and add Workspace Settings to the nav — without MCP or onboarding residual. Co-authored-by: Cursor <cursoragent@cursor.com> * Remove Workspace Settings from the sidebar nav. Settings already lives in the unified account menu; keep the workspace group free for items like MCP later. Co-authored-by: Cursor <cursoragent@cursor.com> * Cover sidebar menu role gates in browser tests. Assert account/workspace settings visibility for owner, admin, member, and self-hosted so the unified menu stays aligned with WorkspacePolicy. Co-authored-by: Cursor <cursoragent@cursor.com> * Rename sidebar wait helper to avoid Pest browser collision. waitForTestId was already declared in MobileEditorTest, which fataled the e2e suite when listing Browser tests. Co-authored-by: Cursor <cursoragent@cursor.com> * Add sidebar menu browser coverage for workspace viewers. Co-authored-by: Cursor <cursoragent@cursor.com> --------- Co-authored-by: Cursor <cursoragent@cursor.com>
64 lines
1.6 KiB
PHP
64 lines
1.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'workspaces' => 'Workspace',
|
|
'select_workspace' => 'Seleziona workspace',
|
|
'create_workspace' => 'Crea workspace',
|
|
'create_post' => 'Crea post',
|
|
'profile' => 'Profilo',
|
|
'my_account' => 'Il mio account',
|
|
'account_settings' => 'Account e fatturazione',
|
|
'workspace_settings' => 'Impostazioni workspace',
|
|
'log_out' => 'Esci',
|
|
|
|
'workspace' => 'Workspace: :name',
|
|
'workspace_select' => 'Workspace: Seleziona',
|
|
|
|
'theme' => 'Tema: :name',
|
|
'theme_light' => 'Chiaro',
|
|
'theme_dark' => 'Scuro',
|
|
'theme_system' => 'Sistema',
|
|
|
|
'language' => 'Lingua: :name',
|
|
'language_select' => 'Lingua: Seleziona',
|
|
|
|
'groups' => [
|
|
'posts' => 'Post',
|
|
'workspace' => 'Workspace',
|
|
'others' => 'Altro',
|
|
],
|
|
|
|
'analytics' => 'Statistiche',
|
|
'automations' => 'Automazioni',
|
|
'settings' => 'Impostazioni',
|
|
|
|
'posts' => [
|
|
'calendar' => 'Calendario',
|
|
'all' => 'Tutti',
|
|
'scheduled' => 'Programmati',
|
|
'posted' => 'Pubblicati',
|
|
'drafts' => 'Bozze',
|
|
],
|
|
|
|
'workspace' => [
|
|
'connections' => 'Connessioni',
|
|
'signatures' => 'Firme',
|
|
'labels' => 'Etichette',
|
|
'assets' => 'Risorse',
|
|
'api_keys' => 'Chiavi API',
|
|
],
|
|
|
|
'notifications' => 'Notifiche',
|
|
'mark_all_read' => 'Segna tutte come lette',
|
|
'mark_as_read' => 'Segna come letta',
|
|
'archive_all' => 'Archivia tutte',
|
|
'no_notifications' => 'Nessuna notifica',
|
|
|
|
'support' => [
|
|
'docs' => 'Documentazione',
|
|
'referral' => 'Guadagna il 30% di referral',
|
|
'stay_updated' => 'Resta aggiornato',
|
|
],
|
|
];
|