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