mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-04 15:26:43 +02:00
28 lines
798 B
PHP
28 lines
798 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' => 'Administratoriaus skydelis',
|
||
'welcome_message' => 'Sveiki, tai – administratoriaus skydelis!',
|
||
'podcasts' => [
|
||
'title' => 'Tinklalaidės',
|
||
'not_found' => 'Nėra paskelbtų tinklalaidžių',
|
||
'last_published' => 'Paskiausiai skelbta {lastPublicationDate}',
|
||
],
|
||
'episodes' => [
|
||
'title' => 'Epizodai',
|
||
'not_found' => 'Nėra paskelbtų epizodų',
|
||
'last_published' => 'Paskiausiai skelbta {lastPublicationDate}',
|
||
],
|
||
'storage' => [
|
||
'title' => 'Saugykla',
|
||
'subtitle' => '{totalUploaded} iš {totalStorage}',
|
||
],
|
||
];
|