1 | 1 | simandl | <?php |
2 | | | |
3 | | | // WebSVN - Subversion repository viewing via the web using PHP |
4 | | | // Copyright (C) 2004 Erik Le Blanc |
5 | | | // |
6 | | | // This program is free software; you can redistribute it and/or modify |
7 | | | // it under the terms of the GNU General Public License as published by |
8 | | | // the Free Software Foundation; either version 2 of the License, or |
9 | | | // (at your option) any later version. |
10 | | | // |
11 | | | // This program is distributed in the hope that it will be useful, |
12 | | | // but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | | | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 | | | // GNU General Public License for more details. |
15 | | | // |
16 | | | // You should have received a copy of the GNU General Public License |
17 | | | // along with this program; if not, write to the Free Software |
18 | | | // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
19 | | | // |
20 | | | // -- |
21 | 3 | simandl | // Translated by Yokav (mailme@yokav.info) |
22 | 1 | simandl | // |
23 | | | // french.php |
24 | | | // |
25 | | | // French language strings |
26 | | | |
27 | | | // The language name is displayed in the drop down box. It MUST be encoded as Unicode (no HTML entities). |
28 | | | $lang["LANGUAGENAME"] = "Francais"; |
29 | 3 | simandl | // This is the RFC 2616 (§3.10) language tag that corresponds to this translation |
30 | | | // see also RFC 4646 |
31 | 1 | simandl | $lang['LANGUAGETAG'] = 'fr'; |
32 | | | |
33 | 3 | simandl | $lang["LOG"] = "Journal"; |
34 | | | $lang["DIFF"] = "Diffé."; |
35 | 1 | simandl | |
36 | 3 | simandl | $lang["NOREP"] = "Pas de dépôt fourni"; |
37 | | | $lang["NOPATH"] = "Répertoire non trouvé"; |
38 | | | $lang["NOACCESS"] = "Vous n'avez pas la permission nécessaire pour accéder à ce répertoire"; |
39 | | | $lang["RESTRICTED"] = "Accès restreint"; |
40 | | | $lang["SUPPLYREP"] = "Veuillez indiquer le répertoire d'un dépôt dans le fichier include/config.php en utilisant \$config->parentPath ou \$config->addRepository<p>Lire le guide d'installation pour plus de détails"; |
41 | 1 | simandl | |
42 | | | $lang["DIFFREVS"] = "Différences entre les révisions"; |
43 | | | $lang["AND"] = "et"; |
44 | | | $lang["REV"] = "Révision"; |
45 | | | $lang["LINE"] = "Ligne"; |
46 | | | $lang["SHOWENTIREFILE"] = "Afficher tout le fichier"; |
47 | | | $lang["SHOWCOMPACT"] = "Afficher seulement les passages avec des différences"; |
48 | | | |
49 | 3 | simandl | $lang["LISTING"] = "Arborescence"; |
50 | 1 | simandl | $lang["FILEDETAIL"] = "Détails"; |
51 | 3 | simandl | $lang["DIFFPREV"] = "Différence avec la précédente"; |
52 | 1 | simandl | $lang["BLAME"] = "Responsabilité"; |
53 | | | |
54 | | | $lang["REVINFO"] = "Information sur la Révision"; |
55 | 3 | simandl | $lang["GOYOUNGEST"] = "Aller à la révision la plus récente"; |
56 | 1 | simandl | $lang["LASTMOD"] = "Dernière modification"; |
57 | 3 | simandl | $lang["LOGMSG"] = "Message du journal"; |
58 | 1 | simandl | $lang["CHANGES"] = "Changements"; |
59 | | | $lang["SHOWCHANGED"] = "Montrer les fichiers modifiés"; |
60 | | | $lang["HIDECHANGED"] = "Cacher les fichiers modifiés"; |
61 | | | $lang["NEWFILES"] = "Nouveaux fichiers"; |
62 | 3 | simandl | $lang["CHANGEDFILES"] = "Fichiers modifiés"; |
63 | | | $lang["DELETEDFILES"] = "Fichiers supprimés"; |
64 | | | $lang["VIEWLOG"] = "Afficher le Journal"; |
65 | 1 | simandl | $lang["PATH"] = "Chemin"; |
66 | | | $lang["AUTHOR"] = "Auteur"; |
67 | | | $lang["AGE"] = "Ancienneté"; |
68 | 3 | simandl | $lang["LOG"] = "Journal"; |
69 | 1 | simandl | $lang["CURDIR"] = "Répertoire courant"; |
70 | 3 | simandl | $lang["TARBALL"] = "Tarball"; |
71 | 1 | simandl | |
72 | | | $lang["PREV"] = "Précédent"; |
73 | | | $lang["NEXT"] = "Suivant"; |
74 | | | $lang["SHOWALL"] = "Tout montrer"; |
75 | | | |
76 | | | $lang["BADCMD"] = "Cette commande a provoqué une erreur"; |
77 | 3 | simandl | $lang["UNKNOWNREVISION"] = "Révision non trouvée"; |
78 | 1 | simandl | |
79 | 3 | simandl | $lang["POWERED"] = "Propulsé par <a href=\"http://www.websvn.info/\">WebSVN</a>"; |
80 | | | $lang["PROJECTS"] = "Dépôts Subversion"; |
81 | 1 | simandl | $lang["SERVER"] = "Serveur Subversion"; |
82 | | | |
83 | 3 | simandl | $lang["FILTER"] = "Options de recherche"; |
84 | | | $lang["STARTLOG"] = "De la rév."; |
85 | | | $lang["ENDLOG"] = "A la rév."; |
86 | | | $lang["MAXLOG"] = "Max révs."; |
87 | | | $lang["SEARCHLOG"] = "Rechercher dans le journal"; |
88 | 1 | simandl | $lang["CLEARLOG"] = "Effacer la recherche courante"; |
89 | | | $lang["MORERESULTS"] = "Trouver plus de réponses..."; |
90 | 3 | simandl | $lang["NORESULTS"] = "Il n'y a pas de réponse à votre recherche dans le journal"; |
91 | 1 | simandl | $lang["NOMORERESULTS"] = "Il n'y a pas plus de réponses à votre recherche"; |
92 | 3 | simandl | $lang["NOPREVREV"] = "Pas de révision antérieur"; |
93 | 1 | simandl | |
94 | 3 | simandl | $lang["RSSFEEDTITLE"] = "Flux RSS de WebSVN"; |
95 | 1 | simandl | $lang["FILESMODIFIED"] = "fichier(s) modifié(s)"; |
96 | 3 | simandl | $lang["RSSFEED"] = "Flux RSS"; |
97 | 1 | simandl | |
98 | 3 | simandl | $lang["LINENO"] = "Ligne"; |
99 | 1 | simandl | $lang["BLAMEFOR"] = "Dernier responsable"; |
100 | | | |
101 | 3 | simandl | $lang["DAYLETTER"] = "j"; |
102 | | | $lang["HOURLETTER"] = "h"; |
103 | | | $lang["MINUTELETTER"] = "m"; |
104 | | | $lang["SECONDLETTER"] = "s"; |
105 | 1 | simandl | |
106 | | | $lang["GO"] = "Go"; |
107 | | | |
108 | 3 | simandl | $lang["PATHCOMPARISON"] = "Comparaison de dossiers"; |
109 | | | $lang["COMPAREPATHS"] = "Comparer les dossiers"; |
110 | | | $lang["COMPAREREVS"] = "Comparer les révisions"; |
111 | | | $lang["PROPCHANGES"] = "Changements de propriété :"; |
112 | | | $lang["CONVFROM"] = "Cette comparaison affiche les changements nécessaires pour convertir le dossier "; |
113 | | | $lang["TO"] = "EN"; |
114 | | | $lang["REVCOMP"] = "Comparaison inverse"; |
115 | | | $lang["COMPPATH"] = "Comparer le dossier :"; |
116 | | | $lang["WITHPATH"] = "Au dossier :"; |
117 | | | $lang["FILEDELETED"] = "Fichier supprimé"; |
118 | | | $lang["FILEADDED"] = "Nouveau fichier"; |
119 | | | |
120 | | | // The following are defined by some languages to stop unwanted line splitting |
121 | | | // in the template files. |
122 | | | |
123 | | | $lang["NOBR"] = ""; |
124 | | | $lang["ENDNOBR"] = ""; |
125 | | | |
126 | | | // $lang["NOBR"] = "<nobr>"; |
127 | | | // $lang["ENDNOBR"] = "</nobr>"; |