- 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
43 lines
1.5 KiB
PHP
43 lines
1.5 KiB
PHP
<?php
|
||
|
||
declare(strict_types=1);
|
||
|
||
return [
|
||
'send_message' => 'WhatsApp Mesajı Gönder',
|
||
'modal_heading' => 'WhatsApp Mesajı Gönder',
|
||
'modal_description' => 'Bir WhatsApp numarasına mesaj gönderin.',
|
||
'send' => 'Mesaj Gönder',
|
||
|
||
// Form fields
|
||
'instance' => 'Örnek',
|
||
'instance_helper' => 'Mesaj göndermek için WhatsApp örneğini seçin.',
|
||
'number' => 'Telefon Numarası',
|
||
'number_helper' => 'Ülke kodu ile telefon numarasını girin (örn: 905551234567).',
|
||
'type' => 'Mesaj Türü',
|
||
'message' => 'Mesaj',
|
||
'message_placeholder' => 'Mesajınızı buraya yazın...',
|
||
'caption' => 'Başlık',
|
||
'caption_placeholder' => 'Medya için isteğe bağlı başlık...',
|
||
'media' => 'Medya Dosyası',
|
||
'media_helper' => 'Gönderilecek dosyayı yükleyin.',
|
||
|
||
// Location fields
|
||
'latitude' => 'Enlem',
|
||
'longitude' => 'Boylam',
|
||
'location_name' => 'Konum Adı',
|
||
'location_name_placeholder' => 'örn: Ofisim',
|
||
'location_address' => 'Adres',
|
||
'location_address_placeholder' => 'örn: Ana Cadde 123, Şehir',
|
||
|
||
// Contact fields
|
||
'contact_name' => 'Kişi Adı',
|
||
'contact_number' => 'Kişi Telefonu',
|
||
|
||
// Notifications
|
||
'success_title' => 'Mesaj Gönderildi!',
|
||
'success_body' => 'WhatsApp mesajınız başarıyla gönderildi.',
|
||
'error_title' => 'Gönderme Başarısız',
|
||
'missing_required_fields' => 'Örnek ID ve telefon numarası gereklidir.',
|
||
'unsupported_type' => 'Desteklenmeyen mesaj türü.',
|
||
];
|