es-do.js 3.4 KB

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