You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.3 KiB
87 lines
2.3 KiB
4 months ago
|
// ** I18N
|
||
|
Calendar._DN = new Array
|
||
|
("Dimanche",
|
||
|
"Lundi",
|
||
|
"Mardi",
|
||
|
"Mercredi",
|
||
|
"Jeudi",
|
||
|
"Vendredi",
|
||
|
"Samedi",
|
||
|
"Dimanche");
|
||
|
Calendar._MN = new Array
|
||
|
("Janvier",
|
||
|
"F�vrier",
|
||
|
"Mars",
|
||
|
"Avril",
|
||
|
"Mai",
|
||
|
"Juin",
|
||
|
"Juillet",
|
||
|
"Ao�t",
|
||
|
"Septembre",
|
||
|
"Octobre",
|
||
|
"Novembre",
|
||
|
"D�cembre");
|
||
|
Calendar._SDN = new Array
|
||
|
("Lun",
|
||
|
"Mar",
|
||
|
"Mer",
|
||
|
"Jeu",
|
||
|
"Thu",
|
||
|
"Ven",
|
||
|
"Sam",
|
||
|
"Dim");
|
||
|
Calendar._SMN = new Array
|
||
|
("Jan",
|
||
|
"Fev",
|
||
|
"Mar",
|
||
|
"Avr",
|
||
|
"Mai",
|
||
|
"Juin",
|
||
|
"Juil",
|
||
|
"Aout",
|
||
|
"Sep",
|
||
|
"Oct",
|
||
|
"Nov",
|
||
|
"Dec");
|
||
|
|
||
|
// tooltips
|
||
|
Calendar._TT = {};
|
||
|
|
||
|
Calendar._TT["INFO"] = "A propos du calendrier";
|
||
|
|
||
|
Calendar._TT["ABOUT"] =
|
||
|
"DHTML Date/Heure Selecteur\n" +
|
||
|
"(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
|
||
|
"Pour la derniere version visitez: http://dynarch.com/mishoo/calendar.epl\n" +
|
||
|
"Distribu� par GNU LGPL. Voir http://gnu.org/licenses/lgpl.html pour les details." +
|
||
|
"\n\n" +
|
||
|
"Selection de la date :\n" +
|
||
|
"- Utiliser les bouttons \xab, \xbb pour selectionner l\'annee\n" +
|
||
|
"- Utiliser les bouttons " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " pour selectionner les mois\n" +
|
||
|
"- Garder la souris sur n'importe quels boutons pour un selection plus rapide";
|
||
|
Calendar._TT["ABOUT_TIME"] = "\n\n" +
|
||
|
"Selection de l\'heure:\n" +
|
||
|
"- Cliquer sur heures ou minutes pour incrementer\n" +
|
||
|
"- ou Maj-clic pour decrementer\n" +
|
||
|
"- ou clic et glisser deplacer pour un selection plus rapide";
|
||
|
|
||
|
Calendar._TT["TOGGLE"] = "Changer le premier jour de la semaine";
|
||
|
Calendar._TT["PREV_YEAR"] = "Ann�e pr�c. (maintenir pour menu)";
|
||
|
Calendar._TT["PREV_MONTH"] = "Mois pr�c. (maintenir pour menu)";
|
||
|
Calendar._TT["GO_TODAY"] = "Atteindre date du jour";
|
||
|
Calendar._TT["NEXT_MONTH"] = "Mois suiv. (maintenir pour menu)";
|
||
|
Calendar._TT["NEXT_YEAR"] = "Ann�e suiv. (maintenir pour menu)";
|
||
|
Calendar._TT["SEL_DATE"] = "Choisir une date";
|
||
|
Calendar._TT["DRAG_TO_MOVE"] = "D�placer";
|
||
|
Calendar._TT["PART_TODAY"] = " (Aujourd'hui)";
|
||
|
Calendar._TT["MON_FIRST"] = "Commencer par lundi";
|
||
|
Calendar._TT["SUN_FIRST"] = "Commencer par dimanche";
|
||
|
Calendar._TT["CLOSE"] = "Fermer";
|
||
|
Calendar._TT["TODAY"] = "Aujourd'hui";
|
||
|
|
||
|
// date formats
|
||
|
Calendar._TT["DEF_DATE_FORMAT"] = "%d-%m-%y";
|
||
|
Calendar._TT["TT_DATE_FORMAT"] = " %A %e %B %Y";
|
||
|
|
||
|
Calendar._TT["WK"] = "sem";
|