fr.js 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. //! moment.js locale configuration
  2. //! locale : French [fr]
  3. //! author : John Fischer : https://github.com/jfroffice
  4. ;(function (global, factory) {
  5. typeof exports === 'object' && typeof module !== 'undefined'
  6. && typeof require === 'function' ? factory(require('../moment')) :
  7. typeof define === 'function' && define.amd ? define(['../moment'], factory) :
  8. factory(global.moment)
  9. }(this, (function (moment) { 'use strict';
  10. //! moment.js locale configuration
  11. var monthsStrictRegex = /^(janvier|février|mars|avril|mai|juin|juillet|août|septembre|octobre|novembre|décembre)/i,
  12. monthsShortStrictRegex = /(janv\.?|févr\.?|mars|avr\.?|mai|juin|juil\.?|août|sept\.?|oct\.?|nov\.?|déc\.?)/i,
  13. monthsRegex = /(janv\.?|févr\.?|mars|avr\.?|mai|juin|juil\.?|août|sept\.?|oct\.?|nov\.?|déc\.?|janvier|février|mars|avril|mai|juin|juillet|août|septembre|octobre|novembre|décembre)/i,
  14. monthsParse = [
  15. /^janv/i,
  16. /^févr/i,
  17. /^mars/i,
  18. /^avr/i,
  19. /^mai/i,
  20. /^juin/i,
  21. /^juil/i,
  22. /^août/i,
  23. /^sept/i,
  24. /^oct/i,
  25. /^nov/i,
  26. /^déc/i,
  27. ];
  28. var fr = moment.defineLocale('fr', {
  29. months: 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split(
  30. '_'
  31. ),
  32. monthsShort: 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split(
  33. '_'
  34. ),
  35. monthsRegex: monthsRegex,
  36. monthsShortRegex: monthsRegex,
  37. monthsStrictRegex: monthsStrictRegex,
  38. monthsShortStrictRegex: monthsShortStrictRegex,
  39. monthsParse: monthsParse,
  40. longMonthsParse: monthsParse,
  41. shortMonthsParse: monthsParse,
  42. weekdays: 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
  43. weekdaysShort: 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
  44. weekdaysMin: 'di_lu_ma_me_je_ve_sa'.split('_'),
  45. weekdaysParseExact: true,
  46. longDateFormat: {
  47. LT: 'HH:mm',
  48. LTS: 'HH:mm:ss',
  49. L: 'DD/MM/YYYY',
  50. LL: 'D MMMM YYYY',
  51. LLL: 'D MMMM YYYY HH:mm',
  52. LLLL: 'dddd D MMMM YYYY HH:mm',
  53. },
  54. calendar: {
  55. sameDay: '[Aujourd’hui à] LT',
  56. nextDay: '[Demain à] LT',
  57. nextWeek: 'dddd [à] LT',
  58. lastDay: '[Hier à] LT',
  59. lastWeek: 'dddd [dernier à] LT',
  60. sameElse: 'L',
  61. },
  62. relativeTime: {
  63. future: 'dans %s',
  64. past: 'il y a %s',
  65. s: 'quelques secondes',
  66. ss: '%d secondes',
  67. m: 'une minute',
  68. mm: '%d minutes',
  69. h: 'une heure',
  70. hh: '%d heures',
  71. d: 'un jour',
  72. dd: '%d jours',
  73. M: 'un mois',
  74. MM: '%d mois',
  75. y: 'un an',
  76. yy: '%d ans',
  77. },
  78. dayOfMonthOrdinalParse: /\d{1,2}(er|)/,
  79. ordinal: function (number, period) {
  80. switch (period) {
  81. // TODO: Return 'e' when day of month > 1. Move this case inside
  82. // block for masculine words below.
  83. // See https://github.com/moment/moment/issues/3375
  84. case 'D':
  85. return number + (number === 1 ? 'er' : '');
  86. // Words with masculine grammatical gender: mois, trimestre, jour
  87. default:
  88. case 'M':
  89. case 'Q':
  90. case 'DDD':
  91. case 'd':
  92. return number + (number === 1 ? 'er' : 'e');
  93. // Words with feminine grammatical gender: semaine
  94. case 'w':
  95. case 'W':
  96. return number + (number === 1 ? 're' : 'e');
  97. }
  98. },
  99. week: {
  100. dow: 1, // Monday is the first day of the week.
  101. doy: 4, // The week that contains Jan 4th is the first week of the year.
  102. },
  103. });
  104. return fr;
  105. })));