2021-04-02 17:20:02 +00:00
|
|
|
<?php
|
|
|
|
|
2021-06-08 09:52:11 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2021-04-02 17:20:02 +00:00
|
|
|
/**
|
2022-02-19 16:06:11 +00:00
|
|
|
* @copyright 2021 Ad Aures
|
2021-04-02 17:20:02 +00:00
|
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
|
|
* @link https://castopod.org/
|
|
|
|
*/
|
|
|
|
|
|
|
|
return [
|
2021-09-15 15:58:21 +00:00
|
|
|
'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.',
|
2022-03-15 14:05:19 +00:00
|
|
|
'remoteFollowNotAllowed' => 'Seems like the account server does not allow remote follows…',
|
2021-09-15 15:58:21 +00:00
|
|
|
'submit' => 'Proceed to follow',
|
2021-04-02 17:20:02 +00:00
|
|
|
],
|
2021-09-15 15:58:21 +00:00
|
|
|
'favourite' => [
|
|
|
|
'title' => "Favourite {actorDisplayName}'s post",
|
|
|
|
'subtitle' => 'You are going to favourite:',
|
|
|
|
'submit' => 'Proceed to favourite',
|
|
|
|
],
|
|
|
|
'reblog' => [
|
|
|
|
'title' => "Share {actorDisplayName}'s post",
|
|
|
|
'subtitle' => 'You are going to share:',
|
|
|
|
'submit' => 'Proceed to share',
|
|
|
|
],
|
|
|
|
'reply' => [
|
|
|
|
'title' => "Reply to {actorDisplayName}'s post",
|
|
|
|
'subtitle' => 'You are going to reply to:',
|
|
|
|
'submit' => 'Proceed to reply',
|
2021-04-02 17:20:02 +00:00
|
|
|
],
|
|
|
|
];
|