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.

63 lines
2.3 KiB

  1. //! moment.js locale configuration
  2. //! locale : French (Switzerland) [fr-ch]
  3. //! author : Gaspard Bucher : https://github.com/gaspard
  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. var fr_ch = moment.defineLocale('fr-ch', {
  11. months : 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split('_'),
  12. monthsShort : 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split('_'),
  13. monthsParseExact : true,
  14. weekdays : 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
  15. weekdaysShort : 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
  16. weekdaysMin : 'Di_Lu_Ma_Me_Je_Ve_Sa'.split('_'),
  17. weekdaysParseExact : true,
  18. longDateFormat : {
  19. LT : 'HH:mm',
  20. LTS : 'HH:mm:ss',
  21. L : 'DD.MM.YYYY',
  22. LL : 'D MMMM YYYY',
  23. LLL : 'D MMMM YYYY HH:mm',
  24. LLLL : 'dddd D MMMM YYYY HH:mm'
  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. ordinalParse: /\d{1,2}(er|e)/,
  50. ordinal : function (number) {
  51. return number + (number === 1 ? 'er' : 'e');
  52. },
  53. week : {
  54. dow : 1, // Monday is the first day of the week.
  55. doy : 4 // The week that contains Jan 4th is the first week of the year.
  56. }
  57. });
  58. return fr_ch;
  59. }));