2020-08-04 11:25:22 +00:00
|
|
|
<?php
|
|
|
|
|
2021-06-08 09:52:11 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2020-07-10 12:20:25 +00:00
|
|
|
/**
|
2022-02-19 16:06:11 +00:00
|
|
|
* @copyright 2020 Ad Aures
|
2020-07-10 12:20:25 +00:00
|
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
|
|
* @link https://castopod.org/
|
|
|
|
*/
|
2020-06-05 13:54:40 +00:00
|
|
|
|
|
|
|
return [
|
2020-06-10 15:00:12 +00:00
|
|
|
'all_podcasts' => 'All podcasts',
|
2022-02-05 16:57:20 +00:00
|
|
|
'sort_by' => 'Sort by',
|
|
|
|
'sort_options' => [
|
|
|
|
'activity' => 'Recent activity',
|
|
|
|
'created_desc' => 'Newest first',
|
|
|
|
'created_asc' => 'Oldest first',
|
|
|
|
],
|
2020-06-10 15:00:12 +00:00
|
|
|
'no_podcast' => 'No podcast found',
|
|
|
|
];
|