2021-08-23 11:05:16 +00:00
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
/**
|
2022-02-19 16:06:11 +00:00
|
|
|
|
* @copyright 2020 Ad Aures
|
2021-08-23 11:05:16 +00:00
|
|
|
|
* @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',
|
2021-10-13 15:43:40 +00:00
|
|
|
|
'powered_by' => 'Propulsé par {castopod}',
|
2021-08-23 11:05:16 +00:00
|
|
|
|
'actions' => 'Actions',
|
|
|
|
|
'pageInfo' => 'Page {currentPage} sur {pageCount}',
|
|
|
|
|
'go_back' => 'Retour en arrière',
|
|
|
|
|
'forms' => [
|
|
|
|
|
'editor' => [
|
|
|
|
|
'write' => 'Écrire',
|
|
|
|
|
'preview' => 'Aperçu',
|
|
|
|
|
'help' => 'Propulsé par markdown',
|
|
|
|
|
],
|
|
|
|
|
'multiSelect' => [
|
|
|
|
|
'selectText' => 'Cliquez pour selectionner',
|
2022-03-04 17:52:52 +00:00
|
|
|
|
'loadingText' => 'Chargement…',
|
2021-08-23 11:05:16 +00:00
|
|
|
|
'noResultsText' => 'Aucun résultat trouvé',
|
|
|
|
|
'noChoicesText' => 'Aucune sélection possible',
|
|
|
|
|
'maxItemText' => 'Impossible de rajouter un élément',
|
|
|
|
|
],
|
|
|
|
|
'upload_file' => 'Téléversez un fichier',
|
|
|
|
|
'remote_url' => 'URL distante',
|
2023-11-29 17:27:10 +00:00
|
|
|
|
'save' => 'Save',
|
2021-08-23 11:05:16 +00:00
|
|
|
|
],
|
|
|
|
|
'play_episode_button' => [
|
|
|
|
|
'play' => 'Lire',
|
|
|
|
|
'playing' => 'En cours',
|
|
|
|
|
],
|
2022-01-09 16:37:13 +00:00
|
|
|
|
'size_limit' => 'Taille maximale : {0}.',
|
2022-11-17 14:42:46 +00:00
|
|
|
|
'choose_interact' => 'Choisissez comment interagir',
|
|
|
|
|
'view' => 'Voir',
|
2021-08-23 11:05:16 +00:00
|
|
|
|
];
|