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-04-05 15:45:54 +00:00
|
|
|
'feed' => 'Feed RSS do podcast',
|
|
|
|
'season' => 'Temporada {seasonNumber}',
|
|
|
|
'list_of_episodes_year' => 'Episódios de {year} ({episodeCount})',
|
2022-03-30 15:09:35 +00:00
|
|
|
'list_of_episodes_season' =>
|
2022-04-05 15:45:54 +00:00
|
|
|
'Episódios da temporada {seasonNumber} ({episodeCount})',
|
|
|
|
'no_episode' => 'Nenhum episódio encontrado!',
|
|
|
|
'follow' => 'Seguir',
|
|
|
|
'followTitle' => 'Siga {actorDisplayName} no fediverso!',
|
2022-03-30 15:09:35 +00:00
|
|
|
'followers' => '{numberOfFollowers, plural,
|
2022-04-21 12:53:47 +00:00
|
|
|
one {# seguidor}
|
|
|
|
other {# seguidores}
|
2022-03-30 15:09:35 +00:00
|
|
|
}',
|
|
|
|
'posts' => '{numberOfPosts, plural,
|
2022-04-21 12:53:47 +00:00
|
|
|
one {# publicação}
|
|
|
|
other {# publicações}
|
2022-03-30 15:09:35 +00:00
|
|
|
}',
|
2023-07-27 10:49:25 +00:00
|
|
|
'links' => 'Links',
|
2022-04-05 15:45:54 +00:00
|
|
|
'activity' => 'Atividade',
|
|
|
|
'episodes' => 'Episódios',
|
|
|
|
'episodes_title' => 'Episódios de {podcastTitle}',
|
|
|
|
'about' => 'Sobre',
|
2022-03-30 15:09:35 +00:00
|
|
|
'stats' => [
|
2022-04-05 15:45:54 +00:00
|
|
|
'title' => 'Estatísticas',
|
2022-03-30 15:09:35 +00:00
|
|
|
'number_of_seasons' => '{0, plural,
|
2022-04-21 12:53:47 +00:00
|
|
|
one {# temporada}
|
|
|
|
other {# temporadas}
|
2022-03-30 15:09:35 +00:00
|
|
|
}',
|
|
|
|
'number_of_episodes' => '{0, plural,
|
2022-04-21 12:53:47 +00:00
|
|
|
one {# episódio}
|
|
|
|
other {# episódios}
|
2022-03-30 15:09:35 +00:00
|
|
|
}',
|
2022-04-21 12:53:47 +00:00
|
|
|
'first_published_at' => 'Primeiro episódio publicado em {0, date, medium}',
|
2022-03-30 15:09:35 +00:00
|
|
|
],
|
2022-07-04 13:27:21 +00:00
|
|
|
'sponsor' => 'Apoiar',
|
2022-04-05 15:45:54 +00:00
|
|
|
'funding_links' => 'Links de financiamento para {podcastTitle}',
|
|
|
|
'find_on' => 'Encontrar {podcastTitle} em',
|
|
|
|
'listen_on' => 'Ouvir em',
|
2022-03-30 15:09:35 +00:00
|
|
|
'persons' => '{personsCount, plural,
|
2022-04-05 15:45:54 +00:00
|
|
|
one {# pessoa}
|
|
|
|
other {# pessoas}
|
2022-03-30 15:09:35 +00:00
|
|
|
}',
|
2022-04-05 15:45:54 +00:00
|
|
|
'persons_list' => 'Pessoas',
|
2023-11-29 17:27:10 +00:00
|
|
|
'castopod_website' => 'Castopod (website)',
|
2022-03-30 15:09:35 +00:00
|
|
|
];
|