mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-22 16:51:20 +00:00
38 lines
1.2 KiB
PHP
38 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' => 'O teu alcume',
|
|
'your_handle_hint' => 'Escribe o @usuaria@dominio desde onde queres actuar.',
|
|
'follow' => [
|
|
'label' => 'Seguir',
|
|
'title' => 'Seguir a {actorDisplayName}',
|
|
'subtitle' => 'Vas seguir a:',
|
|
'accountNotFound' => 'Non se atopou a conta.',
|
|
'remoteFollowNotAllowed' => 'Semella que o servidor da conta non permite o seguimento remoto…',
|
|
'submit' => 'Realizar seguimento',
|
|
],
|
|
'favourite' => [
|
|
'title' => "Dar a favorito na publicación de {actorDisplayName}",
|
|
'subtitle' => 'Vas mostrar agrado por:',
|
|
'submit' => 'Darlle a favorito',
|
|
],
|
|
'reblog' => [
|
|
'title' => "Compartir a publicación de {actorDisplayName}",
|
|
'subtitle' => 'Vas compartir:',
|
|
'submit' => 'Fai a compartición',
|
|
],
|
|
'reply' => [
|
|
'title' => "Responder á publicación de {actorDisplayName}",
|
|
'subtitle' => 'Vas responder a:',
|
|
'submit' => 'Responde',
|
|
],
|
|
];
|