2022-03-30 15:09:35 +00:00
|
|
|
<?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' => 'Your handle',
|
2022-10-14 16:12:14 +00:00
|
|
|
'your_handle_hint' => 'Inserisci @username@domain da cui vuoi interagire.',
|
2022-03-30 15:09:35 +00:00
|
|
|
'follow' => [
|
2022-10-14 16:12:14 +00:00
|
|
|
'label' => 'Segui',
|
|
|
|
'title' => 'Segui {actorDisplayName}',
|
|
|
|
'subtitle' => 'Stai per seguire:',
|
|
|
|
'accountNotFound' => 'Impossibile trovare l\'account.',
|
|
|
|
'remoteFollowNotAllowed' => 'Sembra che il server del account non permetta il segui da remoto…',
|
|
|
|
'submit' => 'Procedi a seguire',
|
2022-03-30 15:09:35 +00:00
|
|
|
],
|
|
|
|
'favourite' => [
|
2022-10-14 16:12:14 +00:00
|
|
|
'title' => "Post preferito di {actorDisplayName}",
|
|
|
|
'subtitle' => 'Stai per aggiungere ai preferiti:',
|
|
|
|
'submit' => 'Procedi ad aggiungere ai preferiti',
|
2022-03-30 15:09:35 +00:00
|
|
|
],
|
|
|
|
'reblog' => [
|
2022-10-14 16:12:14 +00:00
|
|
|
'title' => "Condividi il post di {actorDisplayName}",
|
|
|
|
'subtitle' => 'Stai per condividere:',
|
|
|
|
'submit' => 'Procedere alla condivisione',
|
2022-03-30 15:09:35 +00:00
|
|
|
],
|
|
|
|
'reply' => [
|
2022-10-14 16:12:14 +00:00
|
|
|
'title' => "Rispondi al post di {actorDisplayName}",
|
|
|
|
'subtitle' => 'Stai per rispondere a:',
|
|
|
|
'submit' => 'Procedi a rispondere',
|
2022-03-30 15:09:35 +00:00
|
|
|
],
|
|
|
|
];
|