mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-22 16:51:20 +00:00
31 lines
715 B
PHP
31 lines
715 B
PHP
<?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 [
|
|
'yes' => 'Oui',
|
|
'no' => 'Non',
|
|
'cancel' => 'Annuler',
|
|
'optional' => 'Optionnel',
|
|
'close' => 'Fermer',
|
|
'home' => 'Accueil',
|
|
'explicit' => 'Explicite',
|
|
'powered_by' => 'Propulsé par {castopod}',
|
|
'go_back' => 'Retour en arrière',
|
|
'play_episode_button' => [
|
|
'play' => 'Lire',
|
|
'playing' => 'En cours',
|
|
],
|
|
'read_more' => 'Lire plus',
|
|
'read_less' => 'Lire moins',
|
|
'see_more' => 'Voir plus',
|
|
'see_less' => 'Voir moins',
|
|
'legal_notice' => 'Legal notice',
|
|
];
|