mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
29 lines
781 B
PHP
29 lines
781 B
PHP
![]() |
<?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 [
|
||
|
'home' => 'Panell de control',
|
||
|
'welcome_message' => 'Benvinguts al panell de control.',
|
||
|
'podcasts' => [
|
||
|
'title' => 'Podcasts',
|
||
|
'not_found' => 'No hi ha podcasts publicats',
|
||
|
'last_published' => 'Darrera publicació el {lastPublicationDate}',
|
||
|
],
|
||
|
'episodes' => [
|
||
|
'title' => 'Episodis',
|
||
|
'not_found' => 'No hi ha episodis publicats',
|
||
|
'last_published' => 'Darrera publicació el {lastPublicationDate}',
|
||
|
],
|
||
|
'storage' => [
|
||
|
'title' => 'Emmagatzematge',
|
||
|
'subtitle' => '{totalUploaded} de {totalStorage}',
|
||
|
],
|
||
|
];
|