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' => 'Vòstre escais-nom',
|
|
'your_handle_hint' => 'Picatz lo @escais@domeni amb qui volètz interagir.',
|
|
'follow' => [
|
|
'label' => 'Seguir',
|
|
'title' => 'Seguir {actorDisplayName}',
|
|
'subtitle' => 'Sètz a mand de seguir :',
|
|
'accountNotFound' => 'Impossible de trobar lo compte.',
|
|
'remoteFollowNotAllowed' => 'Sembla que lo servidor del compte permet pas lo seguiment a distància…',
|
|
'submit' => 'Contunhar',
|
|
],
|
|
'favourite' => [
|
|
'title' => "Metre en favorit la publicacion de {actorDisplayName}",
|
|
'subtitle' => 'Sètz a mand de metre en favorit :',
|
|
'submit' => 'Contunhar',
|
|
],
|
|
'reblog' => [
|
|
'title' => "Partejar la publicacion de {actorDisplayName}",
|
|
'subtitle' => 'Sètz a mand de partejar :',
|
|
'submit' => 'Contunhar',
|
|
],
|
|
'reply' => [
|
|
'title' => "Respondre a la publicacion de {actorDisplayName}",
|
|
'subtitle' => 'Sètz a mand de respondre a :',
|
|
'submit' => 'Contunhar',
|
|
],
|
|
];
|