Add full lang/ translations for fr, de, it, nl, pl, el, ja, ko, zh, ru, tr, and ar — all 23 base files each, with identical key trees to lang/en, preserved :placeholders and plural forms, and native product terminology.
18 lines
503 B
PHP
18 lines
503 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'post_ready' => [
|
|
'title' => '你的帖子已就绪',
|
|
'body' => 'AI 刚刚完成。点击查看并发布。',
|
|
],
|
|
'account_disconnected' => [
|
|
'title' => ':platform 账号已断开连接',
|
|
'body' => ':account 需要重新连接',
|
|
],
|
|
'account_token_expired' => [
|
|
'title' => ':platform 账号需要重新连接',
|
|
'body' => ':account 会话已过期——请重新连接以继续发帖',
|
|
],
|
|
];
|