- 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
702 B
PHP
32 lines
702 B
PHP
<?php
|
||
|
||
declare(strict_types=1);
|
||
|
||
return [
|
||
'navigation_label' => 'Webhook Kayıtları',
|
||
'model_label' => 'Webhook Kaydı',
|
||
'plural_model_label' => 'Webhook Kayıtları',
|
||
|
||
'sections' => [
|
||
'webhook_info' => 'Webhook Bilgisi',
|
||
'payload' => 'Yük',
|
||
'error' => 'Hata',
|
||
],
|
||
|
||
'fields' => [
|
||
'instance' => 'Örnek',
|
||
'event' => 'Olay',
|
||
'processed' => 'İşlendi',
|
||
'has_error' => 'Hata Var',
|
||
'error' => 'Hata',
|
||
'processing_time' => 'İşleme Süresi',
|
||
'created_at' => 'Oluşturulma',
|
||
'updated_at' => 'Güncellenme',
|
||
],
|
||
|
||
'status' => [
|
||
'yes' => 'Evet',
|
||
'no' => 'Hayır',
|
||
],
|
||
];
|