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 [
|
2022-07-06 15:29:15 +00:00
|
|
|
'home' => 'Admin dashboard',
|
2021-08-23 11:05:16 +00:00
|
|
|
'welcome_message' => 'Welcome to the admin area!',
|
2022-07-14 09:03:44 +00:00
|
|
|
'podcasts' => [
|
|
|
|
'title' => 'Podcasts',
|
|
|
|
'not_found' => 'No published podcast',
|
|
|
|
'last_published' => 'Last published on {lastPublicationDate}',
|
|
|
|
],
|
|
|
|
'episodes' => [
|
|
|
|
'title' => 'Episodes',
|
|
|
|
'not_found' => 'No published episode',
|
|
|
|
'last_published' => 'Last published on {lastPublicationDate}',
|
|
|
|
],
|
|
|
|
'storage' => [
|
|
|
|
'title' => 'Storage',
|
|
|
|
'subtitle' => '{totalUploaded} out of {totalStorage}',
|
|
|
|
],
|
2021-08-23 11:05:16 +00:00
|
|
|
];
|