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
|
|
|
'all_podcasts' => 'Todos los podcasts',
|
|
|
|
'sort_by' => 'Ordenar por',
|
2022-03-30 15:09:35 +00:00
|
|
|
'sort_options' => [
|
2022-04-05 15:45:54 +00:00
|
|
|
'activity' => 'Actividad reciente',
|
|
|
|
'created_desc' => 'Más reciente primero',
|
|
|
|
'created_asc' => 'Más antiguos primero',
|
2022-03-30 15:09:35 +00:00
|
|
|
],
|
2022-04-05 15:45:54 +00:00
|
|
|
'no_podcast' => 'No se encontró el podcast',
|
2022-03-30 15:09:35 +00:00
|
|
|
];
|