10ebbba20SSchplurtz le Déboulonné<?php 20ebbba20SSchplurtz le Déboulonné 30ebbba20SSchplurtz le Déboulonné/** 40ebbba20SSchplurtz le Déboulonné * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 50ebbba20SSchplurtz le Déboulonné * 6*ec35f6f7SSchplurtz le Déboulonné * @author Schplurtz le Déboulonné <Schplurtz@laposte.net> 7dfbac901SSchplurtz le Déboulonné * @author Damien Regad <dregad@mantisbt.org> 8443fd3edSYves Grandvalet * @author Yves Grandvalet <Yves.Grandvalet@laposte.net> 9ceaabc3eSCarbain Frédéric * @author Carbain Frédéric <fcarbain@yahoo.fr> 10eba74aedSNicolas Friedli * @author Nicolas Friedli <nicolas@theologique.ch> 110ebbba20SSchplurtz le Déboulonné */ 123d03c349SSchplurtz le Déboulonné$lang['menu'] = 'Gestionnaire d\'extensions'; 130ebbba20SSchplurtz le Déboulonné$lang['tab_plugins'] = 'Greffons installés'; 14f35c7bebSSchplurtz le Déboulonné$lang['tab_templates'] = 'Thèmes installés'; 150ebbba20SSchplurtz le Déboulonné$lang['tab_search'] = 'Rechercher et installer'; 160ebbba20SSchplurtz le Déboulonné$lang['tab_install'] = 'Installation manuelle'; 170ebbba20SSchplurtz le Déboulonné$lang['notimplemented'] = 'Cette fonctionnalité n\'est pas encore installée'; 180ebbba20SSchplurtz le Déboulonné$lang['notinstalled'] = 'Cette extension n\'est pas installée'; 190ebbba20SSchplurtz le Déboulonné$lang['alreadyenabled'] = 'Cette extension a déjà été installée'; 200ebbba20SSchplurtz le Déboulonné$lang['alreadydisabled'] = 'Cette extension a déjà été désactivée'; 210ebbba20SSchplurtz le Déboulonné$lang['pluginlistsaveerror'] = 'Une erreur s\'est produite lors de l\'enregistrement de la liste des greffons.'; 220ebbba20SSchplurtz le Déboulonné$lang['unknownauthor'] = 'Auteur inconnu'; 230ebbba20SSchplurtz le Déboulonné$lang['unknownversion'] = 'Version inconnue'; 240ebbba20SSchplurtz le Déboulonné$lang['btn_info'] = 'Montrer plus d\'informations'; 250ebbba20SSchplurtz le Déboulonné$lang['btn_update'] = 'Mettre à jour'; 260ebbba20SSchplurtz le Déboulonné$lang['btn_uninstall'] = 'Désinstaller'; 270ebbba20SSchplurtz le Déboulonné$lang['btn_enable'] = 'Activer'; 280ebbba20SSchplurtz le Déboulonné$lang['btn_disable'] = 'Désactiver'; 290ebbba20SSchplurtz le Déboulonné$lang['btn_install'] = 'Installer'; 300ebbba20SSchplurtz le Déboulonné$lang['btn_reinstall'] = 'Réinstaller'; 310ebbba20SSchplurtz le Déboulonné$lang['js']['reallydel'] = 'Vraiment désinstaller cette extension'; 32ceaabc3eSCarbain Frédéric$lang['js']['display_viewoptions'] = 'Voir les options:'; 33eba74aedSNicolas Friedli$lang['js']['display_enabled'] = 'activé'; 34eba74aedSNicolas Friedli$lang['js']['display_disabled'] = 'désactivé'; 35ceaabc3eSCarbain Frédéric$lang['js']['display_updatable'] = 'Mise à jour possible'; 360ebbba20SSchplurtz le Déboulonné$lang['search_for'] = 'Rechercher l\'extension :'; 370ebbba20SSchplurtz le Déboulonné$lang['search'] = 'Chercher'; 380ebbba20SSchplurtz le Déboulonné$lang['extensionby'] = '<strong>%s</strong> de %s'; 390ebbba20SSchplurtz le Déboulonné$lang['screenshot'] = 'Aperçu de %s'; 400ebbba20SSchplurtz le Déboulonné$lang['popularity'] = 'Popularité : %s%%'; 413fc5af51SDamien Regad$lang['homepage_link'] = 'Documentation'; 4276f6b28eSOlivier Humbert$lang['bugs_features'] = 'Bogues'; 430ebbba20SSchplurtz le Déboulonné$lang['tags'] = 'Étiquettes :'; 440ebbba20SSchplurtz le Déboulonné$lang['author_hint'] = 'Chercher les extensions de cet auteur'; 450ebbba20SSchplurtz le Déboulonné$lang['installed'] = 'Installés :'; 46dfbac901SSchplurtz le Déboulonné$lang['downloadurl'] = 'Téléchargement :'; 4776f6b28eSOlivier Humbert$lang['repository'] = 'Dépôt : '; 480ebbba20SSchplurtz le Déboulonné$lang['unknown'] = '<em>inconnu</em>'; 490ebbba20SSchplurtz le Déboulonné$lang['installed_version'] = 'Version installée :'; 50dfbac901SSchplurtz le Déboulonné$lang['install_date'] = 'Dernière mise à jour :'; 510ebbba20SSchplurtz le Déboulonné$lang['available_version'] = 'Version disponible :'; 520ebbba20SSchplurtz le Déboulonné$lang['compatible'] = 'Compatible avec :'; 530ebbba20SSchplurtz le Déboulonné$lang['depends'] = 'Dépend de :'; 540ebbba20SSchplurtz le Déboulonné$lang['similar'] = 'Similaire à :'; 550ebbba20SSchplurtz le Déboulonné$lang['conflicts'] = 'En conflit avec :'; 560ebbba20SSchplurtz le Déboulonné$lang['donate'] = 'Vous aimez ?'; 570ebbba20SSchplurtz le Déboulonné$lang['donate_action'] = 'Payer un café à l\'auteur !'; 580ebbba20SSchplurtz le Déboulonné$lang['repo_retry'] = 'Réessayer'; 590ebbba20SSchplurtz le Déboulonné$lang['provides'] = 'Fournit :'; 600ebbba20SSchplurtz le Déboulonné$lang['status'] = 'État :'; 610ebbba20SSchplurtz le Déboulonné$lang['status_installed'] = 'installé'; 620ebbba20SSchplurtz le Déboulonné$lang['status_not_installed'] = 'non installé'; 630ebbba20SSchplurtz le Déboulonné$lang['status_protected'] = 'protégé'; 640ebbba20SSchplurtz le Déboulonné$lang['status_enabled'] = 'activé'; 650ebbba20SSchplurtz le Déboulonné$lang['status_disabled'] = 'désactivé'; 660ebbba20SSchplurtz le Déboulonné$lang['status_unmodifiable'] = 'non modifiable'; 670ebbba20SSchplurtz le Déboulonné$lang['status_plugin'] = 'greffon'; 68f35c7bebSSchplurtz le Déboulonné$lang['status_template'] = 'thème'; 690ebbba20SSchplurtz le Déboulonné$lang['status_bundled'] = 'fourni'; 700ebbba20SSchplurtz le Déboulonné$lang['msg_enabled'] = 'Greffon %s activé'; 710ebbba20SSchplurtz le Déboulonné$lang['msg_disabled'] = 'Greffon %s désactivé'; 723d03c349SSchplurtz le Déboulonné$lang['msg_delete_success'] = 'Extension %s désinstallée.'; 7376f6b28eSOlivier Humbert$lang['msg_delete_failed'] = 'Échec de la désinstallation de l\'extension %s'; 74bf43fe7bSYoven$lang['msg_template_install_success'] = 'Thème %s installé avec succès'; 75f35c7bebSSchplurtz le Déboulonné$lang['msg_template_update_success'] = 'Thème %s mis à jour avec succès'; 760ebbba20SSchplurtz le Déboulonné$lang['msg_plugin_install_success'] = 'Greffon %s installé avec succès'; 770ebbba20SSchplurtz le Déboulonné$lang['msg_plugin_update_success'] = 'Greffon %s mis à jour avec succès'; 780ebbba20SSchplurtz le Déboulonné$lang['msg_upload_failed'] = 'Téléversement échoué'; 79*ec35f6f7SSchplurtz le Déboulonné$lang['msg_nooverwrite'] = 'L\'extension %s existe déjà et ne sera pas remplacée. Pour la remplacer, cocher l\'option de remplacement d\'extension.'; 800ebbba20SSchplurtz le Déboulonné$lang['missing_dependency'] = '<strong>Dépendance absente ou désactivée :</strong> %s'; 810ebbba20SSchplurtz le Déboulonné$lang['security_issue'] = '<strong>Problème de sécurité :</strong> %s'; 8276f6b28eSOlivier Humbert$lang['security_warning'] = '<strong>Avertissement de sécurité :</strong> %s'; 8376f6b28eSOlivier Humbert$lang['update_available'] = '<strong>Mise à jour :</strong> la version %s est disponible.'; 8476f6b28eSOlivier Humbert$lang['wrong_folder'] = '<strong>Greffon installé incorrectement :</strong> renommer le dossier du greffon "%s" en "%s".'; 850ebbba20SSchplurtz le Déboulonné$lang['url_change'] = '<strong>URL modifié :</strong> L\'URL de téléchargement a changé depuis le dernier téléchargement. Vérifiez si l\'URL est valide avant de mettre à jour l\'extension.<br />Nouvel URL : %s<br />Ancien : %s'; 860ebbba20SSchplurtz le Déboulonné$lang['error_badurl'] = 'Les URL doivent commencer par http ou https'; 870ebbba20SSchplurtz le Déboulonné$lang['error_dircreate'] = 'Impossible de créer le dossier temporaire pour le téléchargement.'; 880ebbba20SSchplurtz le Déboulonné$lang['error_download'] = 'Impossible de télécharger le fichier : %s'; 890ebbba20SSchplurtz le Déboulonné$lang['error_decompress'] = 'Impossible de décompresser le fichier téléchargé. C\'est peut être le résultat d\'une erreur de téléchargement, auquel cas vous devriez réessayer. Le format de compression est peut-être inconnu. Dans ce cas il vous faudra procéder à une installation manuelle.'; 9076f6b28eSOlivier Humbert$lang['error_findfolder'] = 'Impossible d\'identifier le dossier de l\'extension. Vous devez procéder à une installation manuelle.'; 9176f6b28eSOlivier Humbert$lang['error_copy'] = 'Une erreur de copie de fichier s\'est produite lors de l\'installation des fichiers dans le dossier <em>%s</em>. Il se peut que le disque soit plein, ou que les permissions d\'accès aux fichiers soient incorrectes. Il est possible que le greffon soit partiellement installé et que cela laisse votre installation de DokuWiki instable.'; 920ebbba20SSchplurtz le Déboulonné$lang['noperms'] = 'Impossible d\'écrire dans le dossier des extensions.'; 93f35c7bebSSchplurtz le Déboulonné$lang['notplperms'] = 'Impossible d\'écrire dans le dossier des thèmes.'; 940ebbba20SSchplurtz le Déboulonné$lang['nopluginperms'] = 'Impossible d\'écrire dans le dossier des greffons.'; 950ebbba20SSchplurtz le Déboulonné$lang['git'] = 'Cette extension a été installé via git, vous voudrez peut-être ne pas la mettre à jour ici.'; 963d03c349SSchplurtz le Déboulonné$lang['auth'] = 'Votre configuration n\'utilise pas ce greffon d\'authentification. Vous devriez songer à le désactiver.'; 970ebbba20SSchplurtz le Déboulonné$lang['install_url'] = 'Installez depuis l\'URL :'; 980ebbba20SSchplurtz le Déboulonné$lang['install_upload'] = 'Téléversez l\'extension :'; 9976f6b28eSOlivier Humbert$lang['repo_error'] = 'Le dépôt d\'extensions est injoignable. Veuillez vous assurer que le server web est autorisé à contacter www.dokuwiki.org et vérifier les réglages de proxy.'; 1003d03c349SSchplurtz le Déboulonné$lang['nossl'] = 'Votre version de PHP semble ne pas prendre en charge SSL. Le téléchargement de nombreuses extensions va échouer.'; 101