Files
filament-whatsapp-conector/resources/lang/ja/message.php
Wallace Martins e3c892fbb1 feat: complete i18n support with 13 languages and bug fixes
- 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
2025-12-07 15:48:15 -03:00

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' => '作成日時',
],
];