]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/blog/jscalendar/lang/calendar-fr.js
Improve French translation
[SourceForge/phpwiki.git] / themes / blog / jscalendar / lang / calendar-fr.js
1 // ** I18N
2
3 // Calendar FR language
4 // Author: David Duret, <pilgrim@mala-template.net>
5 // Distributed under the same terms as the calendar itself.
6
7 // For translators: please use UTF-8 if possible.  We strongly believe that
8 // Unicode is the answer to a real internationalized world.  Also please
9 // include your contact information in the header, as can be seen above.
10
11 // full day names
12 Calendar._DN = new Array
13 ("Dimanche",
14  "Lundi",
15  "Mardi",
16  "Mercredi",
17  "Jeudi",
18  "Vendredi",
19  "Samedi",
20  "Dimanche");
21
22 // Please note that the following array of short day names (and the same goes
23 // for short month names, _SMN) isn't absolutely necessary.  We give it here
24 // for exemplification on how one can customize the short day names, but if
25 // they are simply the first N letters of the full name you can simply say:
26 //
27 //   Calendar._SDN_len = N; // short day name length
28 //   Calendar._SMN_len = N; // short month name length
29 //
30 // If N = 3 then this is not needed either since we assume a value of 3 if not
31 // present, to be compatible with translation files that were written before
32 // this feature.
33
34 // short day names
35 Calendar._SDN = new Array
36 ("Dim",
37  "Lun",
38  "Mar",
39  "Mar",
40  "Jeu",
41  "Ven",
42  "Sam",
43  "Dim");
44
45 // First day of the week. "0" means display Sunday first, "1" means display
46 // Monday first, etc.
47 Calendar._FD = 0;
48
49 // full month names
50 Calendar._MN = new Array
51 ("Janvier",
52  "Février",
53  "Mars",
54  "Avril",
55  "Mai",
56  "Juin",
57  "Juillet",
58  "Août",
59  "Septembre",
60  "Octobre",
61  "Novembre",
62  "Décembre");
63
64 // short month names
65 Calendar._SMN = new Array
66 ("Jan",
67  "Fev",
68  "Mar",
69  "Avr",
70  "Mai",
71  "Juin",
72  "Juil",
73  "Août",
74  "Sep",
75  "Oct",
76  "Nov",
77  "Dec");
78
79 // tooltips
80 Calendar._TT = {};
81 Calendar._TT["INFO"] = "A propos du calendrier";
82
83 Calendar._TT["ABOUT"] =
84 "DHTML Date/Heure Selecteur\n" +
85 "(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this ;-)
86 "Pour la dernière version visitez : http://www.dynarch.com/projects/calendar/\n" +
87 "Distribué par GNU LGPL.  Voir http://gnu.org/licenses/lgpl.html pour les détails." +
88 "\n\n" +
89 "Selection de la date :\n" +
90 "- Utiliser les boutons «, » pour sélectionner l\'année\n" +
91 "- Utiliser les boutons ‹, › pour selectionner les mois\n" +
92 "- Garder la souris sur n'importe quel bouton pour une sélection plus rapide.";
93 Calendar._TT["ABOUT_TIME"] = "\n\n" +
94 "Selection de l\'heure :\n" +
95 "- Cliquer sur heures ou minutes pour incrémenter\n" +
96 "- ou Maj-clic pour décrémenter\n" +
97 "- ou clic et glisser-déplacer pour une sélection plus rapide.";
98
99 Calendar._TT["PREV_YEAR"] = "Année préc. (maintenir pour menu)";
100 Calendar._TT["PREV_MONTH"] = "Mois préc. (maintenir pour menu)";
101 Calendar._TT["GO_TODAY"] = "Atteindre la date du jour";
102 Calendar._TT["NEXT_MONTH"] = "Mois suiv. (maintenir pour menu)";
103 Calendar._TT["NEXT_YEAR"] = "Année suiv. (maintenir pour menu)";
104 Calendar._TT["SEL_DATE"] = "Sélectionner une date";
105 Calendar._TT["DRAG_TO_MOVE"] = "Déplacer";
106 Calendar._TT["PART_TODAY"] = " (Aujourd'hui)";
107
108 // the following is to inform that "%s" is to be the first day of week
109 // %s will be replaced with the day name.
110 Calendar._TT["DAY_FIRST"] = "Afficher %s en premier";
111
112 // This may be locale-dependent.  It specifies the week-end days, as an array
113 // of comma-separated numbers.  The numbers are from 0 to 6: 0 means Sunday, 1
114 // means Monday, etc.
115 Calendar._TT["WEEKEND"] = "0,6";
116
117 Calendar._TT["CLOSE"] = "Fermer";
118 Calendar._TT["TODAY"] = "Aujourd'hui";
119 Calendar._TT["TIME_PART"] = "(Maj-)Clic ou glisser pour modifier la valeur";
120
121 // date formats
122 Calendar._TT["DEF_DATE_FORMAT"] = "%d/%m/%Y";
123 Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";
124
125 Calendar._TT["WK"] = "Sem.";
126 Calendar._TT["TIME"] = "Heure :";