2022-01-03 13:52:07 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
/**
|
2022-02-19 16:06:11 +00:00
|
|
|
* @copyright 2021 Ad Aures
|
2022-01-03 13:52:07 +00:00
|
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
|
|
* @link https://castopod.org/
|
|
|
|
*/
|
|
|
|
|
|
|
|
return [
|
|
|
|
'list' => [
|
|
|
|
'title' => 'Soundbites',
|
|
|
|
'soundbite' => 'Soundbite',
|
|
|
|
],
|
2022-01-05 14:58:53 +00:00
|
|
|
'messages' => [
|
|
|
|
'createSuccess' => 'Soundbite has been successfully created!',
|
|
|
|
'deleteSuccess' => 'Soundbite has been successfully removed!',
|
|
|
|
],
|
2022-01-03 13:52:07 +00:00
|
|
|
'form' => [
|
|
|
|
'title' => 'New soundbite',
|
|
|
|
'soundbite_title' => 'Soundbite title',
|
|
|
|
'start_time' => 'Start at',
|
|
|
|
'duration' => 'Duration',
|
|
|
|
'submit' => 'Create soundbite',
|
|
|
|
],
|
|
|
|
'play' => 'Play soundbite',
|
|
|
|
'stop' => 'Stop soundbite',
|
|
|
|
'create' => 'New soundbite',
|
|
|
|
'delete' => 'Delete soundbite',
|
|
|
|
];
|