mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00

- add About podcast page - use different layout for episode pages - improve on user feedback with design - restructure app theme folders - update js packages to latest versions
38 lines
950 B
PHP
38 lines
950 B
PHP
<?php
|
||
|
||
declare(strict_types=1);
|
||
|
||
/**
|
||
* @copyright 2020 Podlibre
|
||
* @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',
|
||
'more' => 'Plus',
|
||
'no_data' => 'Aucune donnée trouvée !',
|
||
'close' => 'Fermer',
|
||
'edit' => 'Modifier',
|
||
'copy' => 'Copier',
|
||
'copied' => 'Copié !',
|
||
'home' => 'Accueil',
|
||
'explicit' => 'Explicite',
|
||
'mediumDate' => '{0,date,medium}',
|
||
'powered_by' => 'Propulsé par {castopod}',
|
||
'actions' => 'Actions',
|
||
'pageInfo' => 'Page {currentPage} sur {pageCount}',
|
||
'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',
|
||
];
|