2022-03-29 15:33:32 +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-11-04 11:03:24 +00:00
|
|
|
'home' => 'Admin-Dashboard',
|
|
|
|
'welcome_message' => 'Willkommen im Administrationsbereich!',
|
2022-07-14 09:03:44 +00:00
|
|
|
'podcasts' => [
|
|
|
|
'title' => 'Podcasts',
|
2022-11-04 11:03:24 +00:00
|
|
|
'not_found' => 'Kein veröffentlichter Podcast',
|
|
|
|
'last_published' => 'Zuletzt veröffentlicht am {lastPublicationDate}',
|
2022-07-14 09:03:44 +00:00
|
|
|
],
|
|
|
|
'episodes' => [
|
2023-03-16 16:45:41 +00:00
|
|
|
'title' => 'Folgen',
|
2022-11-04 11:03:24 +00:00
|
|
|
'not_found' => 'Keine veröffentlichte Episode',
|
|
|
|
'last_published' => 'Zuletzt veröffentlicht am {lastPublicationDate}',
|
2022-07-14 09:03:44 +00:00
|
|
|
],
|
|
|
|
'storage' => [
|
2022-11-04 11:03:24 +00:00
|
|
|
'title' => 'Speicher',
|
|
|
|
'subtitle' => '{totalUploaded} von {totalStorage}',
|
2022-07-14 09:03:44 +00:00
|
|
|
],
|
2022-03-29 15:33:32 +00:00
|
|
|
];
|