2021-08-23 11:05:16 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
/**
|
2022-02-19 16:06:11 +00:00
|
|
|
* @copyright 2020 Ad Aures
|
2021-08-23 11:05:16 +00:00
|
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
|
|
* @link https://castopod.org/
|
|
|
|
*/
|
|
|
|
|
|
|
|
return [
|
2023-03-16 16:45:41 +00:00
|
|
|
'home' => 'Tableau de bord',
|
|
|
|
'welcome_message' => 'Bienvenue dans l\'espace d\'administration !',
|
2022-07-14 09:03:44 +00:00
|
|
|
'podcasts' => [
|
|
|
|
'title' => 'Podcasts',
|
2023-03-16 16:45:41 +00:00
|
|
|
'not_found' => 'Pas de podcast publié',
|
|
|
|
'last_published' => 'Dernière publication le {lastPublicationDate}',
|
2022-07-14 09:03:44 +00:00
|
|
|
],
|
|
|
|
'episodes' => [
|
2023-03-16 16:45:41 +00:00
|
|
|
'title' => 'Épisodes',
|
|
|
|
'not_found' => 'Aucun épisode publié',
|
|
|
|
'last_published' => 'Dernière publication le {lastPublicationDate}',
|
2022-07-14 09:03:44 +00:00
|
|
|
],
|
|
|
|
'storage' => [
|
2023-03-16 16:45:41 +00:00
|
|
|
'title' => 'Espace de stockage',
|
|
|
|
'subtitle' => '{totalUploaded} sur {totalStorage}',
|
2022-07-14 09:03:44 +00:00
|
|
|
],
|
2021-08-23 11:05:16 +00:00
|
|
|
];
|