- gallery: extract /assets tabs (uploads, Unsplash, Giphy) into shared GalleryBrowser used by both /assets and a new MediaPickerDialog inside the post editor; add JSON search endpoint for workspace assets with tests - emoji: replace broken emoji-picker-element web component with a custom EmojiPicker (full Unicode set, search, categories, recently-used, light/dark, i18n) - preview tab: platform selector pills, variant tabs (data-driven from content_types map) so the user can switch Feed/Reel/Story etc. and have it autosave through the same handler ScheduleTab uses - platform logos: shared usePlatformLogo composable (logo + label + content types); replaces inline maps across 5 components, fixes instagram-facebook falling back to default.png - tooltips: hover details (display_name · @username + platform label) on platform avatars across editor, posts list and calendar - settings cards: show ` · @username` in the title bar so multiple accounts on the same network are distinguishable - routes: drop the throttle:6,1 group middleware on social connect routes (was 429ing legitimate OAuth retries) and rely on the default limiter
53 lines
1.6 KiB
PHP
53 lines
1.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'title' => 'Medios',
|
|
|
|
'tabs' => [
|
|
'my_uploads' => 'Mis subidas',
|
|
'stock_photos' => 'Fotos gratuitas',
|
|
'gifs' => 'GIFs',
|
|
],
|
|
|
|
'upload' => [
|
|
'drag_drop' => 'Arrastra y suelta tus archivos aquí o haz clic para seleccionar',
|
|
'formats' => 'JPEG, PNG, GIF, WebP, MP4',
|
|
'uploading' => 'Subiendo...',
|
|
],
|
|
|
|
'empty' => [
|
|
'title' => 'Todavía no hay medios',
|
|
'description' => 'Sube imágenes y videos para construir tu biblioteca de medios.',
|
|
],
|
|
|
|
'save_to_assets' => 'Guardar en la biblioteca',
|
|
'saved' => '¡Guardado en tu biblioteca!',
|
|
'create_post' => 'Crear post',
|
|
'add_to_post' => 'Agregar al post',
|
|
'search_placeholder' => 'Buscar media...',
|
|
|
|
'delete' => [
|
|
'title' => 'Eliminar medio',
|
|
'description' => '¿Estás seguro de que deseas eliminar este medio? Esta acción no se puede deshacer.',
|
|
'confirm' => 'Eliminar',
|
|
'cancel' => 'Cancelar',
|
|
],
|
|
|
|
'unsplash' => [
|
|
'search_placeholder' => 'Buscar fotos gratuitas...',
|
|
'no_results' => 'No se encontraron fotos',
|
|
'no_results_description' => 'Prueba con otro término de búsqueda.',
|
|
'trending' => 'Tendencias en Unsplash',
|
|
'start_searching' => 'Busca fotos gratuitas de Unsplash',
|
|
],
|
|
|
|
'giphy' => [
|
|
'trending' => 'Tendencias en Giphy',
|
|
'search_placeholder' => 'Buscar GIFs...',
|
|
'no_results' => 'No se encontraron GIFs',
|
|
'no_results_description' => 'Prueba con otro término de búsqueda.',
|
|
'powered_by' => 'Powered by GIPHY',
|
|
],
|
|
];
|