1d47fa3c7SAndreas Haerter<?php 2d47fa3c7SAndreas Haerter 3d47fa3c7SAndreas Haerter/** 4d47fa3c7SAndreas Haerter * French language for the Config Manager 5d47fa3c7SAndreas Haerter * 6d47fa3c7SAndreas Haerter * If your language is not/only partially translated or you found an error/typo, 7d47fa3c7SAndreas Haerter * have a look at the following files: 8*e3217ae2SAndreas Haerter * - /lib/tpl/vector/lang/<your lang>/lang.php 9*e3217ae2SAndreas Haerter * - /lib/tpl/vector/lang/<your lang>/settings.php 10d47fa3c7SAndreas Haerter * If they are not existing, copy and translate the English ones (hint: looking 11099d81c1SAndreas Haerter * at <http://[your lang].wikipedia.org> might be helpful). 12099d81c1SAndreas Haerter * 13*e3217ae2SAndreas Haerter * Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>. 14*e3217ae2SAndreas Haerter * Thanks! :-D 15d47fa3c7SAndreas Haerter * 16d47fa3c7SAndreas Haerter * 17d47fa3c7SAndreas Haerter * LICENSE: This file is open source software (OSS) and may be copied under 18d47fa3c7SAndreas Haerter * certain conditions. See COPYING file for details or try to contact 19d47fa3c7SAndreas Haerter * the author(s) of this file in doubt. 20d47fa3c7SAndreas Haerter * 21d47fa3c7SAndreas Haerter * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 22d47fa3c7SAndreas Haerter * @author Julien Revault d'Allonnes <jrevault@gmail.com> 23*e3217ae2SAndreas Haerter * @link https://www.dokuwiki.org/template:vector 24*e3217ae2SAndreas Haerter * @link https://www.dokuwiki.org/config:lang 25*e3217ae2SAndreas Haerter * @link https://www.dokuwiki.org/devel:configuration 26d47fa3c7SAndreas Haerter */ 27d47fa3c7SAndreas Haerter 28d47fa3c7SAndreas Haerter 29d47fa3c7SAndreas Haerter//check if we are running within the DokuWiki environment 30d47fa3c7SAndreas Haerterif (!defined("DOKU_INC")){ 31d47fa3c7SAndreas Haerter die(); 32d47fa3c7SAndreas Haerter} 33d47fa3c7SAndreas Haerter 34d47fa3c7SAndreas Haerter//user pages 35d47fa3c7SAndreas Haerter$lang["vector_userpage"] = "Utiliser les pages utilisateurs ?"; 36d47fa3c7SAndreas Haerter$lang["vector_userpage_ns"] = "Si oui, utilisez ':namespace:' comme pages racines :"; 37d47fa3c7SAndreas Haerter 38d47fa3c7SAndreas Haerter//discussion pages 39d47fa3c7SAndreas Haerter$lang["vector_discuss"] = "Utiliser les onglets discussion ?"; 40d47fa3c7SAndreas Haerter$lang["vector_discuss_ns"] = "Si oui, utilisez':namespace:' comme pages racines :"; 41d47fa3c7SAndreas Haerter 42d47fa3c7SAndreas Haerter//site notice 43d47fa3c7SAndreas Haerter$lang["vector_sitenotice"] = "Afficher la notice du site ?"; 44d47fa3c7SAndreas Haerter$lang["vector_sitenotice_location"] = "Si oui, utilisez la page wiki suivante pour la notice :"; 45d47fa3c7SAndreas Haerter 46d47fa3c7SAndreas Haerter//navigation 47d47fa3c7SAndreas Haerter$lang["vector_navigation"] = "Afficher la navigation ?"; 48d47fa3c7SAndreas Haerter$lang["vector_navigation_location"] = "Si oui, utilisez la page wiki suivante pour la navigation :"; 49d47fa3c7SAndreas Haerter 50d47fa3c7SAndreas Haerter//exportbox ("print/export") 51d47fa3c7SAndreas Haerter$lang["vector_exportbox"] = "Afficher la boite 'imprimer/exporter' ?"; 52d47fa3c7SAndreas Haerter$lang["vector_exportbox_default"] = "Si oui, utilisez la boite 'imprimer/exporter' par default ?"; 53d47fa3c7SAndreas Haerter$lang["vector_exportbox_location"] = "Si non, utilisez la page wiki suivante :"; 54d47fa3c7SAndreas Haerter 55d47fa3c7SAndreas Haerter//toolbox 56e4280d08SMyeongjin$lang["vector_toolbox"] = "Afficher la outils ?"; 57e4280d08SMyeongjin$lang["vector_toolbox_default"] = "Si oui, utilisez la outils par default ?"; 58d47fa3c7SAndreas Haerter$lang["vector_toolbox_location"] = "Si non, utilisez la page wiki suivante :"; 59d47fa3c7SAndreas Haerter 60d47fa3c7SAndreas Haerter//custom copyright notice 61d47fa3c7SAndreas Haerter$lang["vector_copyright"] = "Afficher le copyright en pied de page?"; 62d47fa3c7SAndreas Haerter$lang["vector_copyright_default"] = "Si oui, utilisez la notice de copyright par default ?"; 63d47fa3c7SAndreas Haerter$lang["vector_copyright_location"] = "Si non, utilisez la page wiki suivante :"; 64d47fa3c7SAndreas Haerter 65d47fa3c7SAndreas Haerter//donation link/button 66d47fa3c7SAndreas Haerter$lang["vector_donate"] = "Afficher le lien de dons ?"; 67d47fa3c7SAndreas Haerter$lang["vector_donate_url"] = "Si non, utilisez l'URL suivante our les donations :"; 68d47fa3c7SAndreas Haerter 69d47fa3c7SAndreas Haerter//TOC 70d47fa3c7SAndreas Haerter$lang["vector_toc_position"] = "Sommaire position"; 71d47fa3c7SAndreas Haerter 72d47fa3c7SAndreas Haerter//other stuff 73d47fa3c7SAndreas Haerter$lang["vector_breadcrumbs_position"] = "Position du fil d'ariane (si actif) :"; 74d47fa3c7SAndreas Haerter$lang["vector_youarehere_position"] = "Position du 'Vous êtes ici' (si actif) :"; 75d47fa3c7SAndreas Haerter$lang["vector_cite_author"] = "Nom de l'auteur dans 'Citer cet article' :"; 76d47fa3c7SAndreas Haerter$lang["vector_loaduserjs"] = "Charger 'vector/user/user.js' ?"; 77d47fa3c7SAndreas Haerter$lang["vector_closedwiki"] = "Wiki fermé (la plupart des liens/onglets/boites sont masquée sans connexion) ?"; 78d47fa3c7SAndreas Haerter 79