- 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
707 B
PHP
32 lines
707 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'navigation_label' => 'Logi Webhook',
|
|
'model_label' => 'Log Webhook',
|
|
'plural_model_label' => 'Logi Webhook',
|
|
|
|
'sections' => [
|
|
'webhook_info' => 'Informacje o Webhook',
|
|
'payload' => 'Ładunek',
|
|
'error' => 'Błąd',
|
|
],
|
|
|
|
'fields' => [
|
|
'instance' => 'Instancja',
|
|
'event' => 'Zdarzenie',
|
|
'processed' => 'Przetworzono',
|
|
'has_error' => 'Ma Błąd',
|
|
'error' => 'Błąd',
|
|
'processing_time' => 'Czas Przetwarzania',
|
|
'created_at' => 'Utworzono',
|
|
'updated_at' => 'Zaktualizowano',
|
|
],
|
|
|
|
'status' => [
|
|
'yes' => 'Tak',
|
|
'no' => 'Nie',
|
|
],
|
|
];
|