mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-22 16:51:20 +00:00
56 lines
1.6 KiB
PHP
56 lines
1.6 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 [
|
|
'feed' => 'RSS-straum for podkasten',
|
|
'season' => 'Sesong {seasonNumber}',
|
|
'list_of_episodes_year' => '{year}-episodar ({episodeCount})',
|
|
'list_of_episodes_season' =>
|
|
'Sesong {seasonNumber}-episodar ({episodeCount})',
|
|
'no_episode' => 'Fann ingen episode!',
|
|
'follow' => 'Fylg',
|
|
'followTitle' => 'Fylg {actorDisplayName} på fødiverset!',
|
|
'followers' => '{numberOfFollowers, plural,
|
|
one {# fylgjar}
|
|
other {# fylgjarar}
|
|
}',
|
|
'posts' => '{numberOfPosts, plural,
|
|
one {# innlegg}
|
|
other {# innlegg}
|
|
}',
|
|
'links' => 'Lenker',
|
|
'activity' => 'Aktivitet',
|
|
'episodes' => 'Episodar',
|
|
'episodes_title' => 'Episodar av {podcastTitle}',
|
|
'about' => 'Om',
|
|
'stats' => [
|
|
'title' => 'Statistikk',
|
|
'number_of_seasons' => '{0, plural,
|
|
one {# sesong}
|
|
other {# sesongar}
|
|
}',
|
|
'number_of_episodes' => '{0, plural,
|
|
one {# episode}
|
|
other {# episodar}
|
|
}',
|
|
'first_published_at' => 'Den fyrste episoden vart utgjeven {0, date, medium}',
|
|
],
|
|
'sponsor' => 'Sponsor',
|
|
'funding_links' => 'Finansieringslenker for {podcastTitle}',
|
|
'find_on' => 'Finn {podcastTitle} på',
|
|
'listen_on' => 'Høyr på',
|
|
'persons' => '{personsCount, plural,
|
|
one {# person}
|
|
other {# personar}
|
|
}',
|
|
'persons_list' => 'Personar',
|
|
'castopod_website' => 'Castopod (website)',
|
|
];
|