- 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
22 lines
769 B
PHP
22 lines
769 B
PHP
<?php
|
||
|
||
declare(strict_types=1);
|
||
|
||
return [
|
||
'modal_title' => '连接 :instance',
|
||
'loading' => '加载中...',
|
||
'connected' => '已连接',
|
||
'waiting_scan' => '等待扫描',
|
||
'error' => '连接错误',
|
||
'expires_in' => '过期时间',
|
||
'connected_title' => 'WhatsApp已连接!',
|
||
'connected_description' => '您的WhatsApp实例已连接,可以发送和接收消息。',
|
||
'error_title' => '连接错误',
|
||
'try_again' => '重试',
|
||
'scan_instructions' => '在手机上打开WhatsApp,进入设置 > 已关联的设备 > 关联设备,然后扫描此二维码。',
|
||
'or_use_code' => '或在手机上输入此代码:',
|
||
'copied' => '已复制!',
|
||
'refresh' => '刷新二维码',
|
||
'generate' => '生成二维码',
|
||
];
|