﻿// $Id: calendar-fr.js 8787 2007-11-06 07:50:17Z mike $
// ** I18N

// Calendar FR language

Zapatec.Utils.createNestedHash(Zapatec, ["Langs", "Zapatec.Calendar", "fr"], {
  // full day names
  "_DN"  : new Array
("Dimanche",
 "Lundi",
 "Mardi",
 "Mercredi",
 "Jeudi",
 "Vendredi",
 "Samedi",
 "Dimanche"),
  // short day names
  "_SDN" : new Array
("Dim",
 "Lun",
 "Mar",
 "Mer",
 "Jeu",
 "Ven",
 "Sam",
 "Dim"),
  // First day of the week. "0" means display Sunday first, "1" means display
  // Monday first, etc.
  "_FD"  : 0,
  // full month names
  "_MN"  : new Array
("Janvier",
 "Février",
 "Mars",
 "Avril",
 "Mai",
 "Juin",
 "Juillet",
 "Août",
 "Septembre",
 "Octobre",
 "Novembre",
 "Décembre"),
  // short month names
  "_SMN" : new Array
("Jan",
 "Fev",
 "Mar",
 "Avr",
 "Mai",
 "Juin",
 "Juil",
 "Août",
 "Sep",
 "Oct",
 "Nov",
 "Dec"),
   // tooltips
   "INFO" : "A propos du calendrier",
   "ABOUT": "DHTML Date/Heure Selecteur\n" +
"(c) zapatec.com 2002-2007\n" + // don't translate this this ;-)
"Pour la derniere version visitez : http://www.zapatec.com\n" +
"This translation distributed under GNU LGPL.  See http://gnu.org/licenses/lgpl.html for 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 une selection plus rapide",
   "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 une selection plus rapide",

   "PREV_YEAR"    : "Année préc. (maintenir pour menu)",
   "PREV_MONTH"   : "Mois suiv. (maintenir pour menu)",
   "GO_TODAY"     : "Go Today (hold for history)",
   "NEXT_MONTH"   : "Next month (hold for menu)",
   "NEXT_YEAR"    : "Année suiv. (maintenir pour menu)",
   "SEL_DATE"     : "Sélectionner une date",
   "DRAG_TO_MOVE" : "Déplacer",
   "PART_TODAY"   : " (Aujourd'hui)",

   // the following is to inform that "%s" is to be the first day of week
   // %s will be replaced with the day name.
   "DAY_FIRST"    : "Afficher %s en premier",

   // This may be locale-dependent.  It specifies the week-end days, as an array
   // of comma-separated numbers.  The numbers are from 0 to 6: 0 means Sunday, 1
   // means Monday, etc.
   "WEEKEND"      : "0,6",

   "CLOSE"        : "Fermer",
   "TODAY"        : "Aujourd'hui",
   "TIME_PART"    : "(Maj-)Clic ou glisser pour modifier la valeur",

   // date formats
   "DEF_DATE_FORMAT"  : "%d/%m/%Y",
   "TT_DATE_FORMAT"   : "%a, %b %e",

   "WK"           : "Sem.",
   "TIME"         : "Heure :",
   "E_RANGE"      : "Outside the range",
   "_AMPM"        : {am : "am",
                     pm : "pm"}
});

