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' => 'Dit handle',
|
|
'your_handle_hint' => 'Indtast det @brugernavn@domæne, du ønsker at handle fra.',
|
|
'follow' => [
|
|
'label' => 'Følg',
|
|
'title' => 'Følg {actorDisplayName}',
|
|
'subtitle' => 'Du er ved at følge:',
|
|
'accountNotFound' => 'Brugeren blev ikke fundet.',
|
|
'remoteFollowNotAllowed' => 'Det ser ud til, at kontoserveren ikke tillader eksterne følgere…',
|
|
'submit' => 'Fortsæt for at følge',
|
|
],
|
|
'favourite' => [
|
|
'title' => "Markér {actorDisplayName}s opslag som favorit",
|
|
'subtitle' => 'Du er ved at favoritmarkere:',
|
|
'submit' => 'Fortsæt for at favoritmarkere',
|
|
],
|
|
'reblog' => [
|
|
'title' => "Del {actorDisplayName}s opslag",
|
|
'subtitle' => 'Du er ved at dele:',
|
|
'submit' => 'Fortsæt for at dele',
|
|
],
|
|
'reply' => [
|
|
'title' => "Svar på {actorDisplayName}s opslag",
|
|
'subtitle' => 'Du er ved at svare på:',
|
|
'submit' => 'Fortsæt for at svare',
|
|
],
|
|
];
|