Files
filament-whatsapp-conector/resources/lang/de/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
906 B
PHP

<?php
declare(strict_types=1);
return [
'navigation_label' => 'Nachrichten',
'model_label' => 'Nachricht',
'plural_model_label' => 'Nachrichten',
'sections' => [
'message_info' => 'Nachrichteninformationen',
'content' => 'Inhalt',
'timestamps' => 'Zeitstempel',
'raw_payload' => 'Rohdaten',
],
'fields' => [
'instance' => 'Instanz',
'direction' => 'Richtung',
'phone' => 'Telefon',
'type' => 'Typ',
'content' => 'Inhalt',
'status' => 'Status',
'message_id' => 'Nachrichten-ID',
'media' => 'Medien',
'media_caption' => 'Medienbeschriftung',
'media_url' => 'Medien-URL',
'location' => 'Standort',
'sent_at' => 'Gesendet am',
'delivered_at' => 'Zugestellt am',
'read_at' => 'Gelesen am',
'created_at' => 'Erstellt am',
],
];