* 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
2.3 KiB
PHP
64 lines
2.3 KiB
PHP
<?php
|
||
|
||
declare(strict_types=1);
|
||
|
||
return [
|
||
'workspaces' => 'Рабочие пространства',
|
||
'select_workspace' => 'Выберите рабочее пространство',
|
||
'create_workspace' => 'Создать рабочее пространство',
|
||
'create_post' => 'Создать пост',
|
||
'profile' => 'Профиль',
|
||
'my_account' => 'Мой аккаунт',
|
||
'account_settings' => 'Аккаунт и оплата',
|
||
'workspace_settings' => 'Настройки workspace',
|
||
'log_out' => 'Выйти',
|
||
|
||
'workspace' => 'Рабочее пространство: :name',
|
||
'workspace_select' => 'Рабочее пространство: выбрать',
|
||
|
||
'theme' => 'Тема: :name',
|
||
'theme_light' => 'Светлая',
|
||
'theme_dark' => 'Тёмная',
|
||
'theme_system' => 'Системная',
|
||
|
||
'language' => 'Язык: :name',
|
||
'language_select' => 'Язык: выбрать',
|
||
|
||
'groups' => [
|
||
'posts' => 'Посты',
|
||
'workspace' => 'Рабочее пространство',
|
||
'others' => 'Прочее',
|
||
],
|
||
|
||
'analytics' => 'Аналитика',
|
||
'automations' => 'Автоматизации',
|
||
'settings' => 'Настройки',
|
||
|
||
'posts' => [
|
||
'calendar' => 'Календарь',
|
||
'all' => 'Все',
|
||
'scheduled' => 'Запланированные',
|
||
'posted' => 'Опубликованные',
|
||
'drafts' => 'Черновики',
|
||
],
|
||
|
||
'workspace' => [
|
||
'connections' => 'Подключения',
|
||
'signatures' => 'Подписи',
|
||
'labels' => 'Метки',
|
||
'assets' => 'Медиафайлы',
|
||
'api_keys' => 'API-ключи',
|
||
],
|
||
|
||
'notifications' => 'Уведомления',
|
||
'mark_all_read' => 'Отметить все как прочитанные',
|
||
'mark_as_read' => 'Отметить как прочитанное',
|
||
'archive_all' => 'Архивировать все',
|
||
'no_notifications' => 'Нет уведомлений',
|
||
|
||
'support' => [
|
||
'docs' => 'Документация',
|
||
'referral' => 'Зарабатывайте 30% по реферальной программе',
|
||
'stay_updated' => 'Следите за обновлениями',
|
||
],
|
||
];
|