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-09-06 14:55:46 +00:00
|
|
|
'home' => 'Panel de control',
|
|
|
|
'welcome_message' => '¡Bienvenid@ al área de administración!',
|
2022-07-14 09:03:44 +00:00
|
|
|
'podcasts' => [
|
|
|
|
'title' => 'Podcasts',
|
2022-09-06 14:55:46 +00:00
|
|
|
'not_found' => 'Podcasts sin publicar',
|
|
|
|
'last_published' => 'Últimas publicaciones en {lastPublicationDate}',
|
2022-07-14 09:03:44 +00:00
|
|
|
],
|
|
|
|
'episodes' => [
|
2022-09-06 14:55:46 +00:00
|
|
|
'title' => 'Episodios',
|
|
|
|
'not_found' => 'Episodios sin publicar',
|
|
|
|
'last_published' => 'Últimas publicaciones en {lastPublicationDate}',
|
2022-07-14 09:03:44 +00:00
|
|
|
],
|
|
|
|
'storage' => [
|
2022-09-06 14:55:46 +00:00
|
|
|
'title' => 'Almacenamiento',
|
|
|
|
'subtitle' => '{totalUploaded} de {totalStorage}',
|
2022-07-14 09:03:44 +00:00
|
|
|
],
|
2022-03-30 15:09:35 +00:00
|
|
|
];
|