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
|
|
|
'season' => 'Stagione {seasonNumber}',
|
2022-03-30 15:09:35 +00:00
|
|
|
'season_abbr' => 'S{seasonNumber}',
|
2022-10-14 16:12:14 +00:00
|
|
|
'number' => 'Episodio {episodeNumber}',
|
2022-03-30 15:09:35 +00:00
|
|
|
'number_abbr' => 'Ep. {episodeNumber}',
|
2022-10-14 16:12:14 +00:00
|
|
|
'season_episode' => 'Stagione {seasonNumber} episodio {episodeNumber}',
|
2022-03-30 15:09:35 +00:00
|
|
|
'season_episode_abbr' => 'S{seasonNumber}:E{episodeNumber}',
|
|
|
|
'persons' => '{personsCount, plural,
|
|
|
|
one {# person}
|
|
|
|
other {# persons}
|
|
|
|
}',
|
2022-10-14 16:12:14 +00:00
|
|
|
'persons_list' => 'Persone',
|
|
|
|
'back_to_episodes' => 'Torna agli episodi di {podcast}',
|
|
|
|
'comments' => 'Commenti',
|
|
|
|
'activity' => 'Attività',
|
2024-02-22 10:11:10 +00:00
|
|
|
'chapters' => 'Chapters',
|
2024-04-17 09:57:14 +00:00
|
|
|
'transcript' => 'Transcript',
|
2022-10-14 16:12:14 +00:00
|
|
|
'description' => 'Descrizione dell\'episodio',
|
2022-03-30 15:09:35 +00:00
|
|
|
'number_of_comments' => '{numberOfComments, plural,
|
|
|
|
one {# comment}
|
|
|
|
other {# comments}
|
|
|
|
}',
|
2022-10-14 16:12:14 +00:00
|
|
|
'all_podcast_episodes' => 'Tutti gli episodi del podcast',
|
|
|
|
'back_to_podcast' => 'Torna a podcast',
|
2023-11-29 17:27:10 +00:00
|
|
|
'preview' => [
|
2024-02-05 17:03:36 +00:00
|
|
|
'title' => 'Anteprima',
|
|
|
|
'not_published' => 'Non pubblicato',
|
2023-11-29 17:27:10 +00:00
|
|
|
'text' => '{publication_status, select,
|
2024-02-05 17:03:36 +00:00
|
|
|
published {Questo episodio non è ancora stato pubblicato.}
|
|
|
|
scheduled {Questo episodio sarà pubblicato il {publication_date}.}
|
|
|
|
with_podcast {Questo episodio sarà pubblicato in contemporanea al podcast.}
|
|
|
|
other {Questo episodio non è ancora stato pubblicato.}
|
2023-11-29 17:27:10 +00:00
|
|
|
}',
|
2024-02-05 17:03:36 +00:00
|
|
|
'publish' => 'Pubblica',
|
|
|
|
'publish_edit' => 'Modifica pubblicazione',
|
2023-11-29 17:27:10 +00:00
|
|
|
],
|
2024-02-22 10:11:10 +00:00
|
|
|
'no_chapters' => 'No chapters are available for this episode.',
|
2024-04-17 09:57:14 +00:00
|
|
|
'download_transcript' => 'Download transcript ({extension})',
|
|
|
|
'no_transcript' => 'No transcript available for this episode.',
|
2022-03-30 15:09:35 +00:00
|
|
|
];
|