2022-04-05 15:45:54 +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-08-22 15:56:51 +00:00
|
|
|
'home' => 'Admin dashboard',
|
|
|
|
'welcome_message' => 'Welcome to the admin area!',
|
2022-07-14 09:03:44 +00:00
|
|
|
'podcasts' => [
|
2022-09-23 15:51:26 +00:00
|
|
|
'title' => 'البودكاستات',
|
2022-07-14 09:03:44 +00:00
|
|
|
'not_found' => 'No published podcast',
|
|
|
|
'last_published' => 'Last published on {lastPublicationDate}',
|
|
|
|
],
|
|
|
|
'episodes' => [
|
2022-09-23 15:51:26 +00:00
|
|
|
'title' => 'الحلقات',
|
|
|
|
'not_found' => 'لا توجد حلقة منشورة',
|
2022-07-14 09:03:44 +00:00
|
|
|
'last_published' => 'Last published on {lastPublicationDate}',
|
|
|
|
],
|
|
|
|
'storage' => [
|
2022-09-23 15:51:26 +00:00
|
|
|
'title' => 'تخزين',
|
|
|
|
'subtitle' => '{totalUploaded} من أصل {totalStorage}',
|
2022-07-14 09:03:44 +00:00
|
|
|
],
|
2022-04-05 15:45:54 +00:00
|
|
|
];
|