- 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
895 B
PHP
35 lines
895 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'navigation_label' => 'Berichten',
|
|
'model_label' => 'Bericht',
|
|
'plural_model_label' => 'Berichten',
|
|
|
|
'sections' => [
|
|
'message_info' => 'Berichtinformatie',
|
|
'content' => 'Inhoud',
|
|
'timestamps' => 'Tijdstempels',
|
|
'raw_payload' => 'Ruwe Data',
|
|
],
|
|
|
|
'fields' => [
|
|
'instance' => 'Instantie',
|
|
'direction' => 'Richting',
|
|
'phone' => 'Telefoon',
|
|
'type' => 'Type',
|
|
'content' => 'Inhoud',
|
|
'status' => 'Status',
|
|
'message_id' => 'Bericht ID',
|
|
'media' => 'Media',
|
|
'media_caption' => 'Media Onderschrift',
|
|
'media_url' => 'Media URL',
|
|
'location' => 'Locatie',
|
|
'sent_at' => 'Verzonden op',
|
|
'delivered_at' => 'Afgeleverd op',
|
|
'read_at' => 'Gelezen op',
|
|
'created_at' => 'Aangemaakt op',
|
|
],
|
|
];
|