- 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
912 B
PHP
35 lines
912 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' => '미디어 URL',
|
|
'location' => '위치',
|
|
'sent_at' => '전송일',
|
|
'delivered_at' => '전달일',
|
|
'read_at' => '읽은 날짜',
|
|
'created_at' => '생성일',
|
|
],
|
|
];
|