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-11-04 11:03:24 +00:00
|
|
|
'home' => 'Admin kontrollpanel',
|
|
|
|
'welcome_message' => 'Välkommen till adminområdet!',
|
2022-07-14 09:03:44 +00:00
|
|
|
'podcasts' => [
|
|
|
|
'title' => 'Podcasts',
|
2022-11-04 11:03:24 +00:00
|
|
|
'not_found' => 'Ingen publicerad podcast',
|
|
|
|
'last_published' => 'Senast publicerad den {lastPublicationDate}',
|
2022-07-14 09:03:44 +00:00
|
|
|
],
|
|
|
|
'episodes' => [
|
2022-11-04 11:03:24 +00:00
|
|
|
'title' => 'Avsnitt',
|
|
|
|
'not_found' => 'Inga publicerade avsnitt',
|
|
|
|
'last_published' => 'Senast publicerad den {lastPublicationDate}',
|
2022-07-14 09:03:44 +00:00
|
|
|
],
|
|
|
|
'storage' => [
|
2022-11-04 11:03:24 +00:00
|
|
|
'title' => 'Lagring',
|
|
|
|
'subtitle' => '{totalUploaded} av {totalStorage}',
|
2022-07-14 09:03:44 +00:00
|
|
|
],
|
2021-08-23 11:05:16 +00:00
|
|
|
];
|