2022-03-30 15:09:35 +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 [
|
|
|
|
'feed' => 'RSS Podcast feed',
|
2022-04-05 15:45:54 +00:00
|
|
|
'season' => 'Seizoen {seasonNumber}',
|
|
|
|
'list_of_episodes_year' => '{year} afleveringen ({episodeCount})',
|
2022-03-30 15:09:35 +00:00
|
|
|
'list_of_episodes_season' =>
|
2022-04-05 15:45:54 +00:00
|
|
|
'Seizoen {seasonNumber} afleveringen ({episodeCount})',
|
|
|
|
'no_episode' => 'Er zijn geen afleveringen gevonden!',
|
|
|
|
'follow' => 'Abonneer',
|
|
|
|
'followTitle' => 'Abonneer op {actorDisplayName} via de fediverse!',
|
2022-03-30 15:09:35 +00:00
|
|
|
'followers' => '{numberOfFollowers, plural,
|
2022-09-23 15:51:26 +00:00
|
|
|
one {# volger}
|
|
|
|
other {# volgers}
|
2022-03-30 15:09:35 +00:00
|
|
|
}',
|
|
|
|
'posts' => '{numberOfPosts, plural,
|
2022-09-23 15:51:26 +00:00
|
|
|
one {# bericht}
|
|
|
|
other {# berichten}
|
2022-03-30 15:09:35 +00:00
|
|
|
}',
|
2023-07-27 10:49:25 +00:00
|
|
|
'links' => 'Links',
|
2022-04-05 15:45:54 +00:00
|
|
|
'activity' => 'Activiteit',
|
|
|
|
'episodes' => 'Afleveringen',
|
|
|
|
'episodes_title' => 'Afleveringen van {podcastTitle}',
|
|
|
|
'about' => 'Over Ons',
|
2022-03-30 15:09:35 +00:00
|
|
|
'stats' => [
|
2022-04-05 15:45:54 +00:00
|
|
|
'title' => 'Statistieken',
|
2022-03-30 15:09:35 +00:00
|
|
|
'number_of_seasons' => '{0, plural,
|
2022-09-23 15:51:26 +00:00
|
|
|
one {# seizoen}
|
|
|
|
other {# seizoenen}
|
2022-03-30 15:09:35 +00:00
|
|
|
}',
|
|
|
|
'number_of_episodes' => '{0, plural,
|
2022-09-23 15:51:26 +00:00
|
|
|
one {# aflevering}
|
|
|
|
other {# afleveringen}
|
2022-03-30 15:09:35 +00:00
|
|
|
}',
|
2022-09-23 15:51:26 +00:00
|
|
|
'first_published_at' => 'Eerste aflevering gepubliceerd op {0, date, medium}',
|
2022-03-30 15:09:35 +00:00
|
|
|
],
|
|
|
|
'sponsor' => 'Sponsor',
|
2022-04-05 15:45:54 +00:00
|
|
|
'funding_links' => 'Financiering links voor {podcastTitle}',
|
|
|
|
'find_on' => 'Vind {podcastTitle} op',
|
|
|
|
'listen_on' => 'Luister op',
|
2022-03-30 15:09:35 +00:00
|
|
|
'persons' => '{personsCount, plural,
|
2022-04-05 15:45:54 +00:00
|
|
|
one {# persoon}
|
|
|
|
other {# personen}
|
2022-03-30 15:09:35 +00:00
|
|
|
}',
|
2022-04-05 15:45:54 +00:00
|
|
|
'persons_list' => 'Personen',
|
2023-11-29 17:27:10 +00:00
|
|
|
'castopod_website' => 'Castopod (website)',
|
2022-03-30 15:09:35 +00:00
|
|
|
];
|