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
563 B
PHP
18 lines
563 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'post_ready' => [
|
|
'title' => 'Twój post jest gotowy',
|
|
'body' => 'AI właśnie skończyła. Dotknij, aby sprawdzić i opublikować.',
|
|
],
|
|
'account_disconnected' => [
|
|
'title' => 'Konto :platform zostało rozłączone',
|
|
'body' => ':account wymaga ponownego połączenia',
|
|
],
|
|
'account_token_expired' => [
|
|
'title' => 'Konto :platform wymaga ponownego połączenia',
|
|
'body' => 'Sesja :account wygasła — połącz ponownie, aby dalej publikować',
|
|
],
|
|
];
|