- store(): members without connected accounts no longer get redirected into
the now-admin-only /accounts (403); non-managers go to the calendar with
the same flash, admins still go to /accounts
- cover the SyncPostPlatforms can('update') gate (viewer creates no platform
rows; member does) and the store redirect split, in WorkspaceRolePermissions
- cover PostPolicy::duplicate viewer-denied
- docs sidebar link uses the canonical https://docs.trypost.it
- drop orphaned sidebar.support.{discord,last_updates} keys in all locales
- remove the explanatory isLocked comment in Edit.vue
61 lines
1.5 KiB
PHP
61 lines
1.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'workspaces' => 'Workspaces',
|
|
'select_workspace' => 'Seleccionar workspace',
|
|
'create_workspace' => 'Crear workspace',
|
|
'create_post' => 'Crear post',
|
|
'profile' => 'Perfil',
|
|
'log_out' => 'Cerrar sesión',
|
|
|
|
'workspace' => 'Workspace: :name',
|
|
'workspace_select' => 'Workspace: Seleccionar',
|
|
|
|
'theme' => 'Tema: :name',
|
|
'theme_light' => 'Claro',
|
|
'theme_dark' => 'Oscuro',
|
|
'theme_system' => 'Sistema',
|
|
|
|
'language' => 'Idioma: :name',
|
|
'language_select' => 'Idioma: Seleccionar',
|
|
|
|
'groups' => [
|
|
'posts' => 'Posts',
|
|
'workspace' => 'Workspace',
|
|
'others' => 'Otros',
|
|
],
|
|
|
|
'analytics' => 'Analytics',
|
|
'automations' => 'Automatizaciones',
|
|
'settings' => 'Configuración',
|
|
|
|
'posts' => [
|
|
'calendar' => 'Calendario',
|
|
'all' => 'Todos',
|
|
'scheduled' => 'Programados',
|
|
'posted' => 'Publicados',
|
|
'drafts' => 'Borradores',
|
|
],
|
|
|
|
'workspace' => [
|
|
'connections' => 'Conexiones',
|
|
'signatures' => 'Firmas',
|
|
'labels' => 'Etiquetas',
|
|
'assets' => 'Medios',
|
|
'api_keys' => 'API Keys',
|
|
],
|
|
|
|
'notifications' => 'Notificaciones',
|
|
'mark_all_read' => 'Marcar todo como leído',
|
|
'mark_as_read' => 'Marcar como leído',
|
|
'archive_all' => 'Archivar todo',
|
|
'no_notifications' => 'Sin notificaciones',
|
|
|
|
'support' => [
|
|
'docs' => 'Documentación',
|
|
'referral' => 'Gana 30% de comisión',
|
|
'stay_updated' => 'Mantente al día',
|
|
],
|
|
];
|