fr.js 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. //! moment.js locale configuration
  2. //! locale : French [fr]
  3. //! author : John Fischer : https://github.com/jfroffice
  4. import moment from '../moment';
  5. var monthsStrictRegex =
  6. /^(janvier|février|mars|avril|mai|juin|juillet|août|septembre|octobre|novembre|décembre)/i,
  7. monthsShortStrictRegex =
  8. /(janv\.?|févr\.?|mars|avr\.?|mai|juin|juil\.?|août|sept\.?|oct\.?|nov\.?|déc\.?)/i,
  9. monthsRegex =
  10. /(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,
  11. monthsParse = [
  12. /^janv/i,
  13. /^févr/i,
  14. /^mars/i,
  15. /^avr/i,
  16. /^mai/i,
  17. /^juin/i,
  18. /^juil/i,
  19. /^août/i,
  20. /^sept/i,
  21. /^oct/i,
  22. /^nov/i,
  23. /^déc/i,
  24. ];
  25. export default moment.defineLocale('fr', {
  26. months: 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split(
  27. '_'
  28. ),
  29. monthsShort:
  30. 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split(
  31. '_'
  32. ),
  33. monthsRegex: monthsRegex,
  34. monthsShortRegex: monthsRegex,
  35. monthsStrictRegex: monthsStrictRegex,
  36. monthsShortStrictRegex: monthsShortStrictRegex,
  37. monthsParse: monthsParse,
  38. longMonthsParse: monthsParse,
  39. shortMonthsParse: monthsParse,
  40. weekdays: 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
  41. weekdaysShort: 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
  42. weekdaysMin: 'di_lu_ma_me_je_ve_sa'.split('_'),
  43. weekdaysParseExact: true,
  44. longDateFormat: {
  45. LT: 'HH:mm',
  46. LTS: 'HH:mm:ss',
  47. L: 'DD/MM/YYYY',
  48. LL: 'D MMMM YYYY',
  49. LLL: 'D MMMM YYYY HH:mm',
  50. LLLL: 'dddd D MMMM YYYY HH:mm',
  51. },
  52. calendar: {
  53. sameDay: '[Aujourd’hui à] LT',
  54. nextDay: '[Demain à] LT',
  55. nextWeek: 'dddd [à] LT',
  56. lastDay: '[Hier à] LT',
  57. lastWeek: 'dddd [dernier à] LT',
  58. sameElse: 'L',
  59. },
  60. relativeTime: {
  61. future: 'dans %s',
  62. past: 'il y a %s',
  63. s: 'quelques secondes',
  64. ss: '%d secondes',
  65. m: 'une minute',
  66. mm: '%d minutes',
  67. h: 'une heure',
  68. hh: '%d heures',
  69. d: 'un jour',
  70. dd: '%d jours',
  71. w: 'une semaine',
  72. ww: '%d semaines',
  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. });