* 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' => 'Workspaces',
|
|
'select_workspace' => 'Select workspace',
|
|
'create_workspace' => 'Create workspace',
|
|
'create_post' => 'Create post',
|
|
'profile' => 'Profile',
|
|
'my_account' => 'My account',
|
|
'account_settings' => 'Account & billing',
|
|
'workspace_settings' => 'Workspace settings',
|
|
'log_out' => 'Log out',
|
|
|
|
'workspace' => 'Workspace: :name',
|
|
'workspace_select' => 'Workspace: Select',
|
|
|
|
'theme' => 'Theme: :name',
|
|
'theme_light' => 'Light',
|
|
'theme_dark' => 'Dark',
|
|
'theme_system' => 'System',
|
|
|
|
'language' => 'Language: :name',
|
|
'language_select' => 'Language: Select',
|
|
|
|
'groups' => [
|
|
'posts' => 'Posts',
|
|
'workspace' => 'Workspace',
|
|
'others' => 'Others',
|
|
],
|
|
|
|
'analytics' => 'Analytics',
|
|
'automations' => 'Automations',
|
|
'settings' => 'Settings',
|
|
|
|
'posts' => [
|
|
'calendar' => 'Calendar',
|
|
'all' => 'All',
|
|
'scheduled' => 'Scheduled',
|
|
'posted' => 'Posted',
|
|
'drafts' => 'Drafts',
|
|
],
|
|
|
|
'workspace' => [
|
|
'connections' => 'Connections',
|
|
'signatures' => 'Signatures',
|
|
'labels' => 'Labels',
|
|
'assets' => 'Assets',
|
|
'api_keys' => 'API Keys',
|
|
],
|
|
|
|
'notifications' => 'Notifications',
|
|
'mark_all_read' => 'Mark all as read',
|
|
'mark_as_read' => 'Mark as read',
|
|
'archive_all' => 'Archive all',
|
|
'no_notifications' => 'No notifications',
|
|
|
|
'support' => [
|
|
'docs' => 'Documentation',
|
|
'referral' => 'Earn 30% referral',
|
|
'stay_updated' => 'Stay updated',
|
|
],
|
|
];
|