mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-22 16:51:20 +00:00
41 lines
1.2 KiB
PHP
41 lines
1.2 KiB
PHP
![]() |
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
/**
|
||
|
* @copyright 2020 Ad Aures
|
||
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
||
|
* @link https://castopod.org/
|
||
|
*/
|
||
|
|
||
|
return [
|
||
|
'title' => "{actorDisplayName}'s post",
|
||
|
'back_to_actor_posts' => 'Back to {actor} posts',
|
||
|
'actor_shared' => '{actor} shared',
|
||
|
'reply_to' => 'Reply to @{actorUsername}',
|
||
|
'form' => [
|
||
|
'message_placeholder' => 'Write a message…',
|
||
|
'episode_message_placeholder' => 'Write a message for the episode…',
|
||
|
'episode_url_placeholder' => 'Episode URL',
|
||
|
'reply_to_placeholder' => 'Reply to @{actorUsername}',
|
||
|
'submit' => 'Send',
|
||
|
'submit_reply' => 'Reply',
|
||
|
],
|
||
|
'favourites' => '{numberOfFavourites, plural,
|
||
|
one {# favourite}
|
||
|
other {# favourites}
|
||
|
}',
|
||
|
'reblogs' => '{numberOfReblogs, plural,
|
||
|
one {# share}
|
||
|
other {# shares}
|
||
|
}',
|
||
|
'replies' => '{numberOfReplies, plural,
|
||
|
one {# reply}
|
||
|
other {# replies}
|
||
|
}',
|
||
|
'expand' => 'Expand post',
|
||
|
'block_actor' => 'Block user @{actorUsername}',
|
||
|
'block_domain' => 'Block domain @{actorDomain}',
|
||
|
'delete' => 'Delete post',
|
||
|
];
|