mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 13:01:19 +00:00
53 lines
1.5 KiB
PHP
53 lines
1.5 KiB
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',
|
||
'more' => 'Plus',
|
||
'no_data' => 'Aucune donnée trouvée !',
|
||
'close' => 'Fermer',
|
||
'edit' => 'Modifier',
|
||
'copy' => 'Copier',
|
||
'copied' => 'Copié !',
|
||
'home' => 'Accueil',
|
||
'explicit' => 'Explicite',
|
||
'powered_by' => 'Propulsé par {castopod}',
|
||
'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',
|
||
'loadingText' => 'Chargement…',
|
||
'noResultsText' => 'Aucun résultat trouvé',
|
||
'noChoicesText' => 'Aucune sélection possible',
|
||
'maxItemText' => 'Impossible de rajouter un élément',
|
||
],
|
||
'upload_file' => 'Téléverser un fichier',
|
||
'remote_url' => 'URL distante',
|
||
'save' => 'Save',
|
||
],
|
||
'play_episode_button' => [
|
||
'play' => 'Lire',
|
||
'playing' => 'En cours',
|
||
],
|
||
'size_limit' => 'Taille maximale : {0}.',
|
||
'choose_interact' => 'Choisissez le mode d\'interaction',
|
||
'view' => 'Voir',
|
||
];
|