- 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
897 B
PHP
35 lines
897 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'navigation_label' => 'Messaggi',
|
|
'model_label' => 'Messaggio',
|
|
'plural_model_label' => 'Messaggi',
|
|
|
|
'sections' => [
|
|
'message_info' => 'Informazioni Messaggio',
|
|
'content' => 'Contenuto',
|
|
'timestamps' => 'Timestamp',
|
|
'raw_payload' => 'Dati Grezzi',
|
|
],
|
|
|
|
'fields' => [
|
|
'instance' => 'Istanza',
|
|
'direction' => 'Direzione',
|
|
'phone' => 'Telefono',
|
|
'type' => 'Tipo',
|
|
'content' => 'Contenuto',
|
|
'status' => 'Stato',
|
|
'message_id' => 'ID Messaggio',
|
|
'media' => 'Media',
|
|
'media_caption' => 'Didascalia Media',
|
|
'media_url' => 'URL Media',
|
|
'location' => 'Posizione',
|
|
'sent_at' => 'Inviato il',
|
|
'delivered_at' => 'Consegnato il',
|
|
'read_at' => 'Letto il',
|
|
'created_at' => 'Creato il',
|
|
],
|
|
];
|