trypost/lang/en/sidebar.php
Paulo Castellano 91ad58cd01 refactor: sidebar active states, notification bell, phone mockup, UI polish
Sidebar:
- Fix double active state: "All" uses excludeActive to skip filter paths
- Add excludeActive option to urlIsActive composable and NavItem type
- Move notification bell next to user menu (icon only, no text)
- Remove Discord from sidebar footer
- Rename "Docs" to "Documentation" in EN

Phone mockup:
- Increase size from 270x585 to 360x780 for better preview

Header & Layout:
- Add center slot to AppHeader (used by Calendar for date title)
- Calendar controls split: left (nav), center (date), right (tabs + new post)
- Remove duplicate New Post button from day view
- Fix month view scroll (remove overflow-hidden)

UI:
- Move action buttons to header-right: posts, hashtags, labels
- Settings breadcrumbs: "Settings > Profile" pattern for all pages
- Add Cancel button to hashtags create/edit dialogs
- Add common.cancel i18n key for reuse
- Social accounts grid: use shadcn Button ghost for actions

All 753 tests passing.
2026-03-30 18:51:04 -03:00

55 lines
1.3 KiB
PHP

<?php
return [
'workspaces' => 'Workspaces',
'select_workspace' => 'Select workspace',
'create_workspace' => 'Create workspace',
'create_post' => 'Create post',
'profile' => 'Profile',
'account' => 'Account',
'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',
'configuration' => 'Configurations',
'support' => 'Support',
],
'posts' => [
'calendar' => 'Calendar',
'all' => 'All',
'scheduled' => 'Scheduled',
'posted' => 'Posted',
'drafts' => 'Drafts',
],
'config' => [
'connections' => 'Connections',
'hashtags' => 'Hashtags',
'labels' => 'Labels',
'settings' => 'Settings',
],
'notifications' => 'Notifications',
'mark_all_read' => 'Mark all as read',
'archive_all' => 'Archive all',
'no_notifications' => 'No notifications',
'support' => [
'discord' => 'Discord',
'share_feedback' => 'Share feedback',
'last_updates' => 'Last Updates',
'docs' => 'Documentation',
],
];