- 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
1011 B
PHP
35 lines
1011 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' => '作成日時',
|
|
],
|
|
];
|