mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
29 lines
768 B
PHP
29 lines
768 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' => 'Taolenn-stur',
|
|
'welcome_message' => 'Degemer mat en daolenn-stur!',
|
|
'podcasts' => [
|
|
'title' => 'Podkastoù',
|
|
'not_found' => 'Podkast embannet ebet',
|
|
'last_published' => 'Embannet da ziwezhañ d\'an/ar {lastPublicationDate}',
|
|
],
|
|
'episodes' => [
|
|
'title' => 'Rannoù',
|
|
'not_found' => 'Rann embannet ebet',
|
|
'last_published' => 'Embannet da ziwezhañ d\'an/ar {lastPublicationDate}',
|
|
],
|
|
'storage' => [
|
|
'title' => 'Stokañ',
|
|
'subtitle' => '{totalUploaded} war {totalStorage}',
|
|
],
|
|
];
|