2022-03-29 15:33:32 +00:00
|
|
|
<?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 [
|
2022-03-30 15:09:35 +00:00
|
|
|
'title' => "{actorDisplayName}'s Beitrag",
|
2022-04-15 12:16:12 +00:00
|
|
|
'back_to_actor_posts' => 'Zurück zu {actor}\'s Beiträge',
|
2022-03-30 15:09:35 +00:00
|
|
|
'actor_shared' => '{actor} teilte',
|
2022-04-05 15:45:54 +00:00
|
|
|
'reply_to' => 'Antorten auf @{actorUsername}',
|
2022-03-29 15:33:32 +00:00
|
|
|
'form' => [
|
2022-03-30 15:09:35 +00:00
|
|
|
'message_placeholder' => 'Scheibe eine Nachricht…',
|
2022-07-04 13:27:21 +00:00
|
|
|
'episode_message_placeholder' => 'Schreibe eine Nachricht für die Episode…',
|
|
|
|
'episode_url_placeholder' => 'URL der Episode',
|
2022-04-05 15:45:54 +00:00
|
|
|
'reply_to_placeholder' => 'Antworten auf @{actorUsername}',
|
2022-03-30 15:09:35 +00:00
|
|
|
'submit' => 'Senden',
|
|
|
|
'submit_reply' => 'Antwort senden',
|
2022-03-29 15:33:32 +00:00
|
|
|
],
|
|
|
|
'favourites' => '{numberOfFavourites, plural,
|
2022-03-30 15:09:35 +00:00
|
|
|
one {# Favorit}
|
|
|
|
other {# Favoriten}
|
2022-03-29 15:33:32 +00:00
|
|
|
}',
|
|
|
|
'reblogs' => '{numberOfReblogs, plural,
|
2022-04-05 15:45:54 +00:00
|
|
|
one {# mal geteilt}
|
|
|
|
other {# mal geteilt}
|
2022-03-29 15:33:32 +00:00
|
|
|
}',
|
|
|
|
'replies' => '{numberOfReplies, plural,
|
2022-03-30 15:09:35 +00:00
|
|
|
one {# Antwort}
|
|
|
|
other {# Antworten}
|
2022-03-29 15:33:32 +00:00
|
|
|
}',
|
2022-03-30 15:09:35 +00:00
|
|
|
'expand' => 'Mehr anzeigen',
|
|
|
|
'block_actor' => '@{actorUsername} blockieren',
|
|
|
|
'block_domain' => 'Domain @{actorDomain} blockieren',
|
|
|
|
'delete' => 'Beitrag löschen',
|
2022-03-29 15:33:32 +00:00
|
|
|
];
|