1 //! moment.js locale configuration
2 //! locale : Spanish (Dominican Republic) [es-do]
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) :
9 }(this, (function (moment) { 'use strict';
11 //! moment.js locale configuration
13 var monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split(
16 monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_'),
31 monthsRegex = /^(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;
33 var esDo = moment.defineLocale('es-do', {
34 months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split(
37 monthsShort: function (m, format) {
39 return monthsShortDot;
40 } else if (/-MMM-/.test(format)) {
41 return monthsShort[m.month()];
43 return monthsShortDot[m.month()];
46 monthsRegex: monthsRegex,
47 monthsShortRegex: monthsRegex,
48 monthsStrictRegex: /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,
49 monthsShortStrictRegex: /^(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,
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',
66 sameDay: function () {
67 return '[hoy a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
69 nextDay: function () {
70 return '[mañana a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
72 nextWeek: function () {
73 return 'dddd [a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
75 lastDay: function () {
76 return '[ayer a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
78 lastWeek: function () {
80 '[el] dddd [pasado a la' +
81 (this.hours() !== 1 ? 's' : '') +
103 dayOfMonthOrdinalParse: /\d{1,2}º/,
106 dow: 1, // Monday is the first day of the week.
107 doy: 4, // The week that contains Jan 4th is the first week of the year.