fr.js 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. // moment.js language configuration
  2. // language : french (fr)
  3. // author : John Fischer : https://github.com/jfroffice
  4. (function (factory) {
  5. if (typeof define === 'function' && define.amd) {
  6. define(['moment'], factory); // AMD
  7. } else if (typeof exports === 'object') {
  8. module.exports = factory(require('../moment')); // Node
  9. } else {
  10. factory(window.moment); // Browser global
  11. }
  12. }(function (moment) {
  13. return moment.lang('fr', {
  14. months : "janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),
  15. monthsShort : "janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),
  16. weekdays : "dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),
  17. weekdaysShort : "dim._lun._mar._mer._jeu._ven._sam.".split("_"),
  18. weekdaysMin : "Di_Lu_Ma_Me_Je_Ve_Sa".split("_"),
  19. longDateFormat : {
  20. LT : "HH:mm",
  21. L : "DD/MM/YYYY",
  22. LL : "D MMMM YYYY",
  23. LLL : "D MMMM YYYY LT",
  24. LLLL : "dddd D MMMM YYYY LT"
  25. },
  26. calendar : {
  27. sameDay: "[Aujourd'hui à] LT",
  28. nextDay: '[Demain à] LT',
  29. nextWeek: 'dddd [à] LT',
  30. lastDay: '[Hier à] LT',
  31. lastWeek: 'dddd [dernier à] LT',
  32. sameElse: 'L'
  33. },
  34. relativeTime : {
  35. future : "dans %s",
  36. past : "il y a %s",
  37. s : "quelques secondes",
  38. m : "une minute",
  39. mm : "%d minutes",
  40. h : "une heure",
  41. hh : "%d heures",
  42. d : "un jour",
  43. dd : "%d jours",
  44. M : "un mois",
  45. MM : "%d mois",
  46. y : "un an",
  47. yy : "%d ans"
  48. },
  49. ordinal : function (number) {
  50. return number + (number === 1 ? 'er' : '');
  51. },
  52. week : {
  53. dow : 1, // Monday is the first day of the week.
  54. doy : 4 // The week that contains Jan 4th is the first week of the year.
  55. }
  56. });
  57. }));