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 | | | // |
22 | | | // french.php |
23 | | | // |
24 | | | // French language strings |
25 | | | |
26 | | | // The language name is displayed in the drop down box. It MUST be encoded as Unicode (no HTML entities). |
27 | | | $lang["LANGUAGENAME"] = "Francais"; |
28 | | | $lang['LANGUAGETAG'] = 'fr'; |
29 | | | |
30 | | | $lang["LOG"] = "Log"; |
31 | | | $lang["DIFF"] = "Diff"; |
32 | | | |
33 | | | $lang["NOREP"] = "Pas de repository"; |
34 | | | $lang["NOPATH"] = "Fichier ou répertoire non trouvé"; |
35 | | | |
36 | | | $lang["DIFFREVS"] = "Différences entre les révisions"; |
37 | | | $lang["AND"] = "et"; |
38 | | | $lang["REV"] = "Révision"; |
39 | | | $lang["LINE"] = "Ligne"; |
40 | | | $lang["SHOWENTIREFILE"] = "Afficher tout le fichier"; |
41 | | | $lang["SHOWCOMPACT"] = "Afficher seulement les passages avec des différences"; |
42 | | | |
43 | | | $lang["FILEDETAIL"] = "Détails"; |
44 | | | $lang["DIFFPREV"] = "Différence avec le précédent"; |
45 | | | $lang["BLAME"] = "Responsabilité"; |
46 | | | |
47 | | | $lang["REVINFO"] = "Information sur la Révision"; |
48 | | | $lang["GOYOUNGEST"] = "Aller à la Révision la plus récente"; |
49 | | | $lang["LASTMOD"] = "Dernière modification"; |
50 | | | $lang["LOGMSG"] = "Message de Log"; |
51 | | | $lang["CHANGES"] = "Changements"; |
52 | | | $lang["SHOWCHANGED"] = "Montrer les fichiers modifiés"; |
53 | | | $lang["HIDECHANGED"] = "Cacher les fichiers modifiés"; |
54 | | | $lang["NEWFILES"] = "Nouveaux fichiers"; |
55 | | | $lang["CHANGEDFILES"] = "Fichier(s) modifié(s)"; |
56 | | | $lang["DELETEDFILES"] = "Fichier(s) effacé(s)"; |
57 | | | $lang["VIEWLOG"] = "Afficher le Log"; |
58 | | | $lang["PATH"] = "Chemin"; |
59 | | | $lang["AUTHOR"] = "Auteur"; |
60 | | | $lang["AGE"] = "Ancienneté"; |
61 | | | $lang["LOG"] = "Log"; |
62 | | | $lang["CURDIR"] = "Répertoire courant"; |
63 | | | |
64 | | | $lang["PREV"] = "Précédent"; |
65 | | | $lang["NEXT"] = "Suivant"; |
66 | | | $lang["SHOWALL"] = "Tout montrer"; |
67 | | | |
68 | | | $lang["BADCMD"] = "Cette commande a provoqué une erreur"; |
69 | | | |
70 | | | $lang["POWERED"] = "Powered by <a href=\"http://www.websvn.info/\">WebSVN</a>"; |
71 | | | $lang["PROJECTS"] = "Projets Subversion"; |
72 | | | $lang["SERVER"] = "Serveur Subversion"; |
73 | | | |
74 | | | $lang["SEARCHLOG"] = "Rechercher dans les Logs"; |
75 | | | $lang["CLEARLOG"] = "Effacer la recherche courante"; |
76 | | | $lang["MORERESULTS"] = "Trouver plus de réponses..."; |
77 | | | $lang["NORESULTS"] = "Il n'y a pas de réponse à votre recherche dans les Logs"; |
78 | | | $lang["NOMORERESULTS"] = "Il n'y a pas plus de réponses à votre recherche"; |
79 | | | |
80 | | | $lang["RSSFEEDTITLE"] = "Fil RSS de WebSVN"; |
81 | | | $lang["FILESMODIFIED"] = "fichier(s) modifié(s)"; |
82 | | | $lang["RSSFEED"] = "RSS"; |
83 | | | |
84 | | | $lang["LINENO"] = "Ligne numéro"; |
85 | | | $lang["BLAMEFOR"] = "Dernier responsable"; |
86 | | | |
87 | | | $lang["YEARS"] = "années"; |
88 | | | $lang["MONTHS"] = "mois"; |
89 | | | $lang["WEEKS"] = "semaines"; |
90 | | | $lang["DAYS"] = "jours"; |
91 | | | $lang["HOURS"] = "heures"; |
92 | | | $lang["MINUTES"] = "minutes"; |
93 | | | |
94 | | | $lang["GO"] = "Go"; |
95 | | | |