mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 13:01:19 +00:00
34 lines
1.2 KiB
PHP
34 lines
1.2 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' => 'Σεζόν {seasonNumber}',
|
|
'season_abbr' => 'S{seasonNumber}',
|
|
'number' => 'Επεισόδιο {episodeNumber}',
|
|
'number_abbr' => 'Επ. {episodeNumber}',
|
|
'season_episode' => 'Σεζόν {seasonNumber} επεισόδιο {episodeNumber}',
|
|
'season_episode_abbr' => 'S{seasonNumber}:E{episodeNumber}',
|
|
'persons' => '{personsCount, plural,
|
|
one {# άτομο}
|
|
other {# άτομα}
|
|
}',
|
|
'persons_list' => 'Πρόσωπα',
|
|
'back_to_episodes' => 'Επιστροφή στα επεισόδια του {podcast}',
|
|
'comments' => 'Σχόλια',
|
|
'activity' => 'Δραστηριότητα',
|
|
'description' => 'Περιγραφή επεισοδίου',
|
|
'number_of_comments' => '{numberOfComments, plural,
|
|
one {# σχόλιο}
|
|
other {# σχόλια}
|
|
}',
|
|
'all_podcast_episodes' => 'Όλα τα επεισόδια του podcast',
|
|
'back_to_podcast' => 'Μετάβαση πίσω στο podcast',
|
|
];
|