- Add translations for: ar, de, es, fr, it, ja, ko, nl, pl, ru, tr, uk, zh_CN - Fix raw_payload not being saved in messages - Fix content field stored as array instead of JSON string - Fix profilePicUrl extraction from Evolution API - Add content preview column in messages table - Improve message display with proper text/media handling
35 lines
927 B
PHP
35 lines
927 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'navigation_label' => 'Mensajes',
|
|
'model_label' => 'Mensaje',
|
|
'plural_model_label' => 'Mensajes',
|
|
|
|
'sections' => [
|
|
'message_info' => 'Información del Mensaje',
|
|
'content' => 'Contenido',
|
|
'timestamps' => 'Marcas de Tiempo',
|
|
'raw_payload' => 'Datos Crudos',
|
|
],
|
|
|
|
'fields' => [
|
|
'instance' => 'Instancia',
|
|
'direction' => 'Dirección',
|
|
'phone' => 'Teléfono',
|
|
'type' => 'Tipo',
|
|
'content' => 'Contenido',
|
|
'status' => 'Estado',
|
|
'message_id' => 'ID del Mensaje',
|
|
'media' => 'Multimedia',
|
|
'media_caption' => 'Leyenda del Archivo',
|
|
'media_url' => 'URL del Archivo',
|
|
'location' => 'Ubicación',
|
|
'sent_at' => 'Enviado el',
|
|
'delivered_at' => 'Entregado el',
|
|
'read_at' => 'Leído el',
|
|
'created_at' => 'Creado el',
|
|
],
|
|
];
|