- 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
797 B
PHP
32 lines
797 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'navigation_label' => 'سجلات Webhook',
|
|
'model_label' => 'سجل Webhook',
|
|
'plural_model_label' => 'سجلات Webhook',
|
|
|
|
'sections' => [
|
|
'webhook_info' => 'معلومات Webhook',
|
|
'payload' => 'البيانات',
|
|
'error' => 'الخطأ',
|
|
],
|
|
|
|
'fields' => [
|
|
'instance' => 'المثيل',
|
|
'event' => 'الحدث',
|
|
'processed' => 'تمت المعالجة',
|
|
'has_error' => 'يوجد خطأ',
|
|
'error' => 'الخطأ',
|
|
'processing_time' => 'وقت المعالجة',
|
|
'created_at' => 'تاريخ الإنشاء',
|
|
'updated_at' => 'تاريخ التحديث',
|
|
],
|
|
|
|
'status' => [
|
|
'yes' => 'نعم',
|
|
'no' => 'لا',
|
|
],
|
|
];
|