- 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
906 B
PHP
35 lines
906 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'navigation_label' => 'Nachrichten',
|
|
'model_label' => 'Nachricht',
|
|
'plural_model_label' => 'Nachrichten',
|
|
|
|
'sections' => [
|
|
'message_info' => 'Nachrichteninformationen',
|
|
'content' => 'Inhalt',
|
|
'timestamps' => 'Zeitstempel',
|
|
'raw_payload' => 'Rohdaten',
|
|
],
|
|
|
|
'fields' => [
|
|
'instance' => 'Instanz',
|
|
'direction' => 'Richtung',
|
|
'phone' => 'Telefon',
|
|
'type' => 'Typ',
|
|
'content' => 'Inhalt',
|
|
'status' => 'Status',
|
|
'message_id' => 'Nachrichten-ID',
|
|
'media' => 'Medien',
|
|
'media_caption' => 'Medienbeschriftung',
|
|
'media_url' => 'Medien-URL',
|
|
'location' => 'Standort',
|
|
'sent_at' => 'Gesendet am',
|
|
'delivered_at' => 'Zugestellt am',
|
|
'read_at' => 'Gelesen am',
|
|
'created_at' => 'Erstellt am',
|
|
],
|
|
];
|