2022-03-30 15:09:35 +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 [
|
2022-10-14 16:12:14 +00:00
|
|
|
'feed' => 'Feed RSS del podcast',
|
|
|
|
'season' => 'Stagione {seasonNumber}',
|
|
|
|
'list_of_episodes_year' => '{year} episodi ({episodeCount})',
|
2022-03-30 15:09:35 +00:00
|
|
|
'list_of_episodes_season' =>
|
2022-10-14 16:12:14 +00:00
|
|
|
'Stagione {seasonNumber} episodi ({episodeCount})',
|
|
|
|
'no_episode' => 'Nessun episodio trovato!',
|
|
|
|
'follow' => 'Segui',
|
|
|
|
'followTitle' => 'Segui {actorDisplayName} sul fediverso!',
|
2022-03-30 15:09:35 +00:00
|
|
|
'followers' => '{numberOfFollowers, plural,
|
2022-04-21 12:53:47 +00:00
|
|
|
one {# follower}
|
|
|
|
other {# followers}
|
2022-03-30 15:09:35 +00:00
|
|
|
}',
|
|
|
|
'posts' => '{numberOfPosts, plural,
|
2022-04-21 12:53:47 +00:00
|
|
|
one {# post}
|
|
|
|
other {# posts}
|
2022-03-30 15:09:35 +00:00
|
|
|
}',
|
2024-02-05 17:03:36 +00:00
|
|
|
'links' => 'Link',
|
2022-10-14 16:12:14 +00:00
|
|
|
'activity' => 'Attività',
|
|
|
|
'episodes' => 'Episodi',
|
|
|
|
'episodes_title' => 'Episodi di {podcastTitle}',
|
|
|
|
'about' => 'Informazioni',
|
2022-03-30 15:09:35 +00:00
|
|
|
'stats' => [
|
|
|
|
'title' => 'Stats',
|
|
|
|
'number_of_seasons' => '{0, plural,
|
2022-04-21 12:53:47 +00:00
|
|
|
one {# season}
|
|
|
|
other {# seasons}
|
2022-03-30 15:09:35 +00:00
|
|
|
}',
|
|
|
|
'number_of_episodes' => '{0, plural,
|
2022-04-21 12:53:47 +00:00
|
|
|
one {# episode}
|
|
|
|
other {# episodes}
|
2022-03-30 15:09:35 +00:00
|
|
|
}',
|
2022-10-14 16:12:14 +00:00
|
|
|
'first_published_at' => 'Primo episodio pubblicato il {0, date, medium}',
|
2022-03-30 15:09:35 +00:00
|
|
|
],
|
|
|
|
'sponsor' => 'Sponsor',
|
2022-10-14 16:12:14 +00:00
|
|
|
'funding_links' => 'Link di finanziamento per {podcastTitle}',
|
|
|
|
'find_on' => 'Trova {podcastTitle} su',
|
|
|
|
'listen_on' => 'Ascolta su',
|
2022-03-30 15:09:35 +00:00
|
|
|
'persons' => '{personsCount, plural,
|
|
|
|
one {# person}
|
|
|
|
other {# persons}
|
|
|
|
}',
|
2022-10-14 16:12:14 +00:00
|
|
|
'persons_list' => 'Persone',
|
2024-02-05 17:03:36 +00:00
|
|
|
'castopod_website' => 'Castopod (sito web)',
|
2022-03-30 15:09:35 +00:00
|
|
|
];
|