2023-05-05 14:28:51 +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 [
|
2023-08-28 14:13:45 +00:00
|
|
|
'all_podcasts' => 'Alle podcasts',
|
|
|
|
'sort_by' => 'Sortér efter',
|
2023-05-05 14:28:51 +00:00
|
|
|
'sort_options' => [
|
2023-08-28 14:13:45 +00:00
|
|
|
'activity' => 'Nylig aktivitet',
|
|
|
|
'created_desc' => 'Nyeste først',
|
|
|
|
'created_asc' => 'Ældste først',
|
2023-05-05 14:28:51 +00:00
|
|
|
],
|
2023-08-28 14:13:45 +00:00
|
|
|
'no_podcast' => 'Ingen podcasts fundet',
|
2023-05-05 14:28:51 +00:00
|
|
|
];
|