1 //! moment.js locale configuration
2 //! locale : Spanish [es]
3 //! author : Julio Napurí : https://github.com/julionc
5 ;(function (global, factory) {
6 typeof exports === 'object' && typeof module !== 'undefined'
7 && typeof require === 'function' ? factory(require('../moment')) :
8 typeof define === 'function' && define.amd ? define(['../moment'], factory) :
10 }(this, (function (moment) { 'use strict';
12 //! moment.js locale configuration
14 var monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split(
17 monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_'),
32 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;
34 var es = moment.defineLocale('es', {
35 months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split(
38 monthsShort: function (m, format) {
40 return monthsShortDot;
41 } else if (/-MMM-/.test(format)) {
42 return monthsShort[m.month()];
44 return monthsShortDot[m.month()];
47 monthsRegex: monthsRegex,
48 monthsShortRegex: monthsRegex,
49 monthsStrictRegex: /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,
50 monthsShortStrictRegex: /^(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,
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',
67 sameDay: function () {
68 return '[hoy a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
70 nextDay: function () {
71 return '[mañana a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
73 nextWeek: function () {
74 return 'dddd [a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
76 lastDay: function () {
77 return '[ayer a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
79 lastWeek: function () {
81 '[el] dddd [pasado a la' +
82 (this.hours() !== 1 ? 's' : '') +
104 dayOfMonthOrdinalParse: /\d{1,2}º/,
107 dow: 1, // Monday is the first day of the week.
108 doy: 4, // The week that contains Jan 4th is the first week of the year.
110 invalidDate: 'Fecha invalida',