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