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' => 'Extraits sonores',
|
|
|
|
|
'soundbite' => 'Extrait sonore',
|
|
|
|
|
],
|
2022-01-05 14:58:53 +00:00
|
|
|
|
'messages' => [
|
|
|
|
|
'createSuccess' => 'L’extrait sonore a été créé avec succès !',
|
|
|
|
|
'deleteSuccess' => 'L’extrait sonore a bien été supprimé !',
|
|
|
|
|
],
|
2022-01-03 13:52:07 +00:00
|
|
|
|
'form' => [
|
2022-04-05 15:45:54 +00:00
|
|
|
|
'title' => 'Créer un extrait sonore',
|
2022-01-03 13:52:07 +00:00
|
|
|
|
'soundbite_title' => 'Titre de l’extrait',
|
|
|
|
|
'start_time' => 'Début à',
|
|
|
|
|
'duration' => 'Durée',
|
|
|
|
|
'submit' => 'Créer l’extrait sonore',
|
|
|
|
|
],
|
|
|
|
|
'play' => 'Lancer l’extrait sonore',
|
|
|
|
|
'stop' => 'Arrêter l’extrait sonore',
|
|
|
|
|
'create' => 'Nouvel extrait sonore',
|
|
|
|
|
'delete' => 'Supprimer l’extrait sonore',
|
|
|
|
|
];
|