Files
filament-whatsapp-conector/resources/lang/uk/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
1.1 KiB
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' => 'Створено',
],
];