calendar-fr.js 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. // ** I18N
  2. // Calendar EN language
  3. // Author: Mihai Bazon, <mihai_bazon@yahoo.com>
  4. // Encoding: any
  5. // Distributed under the same terms as the calendar itself.
  6. // For translators: please use UTF-8 if possible. We strongly believe that
  7. // Unicode is the answer to a real internationalized world. Also please
  8. // include your contact information in the header, as can be seen above.
  9. // Translator: David Duret, <pilgrim@mala-template.net> from previous french version
  10. // full day names
  11. Calendar._DN = new Array
  12. ("Dimanche",
  13. "Lundi",
  14. "Mardi",
  15. "Mercredi",
  16. "Jeudi",
  17. "Vendredi",
  18. "Samedi",
  19. "Dimanche");
  20. // Please note that the following array of short day names (and the same goes
  21. // for short month names, _SMN) isn't absolutely necessary. We give it here
  22. // for exemplification on how one can customize the short day names, but if
  23. // they are simply the first N letters of the full name you can simply say:
  24. //
  25. // Calendar._SDN_len = N; // short day name length
  26. // Calendar._SMN_len = N; // short month name length
  27. //
  28. // If N = 3 then this is not needed either since we assume a value of 3 if not
  29. // present, to be compatible with translation files that were written before
  30. // this feature.
  31. // short day names
  32. Calendar._SDN = new Array
  33. ("Dim",
  34. "Lun",
  35. "Mar",
  36. "Mer",
  37. "Jeu",
  38. "Ven",
  39. "Sam",
  40. "Dim");
  41. // First day of the week. "0" means display Sunday first, "1" means display
  42. // Monday first, etc.
  43. Calendar._FD = 1;
  44. // full month names
  45. Calendar._MN = new Array
  46. ("janvier",
  47. "février",
  48. "mars",
  49. "avril",
  50. "mai",
  51. "juin",
  52. "juillet",
  53. "août",
  54. "septembre",
  55. "octobre",
  56. "novembre",
  57. "décembre");
  58. // short month names
  59. Calendar._SMN = new Array
  60. ("jan",
  61. "fév",
  62. "mar",
  63. "avr",
  64. "mai",
  65. "juin",
  66. "juil",
  67. "août",
  68. "sep",
  69. "oct",
  70. "nov",
  71. "déc");
  72. // tooltips
  73. Calendar._TT = {};
  74. Calendar._TT["INFO"] = "Aide";
  75. Calendar._TT["ABOUT"] =
  76. "Sélection de la date :\n" +
  77. "- Utiliser les boutons \xab, \xbb pour sélectionner l\'année\n" +
  78. "- Utiliser les boutons " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " pour sélectionner les mois\n" +
  79. "- Maintenir le bouton de la souris enfoncé sur n'importe quel bouton pour une sélection plus rapide";
  80. Calendar._TT["ABOUT_TIME"] = "\n\n" +
  81. "Sélection de l\'heure :\n" +
  82. "- Cliquer sur heures ou minutes pour incrémenter\n" +
  83. "- ou Maj-clic pour décrementer\n" +
  84. "- ou clic et glisser-déplacer pour une sélection plus rapide";
  85. Calendar._TT["PREV_YEAR"] = "Année préc. (maintenir pour menu)";
  86. Calendar._TT["PREV_MONTH"] = "Mois préc. (maintenir pour menu)";
  87. Calendar._TT["GO_TODAY"] = "Atteindre la date du jour";
  88. Calendar._TT["NEXT_MONTH"] = "Mois suiv. (maintenir pour menu)";
  89. Calendar._TT["NEXT_YEAR"] = "Année suiv. (maintenir pour menu)";
  90. Calendar._TT["SEL_DATE"] = "Sélectionner une date";
  91. Calendar._TT["DRAG_TO_MOVE"] = "Déplacer";
  92. Calendar._TT["PART_TODAY"] = " (Aujourd'hui)";
  93. // the following is to inform that "%s" is to be the first day of week
  94. // %s will be replaced with the day name.
  95. Calendar._TT["DAY_FIRST"] = "Afficher %s en premier";
  96. // This may be locale-dependent. It specifies the week-end days, as an array
  97. // of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1
  98. // means Monday, etc.
  99. Calendar._TT["WEEKEND"] = "0,6";
  100. Calendar._TT["CLOSE"] = "Fermer";
  101. Calendar._TT["TODAY"] = "Aujourd'hui";
  102. Calendar._TT["TIME_PART"] = "(Maj-)Clic ou glisser pour modifier la valeur";
  103. // date formats
  104. Calendar._TT["DEF_DATE_FORMAT"] = "%d/%m/%Y";
  105. Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";
  106. Calendar._TT["WK"] = "Sem.";
  107. Calendar._TT["TIME"] = "Heure :";