Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

fr.js 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. w: 'une semaine',
  74. ww: '%d semaines',
  75. M: 'un mois',
  76. MM: '%d mois',
  77. y: 'un an',
  78. yy: '%d ans',
  79. },
  80. dayOfMonthOrdinalParse: /\d{1,2}(er|)/,
  81. ordinal: function (number, period) {
  82. switch (period) {
  83. // TODO: Return 'e' when day of month > 1. Move this case inside
  84. // block for masculine words below.
  85. // See https://github.com/moment/moment/issues/3375
  86. case 'D':
  87. return number + (number === 1 ? 'er' : '');
  88. // Words with masculine grammatical gender: mois, trimestre, jour
  89. default:
  90. case 'M':
  91. case 'Q':
  92. case 'DDD':
  93. case 'd':
  94. return number + (number === 1 ? 'er' : 'e');
  95. // Words with feminine grammatical gender: semaine
  96. case 'w':
  97. case 'W':
  98. return number + (number === 1 ? 're' : 'e');
  99. }
  100. },
  101. week: {
  102. dow: 1, // Monday is the first day of the week.
  103. doy: 4, // The week that contains Jan 4th is the first week of the year.
  104. },
  105. });
  106. return fr;
  107. })));