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 [
|
2022-04-05 15:45:54 +00:00
|
|
|
'season' => 'Seizoen {seasonNumber}',
|
2022-03-30 15:09:35 +00:00
|
|
|
'season_abbr' => 'S{seasonNumber}',
|
2022-04-05 15:45:54 +00:00
|
|
|
'number' => 'Aflevering {episodeNumber}',
|
2022-03-30 15:09:35 +00:00
|
|
|
'number_abbr' => 'Ep. {episodeNumber}',
|
2022-04-05 15:45:54 +00:00
|
|
|
'season_episode' => 'Seizoen {seasonNumber} aflevering {episodeNumber}',
|
2022-03-30 15:09:35 +00:00
|
|
|
'season_episode_abbr' => 'S{seasonNumber}:E{episodeNumber}',
|
|
|
|
'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',
|
|
|
|
'back_to_episodes' => 'Terug naar de afleveringen van {podcast}',
|
|
|
|
'comments' => 'Reacties',
|
|
|
|
'activity' => 'Activiteiten',
|
2024-03-08 13:05:48 +00:00
|
|
|
'chapters' => 'Hoofdstukken',
|
2024-04-17 09:57:14 +00:00
|
|
|
'transcript' => 'Transcript',
|
2022-04-05 15:45:54 +00:00
|
|
|
'description' => 'Omschrijving aflevering',
|
2022-03-30 15:09:35 +00:00
|
|
|
'number_of_comments' => '{numberOfComments, plural,
|
2022-04-05 15:45:54 +00:00
|
|
|
one {# reactie}
|
|
|
|
other {# reacties}
|
2022-03-30 15:09:35 +00:00
|
|
|
}',
|
2022-04-05 15:45:54 +00:00
|
|
|
'all_podcast_episodes' => 'Alle podcast afleveringen',
|
|
|
|
'back_to_podcast' => 'Terug naar podcast',
|
2023-11-29 17:27:10 +00:00
|
|
|
'preview' => [
|
2024-02-05 17:03:36 +00:00
|
|
|
'title' => 'Voorbeeld',
|
|
|
|
'not_published' => 'Niet gepubliceerd',
|
2023-11-29 17:27:10 +00:00
|
|
|
'text' => '{publication_status, select,
|
2024-02-05 17:03:36 +00:00
|
|
|
published {Deze aflevering is nog niet gepubliceerd.}
|
|
|
|
scheduled {Deze aflevering is gepland voor publicatie op {publication_date}}
|
|
|
|
with_podcast {Deze aflevering zal op hetzelfde moment als de podcast worden gepubliceerd}
|
|
|
|
other {Deze aflevering is nog niet gepubliceerd.}
|
2023-11-29 17:27:10 +00:00
|
|
|
}',
|
2024-02-05 17:03:36 +00:00
|
|
|
'publish' => 'Publiceer',
|
|
|
|
'publish_edit' => 'Publicatie bewerken',
|
2023-11-29 17:27:10 +00:00
|
|
|
],
|
2024-03-08 13:05:48 +00:00
|
|
|
'no_chapters' => 'Voor deze aflevering zijn geen hoofdstukken beschikbaar.',
|
2024-04-17 09:57:14 +00:00
|
|
|
'download_transcript' => 'Download transcript ({extension})',
|
|
|
|
'no_transcript' => 'No transcript available for this episode.',
|
2022-03-30 15:09:35 +00:00
|
|
|
];
|