mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-22 16:51:20 +00:00
36 lines
1.0 KiB
PHP
36 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' => 'Sezon {seasonNumber}',
|
|
'season_abbr' => 'S{seasonNumber}',
|
|
'number' => 'Odcinek {episodeNumber}',
|
|
'number_abbr' => 'Odc. {episodeNumber}',
|
|
'season_episode' => 'Sezon {seasonNumber} odcinek {episodeNumber}',
|
|
'season_episode_abbr' => 'S{seasonNumber}:O{episodeNumber}',
|
|
'persons' => '{personsCount, plural,
|
|
one {# osoba}
|
|
few {# osoby}
|
|
other {# osób}
|
|
}',
|
|
'persons_list' => 'Osoby',
|
|
'back_to_episodes' => 'Wróć do odcinków {podcast}',
|
|
'comments' => 'Komentarze',
|
|
'activity' => 'Aktywność',
|
|
'description' => 'Opis odcinka',
|
|
'number_of_comments' => '{numberOfComments, plural,
|
|
one {# komentarz}
|
|
few {# komentarze}
|
|
other {# komentarzy}
|
|
}',
|
|
'all_podcast_episodes' => 'Wszystkie odcinki podcastu',
|
|
'back_to_podcast' => 'Wróć do podkastu',
|
|
];
|