es-mx.js 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. //! moment.js locale configuration
  2. //! locale : Spanish (Mexico) [es-mx]
  3. //! author : JC Franco : https://github.com/jcfranco
  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 monthsShortDot =
  12. 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split(
  13. '_'
  14. ),
  15. monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_'),
  16. monthsParse = [
  17. /^ene/i,
  18. /^feb/i,
  19. /^mar/i,
  20. /^abr/i,
  21. /^may/i,
  22. /^jun/i,
  23. /^jul/i,
  24. /^ago/i,
  25. /^sep/i,
  26. /^oct/i,
  27. /^nov/i,
  28. /^dic/i,
  29. ],
  30. monthsRegex =
  31. /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;
  32. var esMx = moment.defineLocale('es-mx', {
  33. months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split(
  34. '_'
  35. ),
  36. monthsShort: function (m, format) {
  37. if (!m) {
  38. return monthsShortDot;
  39. } else if (/-MMM-/.test(format)) {
  40. return monthsShort[m.month()];
  41. } else {
  42. return monthsShortDot[m.month()];
  43. }
  44. },
  45. monthsRegex: monthsRegex,
  46. monthsShortRegex: monthsRegex,
  47. monthsStrictRegex:
  48. /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,
  49. monthsShortStrictRegex:
  50. /^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,
  51. monthsParse: monthsParse,
  52. longMonthsParse: monthsParse,
  53. shortMonthsParse: monthsParse,
  54. weekdays: 'domingo_lunes_martes_miércoles_jueves_viernes_sábado'.split('_'),
  55. weekdaysShort: 'dom._lun._mar._mié._jue._vie._sáb.'.split('_'),
  56. weekdaysMin: 'do_lu_ma_mi_ju_vi_sá'.split('_'),
  57. weekdaysParseExact: true,
  58. longDateFormat: {
  59. LT: 'H:mm',
  60. LTS: 'H:mm:ss',
  61. L: 'DD/MM/YYYY',
  62. LL: 'D [de] MMMM [de] YYYY',
  63. LLL: 'D [de] MMMM [de] YYYY H:mm',
  64. LLLL: 'dddd, D [de] MMMM [de] YYYY H:mm',
  65. },
  66. calendar: {
  67. sameDay: function () {
  68. return '[hoy a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
  69. },
  70. nextDay: function () {
  71. return '[mañana a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
  72. },
  73. nextWeek: function () {
  74. return 'dddd [a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
  75. },
  76. lastDay: function () {
  77. return '[ayer a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
  78. },
  79. lastWeek: function () {
  80. return (
  81. '[el] dddd [pasado a la' +
  82. (this.hours() !== 1 ? 's' : '') +
  83. '] LT'
  84. );
  85. },
  86. sameElse: 'L',
  87. },
  88. relativeTime: {
  89. future: 'en %s',
  90. past: 'hace %s',
  91. s: 'unos segundos',
  92. ss: '%d segundos',
  93. m: 'un minuto',
  94. mm: '%d minutos',
  95. h: 'una hora',
  96. hh: '%d horas',
  97. d: 'un día',
  98. dd: '%d días',
  99. w: 'una semana',
  100. ww: '%d semanas',
  101. M: 'un mes',
  102. MM: '%d meses',
  103. y: 'un año',
  104. yy: '%d años',
  105. },
  106. dayOfMonthOrdinalParse: /\d{1,2}º/,
  107. ordinal: '%dº',
  108. week: {
  109. dow: 0, // Sunday is the first day of the week.
  110. doy: 4, // The week that contains Jan 4th is the first week of the year.
  111. },
  112. invalidDate: 'Fecha inválida',
  113. });
  114. return esMx;
  115. })));