es-do.js 4.1 KB

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