mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-04 15:26:43 +02:00
37 lines
1.2 KiB
PHP
37 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* @copyright 2021 Ad Aures
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
return [
|
|
'your_handle' => 'Jūsų paskyros vardas',
|
|
'your_handle_hint' => 'Įrašykite naudotinos paskyros vardą @naudotojas@domenas formatu.',
|
|
'follow' => [
|
|
'label' => 'Sekti',
|
|
'title' => 'Sekti {actorDisplayName}',
|
|
'subtitle' => 'Ketinate sekti:',
|
|
'accountNotFound' => 'Paskyra nerasta.',
|
|
'remoteFollowNotAllowed' => 'Panašu, jog paskyros serveris neleidžia nuotolinių sekimo užklausų…',
|
|
'submit' => 'Inicijuoti sekimą',
|
|
],
|
|
'favourite' => [
|
|
'title' => "Pamėgti {actorDisplayName} įrašą",
|
|
'subtitle' => 'Ketinate pamėgti:',
|
|
'submit' => 'Inicijuoti pamėgimą',
|
|
],
|
|
'reblog' => [
|
|
'title' => "Pasidalinti {actorDisplayName} įrašu",
|
|
'subtitle' => 'Ketinate pasidalinti:',
|
|
'submit' => 'Inicijuoti pasidalijimą',
|
|
],
|
|
'reply' => [
|
|
'title' => "Atsakyti į {actorDisplayName} įrašą",
|
|
'subtitle' => 'Ketinate atsakyti į:',
|
|
'submit' => 'Inicijuoti atsakymą',
|
|
],
|
|
];
|