mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
34 lines
1.0 KiB
PHP
34 lines
1.0 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 [
|
|
'season' => 'Staffel {seasonNumber}',
|
|
'season_abbr' => 'S{seasonNumber}',
|
|
'number' => 'Folge {episodeNumber}',
|
|
'number_abbr' => 'F {episodeNumber}',
|
|
'season_episode' => 'Staffel {seasonNumber} Folge {episodeNumber}',
|
|
'season_episode_abbr' => 'S{seasonNumber}F{episodeNumber}',
|
|
'persons' => '{personsCount, plural,
|
|
one {# Mitwirkender}
|
|
other {# Mitwirkende}
|
|
}',
|
|
'persons_list' => 'Mitwirkende',
|
|
'back_to_episodes' => 'Zurück zu den Folgen von {podcast}',
|
|
'comments' => 'Kommentare',
|
|
'activity' => 'Aktivitäten',
|
|
'description' => 'Beschreibung der Folge',
|
|
'number_of_comments' => '{numberOfComments, plural,
|
|
one {# Kommentar}
|
|
other {# Kommentare}
|
|
}',
|
|
'all_podcast_episodes' => 'Alle Podcast-Folgen',
|
|
'back_to_podcast' => 'Zurück zum Podcast',
|
|
];
|