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' => 'El vostre alias',
|
|
'your_handle_hint' => 'Escriviu el vostre @nomusuari@domini que vulgueu emprar per interactuar.',
|
|
'follow' => [
|
|
'label' => 'Seguir',
|
|
'title' => 'Seguir a {actorDisplayName}',
|
|
'subtitle' => 'Seguireu a:',
|
|
'accountNotFound' => 'No s\'ha trobat el compte.',
|
|
'remoteFollowNotAllowed' => 'Sembla que el servidor del compte no permet seguiments remots...',
|
|
'submit' => 'Procedir a seguir',
|
|
],
|
|
'favourite' => [
|
|
'title' => "Publicacions favorites de {actorDisplayName}",
|
|
'subtitle' => 'Aneu a marcar com a favorit:',
|
|
'submit' => 'Procedir a marcar com a favorit ',
|
|
],
|
|
'reblog' => [
|
|
'title' => "Compartir la publicació de {actorDisplayName}",
|
|
'subtitle' => 'Aneu a compartir:',
|
|
'submit' => 'Procedir a compartir',
|
|
],
|
|
'reply' => [
|
|
'title' => "Respondre a la publicació de {actorDisplayName}",
|
|
'subtitle' => 'Aneu a respondre a:',
|
|
'submit' => 'Procedir a respondre',
|
|
],
|
|
];
|