fr.js 4.1 KB

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