2022-04-05 15:45:54 +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 [
|
|
|
|
|
'feed' => 'RSS-лента подкастов',
|
|
|
|
|
'season' => 'Сезон: {seasonNumber}',
|
|
|
|
|
'list_of_episodes_year' => '{year} эпизодов ({episodeCount})',
|
|
|
|
|
'list_of_episodes_season' =>
|
|
|
|
|
'Сезон {seasonNumber} серий ({episodeCount})',
|
|
|
|
|
'no_episode' => 'Серии не найдены!',
|
|
|
|
|
'follow' => 'Подписаться',
|
|
|
|
|
'followTitle' => 'Подпишитесь на {actorDisplayName} в федивёрсе!',
|
|
|
|
|
'followers' => '{numberOfFollowers, plural,
|
2022-07-04 13:27:21 +00:00
|
|
|
|
one {# follower}
|
|
|
|
|
other {# followers}
|
2022-04-05 15:45:54 +00:00
|
|
|
|
}',
|
|
|
|
|
'posts' => '{numberOfPosts, plural,
|
2022-07-04 13:27:21 +00:00
|
|
|
|
one {# post}
|
|
|
|
|
other {# posts}
|
2022-04-05 15:45:54 +00:00
|
|
|
|
}',
|
2023-07-27 10:49:25 +00:00
|
|
|
|
'links' => 'Links',
|
2022-04-05 15:45:54 +00:00
|
|
|
|
'activity' => 'Активность',
|
|
|
|
|
'episodes' => 'Выпуски',
|
|
|
|
|
'episodes_title' => 'Выпуски {podcastTitle}',
|
|
|
|
|
'about' => 'О нас',
|
|
|
|
|
'stats' => [
|
|
|
|
|
'title' => 'Статистика',
|
|
|
|
|
'number_of_seasons' => '{0, plural,
|
2022-07-04 13:27:21 +00:00
|
|
|
|
one {# season}
|
|
|
|
|
other {# seasons}
|
2022-04-05 15:45:54 +00:00
|
|
|
|
}',
|
|
|
|
|
'number_of_episodes' => '{0, plural,
|
2022-07-04 13:27:21 +00:00
|
|
|
|
one {# episode}
|
|
|
|
|
other {# episodes}
|
2022-04-05 15:45:54 +00:00
|
|
|
|
}',
|
2022-07-04 13:27:21 +00:00
|
|
|
|
'first_published_at' => 'First episode published on {0, date, medium}',
|
2022-04-05 15:45:54 +00:00
|
|
|
|
],
|
|
|
|
|
'sponsor' => 'Спонсор',
|
|
|
|
|
'funding_links' => 'Ссылки на финансирование для {podcastTitle}',
|
|
|
|
|
'find_on' => 'Найти {podcastTitle} на',
|
|
|
|
|
'listen_on' => 'Слушать в',
|
|
|
|
|
'persons' => '{personsCount, plural,
|
|
|
|
|
one {# человек}
|
|
|
|
|
few {# человек}
|
|
|
|
|
many {# человек}
|
|
|
|
|
other {# человек}
|
|
|
|
|
}',
|
|
|
|
|
'persons_list' => 'Лица',
|
2023-11-29 17:27:10 +00:00
|
|
|
|
'castopod_website' => 'Castopod (website)',
|
2022-04-05 15:45:54 +00:00
|
|
|
|
];
|