2022-03-29 15:33:32 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @copyright 2021 Ad Aures
|
|
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
|
|
* @link https://castopod.org/
|
|
|
|
*/
|
|
|
|
|
|
|
|
return [
|
|
|
|
'list' => [
|
2023-03-16 16:45:41 +00:00
|
|
|
'title' => 'Soundbites',
|
|
|
|
'soundbite' => 'Soundbite',
|
2022-03-29 15:33:32 +00:00
|
|
|
],
|
|
|
|
'messages' => [
|
2023-03-16 16:45:41 +00:00
|
|
|
'createSuccess' => 'Soundbite wurde erfolgreich erstellt!',
|
|
|
|
'deleteSuccess' => 'Soundbite wurde erfolgreich entfernt!',
|
2022-03-29 15:33:32 +00:00
|
|
|
],
|
|
|
|
'form' => [
|
2023-03-16 16:45:41 +00:00
|
|
|
'title' => 'Neues Soundbite',
|
|
|
|
'soundbite_title' => 'Soundbite-Titel',
|
2022-04-05 15:45:54 +00:00
|
|
|
'start_time' => 'Beginne bei',
|
|
|
|
'duration' => 'Länge',
|
2023-03-16 16:45:41 +00:00
|
|
|
'submit' => 'Soundbite erstellen',
|
2022-03-29 15:33:32 +00:00
|
|
|
],
|
2023-03-16 16:45:41 +00:00
|
|
|
'play' => 'Soundbite abspielen',
|
2022-04-05 15:45:54 +00:00
|
|
|
'stop' => 'Tonschnipsel stoppen',
|
2023-03-16 16:45:41 +00:00
|
|
|
'create' => 'Neues Soundbite',
|
|
|
|
'delete' => 'Soundbite löschen',
|
2022-03-29 15:33:32 +00:00
|
|
|
];
|