- 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
32 lines
819 B
PHP
32 lines
819 B
PHP
<?php
|
||
|
||
declare(strict_types=1);
|
||
|
||
return [
|
||
'navigation_label' => 'Логи Вебхуків',
|
||
'model_label' => 'Лог Вебхука',
|
||
'plural_model_label' => 'Логи Вебхуків',
|
||
|
||
'sections' => [
|
||
'webhook_info' => 'Інформація про Вебхук',
|
||
'payload' => 'Дані',
|
||
'error' => 'Помилка',
|
||
],
|
||
|
||
'fields' => [
|
||
'instance' => 'Екземпляр',
|
||
'event' => 'Подія',
|
||
'processed' => 'Оброблено',
|
||
'has_error' => 'Є Помилка',
|
||
'error' => 'Помилка',
|
||
'processing_time' => 'Час Обробки',
|
||
'created_at' => 'Створено',
|
||
'updated_at' => 'Оновлено',
|
||
],
|
||
|
||
'status' => [
|
||
'yes' => 'Так',
|
||
'no' => 'Ні',
|
||
],
|
||
];
|