2023-06-29 15:23:25 +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 [
|
2024-04-17 09:57:14 +00:00
|
|
|
|
'feed' => 'RSS PodCastフィード',
|
|
|
|
|
'season' => 'シーズン {seasonNumber}',
|
|
|
|
|
'list_of_episodes_year' => '{year} エピソード ({episodeCount})',
|
2023-06-29 15:23:25 +00:00
|
|
|
|
'list_of_episodes_season' =>
|
2024-04-17 09:57:14 +00:00
|
|
|
|
'シーズン {seasonNumber} エピソード({episodeCount})',
|
|
|
|
|
'no_episode' => 'エピソードが見つかりませんでした',
|
|
|
|
|
'follow' => 'フォロー',
|
|
|
|
|
'followTitle' => 'Fediverseで {actorDisplayName} をフォロー!',
|
2023-06-29 15:23:25 +00:00
|
|
|
|
'followers' => '{numberOfFollowers, plural,
|
2024-04-17 09:57:14 +00:00
|
|
|
|
other {# 人のフォロワー}
|
2023-06-29 15:23:25 +00:00
|
|
|
|
}',
|
|
|
|
|
'posts' => '{numberOfPosts, plural,
|
2024-04-17 09:57:14 +00:00
|
|
|
|
other {#件の投稿}
|
2023-06-29 15:23:25 +00:00
|
|
|
|
}',
|
2024-04-17 09:57:14 +00:00
|
|
|
|
'links' => 'リンク',
|
|
|
|
|
'activity' => 'アクティビティー',
|
|
|
|
|
'episodes' => 'エピソード',
|
|
|
|
|
'episodes_title' => '{podcastTitle} のエピソード',
|
|
|
|
|
'about' => '概要',
|
2023-06-29 15:23:25 +00:00
|
|
|
|
'stats' => [
|
2024-04-17 09:57:14 +00:00
|
|
|
|
'title' => '統計',
|
2023-06-29 15:23:25 +00:00
|
|
|
|
'number_of_seasons' => '{0, plural,
|
|
|
|
|
one {# season}
|
|
|
|
|
other {# seasons}
|
|
|
|
|
}',
|
|
|
|
|
'number_of_episodes' => '{0, plural,
|
|
|
|
|
one {# episode}
|
|
|
|
|
other {# episodes}
|
|
|
|
|
}',
|
|
|
|
|
'first_published_at' => 'First episode published on {0, date, medium}',
|
|
|
|
|
],
|
|
|
|
|
'sponsor' => 'Sponsor',
|
|
|
|
|
'funding_links' => 'Funding links for {podcastTitle}',
|
|
|
|
|
'find_on' => 'Find {podcastTitle} on',
|
|
|
|
|
'listen_on' => 'Listen on',
|
|
|
|
|
'persons' => '{personsCount, plural,
|
|
|
|
|
one {# person}
|
|
|
|
|
other {# persons}
|
|
|
|
|
}',
|
|
|
|
|
'persons_list' => 'Persons',
|
2023-11-29 17:27:10 +00:00
|
|
|
|
'castopod_website' => 'Castopod (website)',
|
2023-06-29 15:23:25 +00:00
|
|
|
|
];
|