es-mx.js 3.4 KB

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