2020-09-04 09:09:26 +00:00
|
|
|
<?php
|
|
|
|
|
2021-06-08 09:52:11 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2020-09-04 09:09:26 +00:00
|
|
|
/**
|
2022-02-19 16:06:11 +00:00
|
|
|
* @copyright 2020 Ad Aures
|
2020-09-04 09:09:26 +00:00
|
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
|
|
* @link https://castopod.org/
|
|
|
|
*/
|
|
|
|
|
|
|
|
return [
|
2020-10-02 15:38:16 +00:00
|
|
|
'yes' => 'Yes',
|
|
|
|
'no' => 'No',
|
2021-04-02 17:20:02 +00:00
|
|
|
'cancel' => 'Cancel',
|
2020-10-02 15:38:16 +00:00
|
|
|
'optional' => 'Optional',
|
2021-04-02 17:20:02 +00:00
|
|
|
'close' => 'Close',
|
2020-09-04 09:09:26 +00:00
|
|
|
'home' => 'Home',
|
|
|
|
'explicit' => 'Explicit',
|
2021-10-13 15:43:40 +00:00
|
|
|
'powered_by' => 'Powered by {castopod}',
|
2021-04-02 17:20:02 +00:00
|
|
|
'go_back' => 'Go back',
|
2021-08-09 10:28:16 +00:00
|
|
|
'play_episode_button' => [
|
|
|
|
'play' => 'Play',
|
|
|
|
'playing' => 'Playing',
|
|
|
|
],
|
2021-10-13 15:43:40 +00:00
|
|
|
'read_more' => 'Read more',
|
|
|
|
'read_less' => 'Read less',
|
|
|
|
'see_more' => 'See more',
|
|
|
|
'see_less' => 'See less',
|
2022-07-07 10:08:04 +00:00
|
|
|
'legal_notice' => 'Legal notice',
|
2020-09-04 09:09:26 +00:00
|
|
|
];
|