mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
34 lines
1.1 KiB
PHP
34 lines
1.1 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' => 'С{seasonNumber}',
|
||
'number' => 'Серія {episodeNumber}',
|
||
'number_abbr' => 'Серія {episodeNumber}',
|
||
'season_episode' => 'Сезон {seasonNumber} серія {episodeNumber}',
|
||
'season_episode_abbr' => 'С{seasonNumber}:Е{episodeNumber}',
|
||
'persons' => '{personsCount, plural,
|
||
one {# person}
|
||
other {# persons}
|
||
}',
|
||
'persons_list' => 'Кіл-сть осіб',
|
||
'back_to_episodes' => 'Повернутись до серій {podcast}',
|
||
'comments' => 'Коментарі',
|
||
'activity' => 'Активність',
|
||
'description' => 'Опис Серії',
|
||
'number_of_comments' => '{numberOfComments, plural,
|
||
one {# comment}
|
||
other {# comments}
|
||
}',
|
||
'all_podcast_episodes' => 'Всі серії подкастів',
|
||
'back_to_podcast' => 'Повернутися до подкасту',
|
||
];
|