2024-07-04 13:46:28 +00:00
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @copyright 2022 Ad Aures
|
|
|
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
|
|
|
* @link https://castopod.org/
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
return [
|
2024-08-27 10:09:29 +00:00
|
|
|
|
'installed' => 'Plugin installé',
|
|
|
|
|
'about' => 'À propos',
|
|
|
|
|
'website' => 'Site web',
|
|
|
|
|
'repository' => 'Dépôt du code',
|
|
|
|
|
'authors' => 'Auteurs',
|
|
|
|
|
'author_email' => 'Envoyer un email à {authorName}',
|
|
|
|
|
'author_homepage' => 'Page de {authorName}',
|
2024-07-04 13:46:28 +00:00
|
|
|
|
'declaredHooks' => 'Declared hooks',
|
2024-08-27 10:09:29 +00:00
|
|
|
|
'settings' => 'Paramètres',
|
2024-07-04 13:46:28 +00:00
|
|
|
|
'settingsTitle' => '{type, select,
|
2024-08-27 10:09:29 +00:00
|
|
|
|
podcast {{pluginTitle} Paramètres du podcast}
|
|
|
|
|
episode {{pluginTitle} Paramètres de l\'épisode}
|
|
|
|
|
other {{pluginTitle} Paramètres généraux}
|
2024-07-04 13:46:28 +00:00
|
|
|
|
}',
|
2024-08-27 10:09:29 +00:00
|
|
|
|
'view' => 'Voir',
|
|
|
|
|
'activate' => 'Activer',
|
|
|
|
|
'deactivate' => 'Désactiver',
|
|
|
|
|
'active' => 'Actif',
|
|
|
|
|
'inactive' => 'Inactif',
|
|
|
|
|
'invalid' => 'Invalide',
|
2024-07-05 16:49:21 +00:00
|
|
|
|
'incompatible' => 'Incompatible',
|
2024-08-27 10:09:29 +00:00
|
|
|
|
'incompatible_hint' => 'Le plugin nécessite Castopod v{minCastopodVersion} au minimum.',
|
|
|
|
|
'uninstall' => 'Désinstaller',
|
2024-07-04 13:46:28 +00:00
|
|
|
|
'keywords' => [
|
|
|
|
|
'podcasting20' => 'Podcasting 2.0',
|
2024-08-27 10:09:29 +00:00
|
|
|
|
'seo' => 'Optimisation pour les moteurs de recherche (SEO)',
|
|
|
|
|
'analytics' => 'Mesures d’audience',
|
|
|
|
|
'accessibility' => 'Accessibilité',
|
2024-07-04 13:46:28 +00:00
|
|
|
|
],
|
2024-08-27 10:09:29 +00:00
|
|
|
|
'noDescription' => 'Aucune description',
|
|
|
|
|
'noReadme' => 'Aucun fichier README trouvé.',
|
2024-07-04 13:46:28 +00:00
|
|
|
|
'messages' => [
|
2024-08-27 10:09:29 +00:00
|
|
|
|
'saveSettingsSuccess' => 'Les paramètres du plugin {pluginTitle} ont été enregistrés avec succès !',
|
2024-07-04 13:46:28 +00:00
|
|
|
|
],
|
|
|
|
|
'errors' => [
|
|
|
|
|
'manifestError' => 'Plugin manifest has errors',
|
|
|
|
|
'manifestMissing' => 'Plugin manifest "{manifestPath}" is missing.',
|
|
|
|
|
'manifestJsonInvalid' => 'Plugin manifest "{manifestPath}" is not a valid JSON.',
|
|
|
|
|
],
|
|
|
|
|
];
|