- 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
873 B
PHP
35 lines
873 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'navigation_label' => '消息',
|
|
'model_label' => '消息',
|
|
'plural_model_label' => '消息',
|
|
|
|
'sections' => [
|
|
'message_info' => '消息信息',
|
|
'content' => '内容',
|
|
'timestamps' => '时间戳',
|
|
'raw_payload' => '原始数据',
|
|
],
|
|
|
|
'fields' => [
|
|
'instance' => '实例',
|
|
'direction' => '方向',
|
|
'phone' => '电话',
|
|
'type' => '类型',
|
|
'content' => '内容',
|
|
'status' => '状态',
|
|
'message_id' => '消息ID',
|
|
'media' => '媒体',
|
|
'media_caption' => '媒体说明',
|
|
'media_url' => '媒体链接',
|
|
'location' => '位置',
|
|
'sent_at' => '发送时间',
|
|
'delivered_at' => '送达时间',
|
|
'read_at' => '阅读时间',
|
|
'created_at' => '创建时间',
|
|
],
|
|
];
|