mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-12 01:05:47 +00:00
35 lines
1.0 KiB
PHP
35 lines
1.0 KiB
PHP
![]() |
<?php
|
||
|
|
||
|
/**
|
||
|
* @copyright 2020 Podlibre
|
||
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
||
|
* @link https://castopod.org/
|
||
|
*/
|
||
|
|
||
|
return [
|
||
|
'your_handle' => 'Your handle',
|
||
|
'your_handle_hint' => 'Enter the @username@domain you want to act from.',
|
||
|
'follow' => [
|
||
|
'label' => 'Follow',
|
||
|
'title' => 'Follow {actorDisplayName}',
|
||
|
'subtitle' => 'You are going to follow:',
|
||
|
'accountNotFound' => 'The account could not be found.',
|
||
|
'submit' => 'Proceed to follow',
|
||
|
],
|
||
|
'favourite' => [
|
||
|
'title' => 'Favourite {actorDisplayName}\'s note',
|
||
|
'subtitle' => 'You are going to favourite:',
|
||
|
'submit' => 'Proceed to favourite',
|
||
|
],
|
||
|
'reblog' => [
|
||
|
'title' => 'Share {actorDisplayName}\'s note',
|
||
|
'subtitle' => 'You are going to share:',
|
||
|
'submit' => 'Proceed to share',
|
||
|
],
|
||
|
'reply' => [
|
||
|
'title' => 'Reply to {actorDisplayName}\'s note',
|
||
|
'subtitle' => 'You are going to reply to:',
|
||
|
'submit' => 'Proceed to reply',
|
||
|
],
|
||
|
];
|