Files
filament-whatsapp-conector/resources/lang/nl/webhook.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

32 lines
698 B
PHP

<?php
declare(strict_types=1);
return [
'navigation_label' => 'Webhook Logs',
'model_label' => 'Webhook Log',
'plural_model_label' => 'Webhook Logs',
'sections' => [
'webhook_info' => 'Webhook Informatie',
'payload' => 'Payload',
'error' => 'Fout',
],
'fields' => [
'instance' => 'Instantie',
'event' => 'Gebeurtenis',
'processed' => 'Verwerkt',
'has_error' => 'Heeft Fout',
'error' => 'Fout',
'processing_time' => 'Verwerkingstijd',
'created_at' => 'Aangemaakt op',
'updated_at' => 'Bijgewerkt op',
],
'status' => [
'yes' => 'Ja',
'no' => 'Nee',
],
];