mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01: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' => 'Handtaket ditt',
|
|
'your_handle_hint' => 'Skriv inn @brukarnamn@domene som du vil handla frå.',
|
|
'follow' => [
|
|
'label' => 'Fylg',
|
|
'title' => 'Fylg {actorDisplayName}',
|
|
'subtitle' => 'Du kjem til å fylgja:',
|
|
'accountNotFound' => 'Fann ikkje kontoen.',
|
|
'remoteFollowNotAllowed' => 'Det ser ut til at denne tenaren ikkje tillèt eksterne fylgjarar…',
|
|
'submit' => 'Hald fram for å fylgja',
|
|
],
|
|
'favourite' => [
|
|
'title' => "Innlegg frå favoritten {actorDisplayName}",
|
|
'subtitle' => 'Du kjem til å merka som favoritt:',
|
|
'submit' => 'Hald fram for å merka som favoritt',
|
|
],
|
|
'reblog' => [
|
|
'title' => "Del innlegget frå {actorDisplayName}",
|
|
'subtitle' => 'Du skal til å dela:',
|
|
'submit' => 'Hald fram for å dela',
|
|
],
|
|
'reply' => [
|
|
'title' => "Svar til innlegget frå {actorDisplayName}",
|
|
'subtitle' => 'Du skal til å svara på:',
|
|
'submit' => 'Hald fram for å svara',
|
|
],
|
|
];
|