corrade-nucleus-nucleons – Blame information for rev

Subversion Repositories:
Rev:
Rev Author Line No. Line
10 office 1 //! moment.js locale configuration
2 //! locale : Spanish (Dominican Republic) [es-do]
3  
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) :
8 factory(global.moment)
9 }(this, (function (moment) { 'use strict';
10  
11  
12 var monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split('_');
13 var monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_');
14  
15 var esDo = moment.defineLocale('es-do', {
16 months : 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split('_'),
17 monthsShort : function (m, format) {
18 if (!m) {
19 return monthsShortDot;
20 } else if (/-MMM-/.test(format)) {
21 return monthsShort[m.month()];
22 } else {
23 return monthsShortDot[m.month()];
24 }
25 },
26 monthsParseExact : true,
27 weekdays : 'domingo_lunes_martes_miércoles_jueves_viernes_sábado'.split('_'),
28 weekdaysShort : 'dom._lun._mar._mié._jue._vie._sáb.'.split('_'),
29 weekdaysMin : 'do_lu_ma_mi_ju_vi_sá'.split('_'),
30 weekdaysParseExact : true,
31 longDateFormat : {
32 LT : 'h:mm A',
33 LTS : 'h:mm:ss A',
34 L : 'DD/MM/YYYY',
35 LL : 'D [de] MMMM [de] YYYY',
36 LLL : 'D [de] MMMM [de] YYYY h:mm A',
37 LLLL : 'dddd, D [de] MMMM [de] YYYY h:mm A'
38 },
39 calendar : {
40 sameDay : function () {
41 return '[hoy a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
42 },
43 nextDay : function () {
44 return '[mañana a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
45 },
46 nextWeek : function () {
47 return 'dddd [a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
48 },
49 lastDay : function () {
50 return '[ayer a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
51 },
52 lastWeek : function () {
53 return '[el] dddd [pasado a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
54 },
55 sameElse : 'L'
56 },
57 relativeTime : {
58 future : 'en %s',
59 past : 'hace %s',
60 s : 'unos segundos',
61 m : 'un minuto',
62 mm : '%d minutos',
63 h : 'una hora',
64 hh : '%d horas',
65 d : 'un día',
66 dd : '%d días',
67 M : 'un mes',
68 MM : '%d meses',
69 y : 'un año',
70 yy : '%d años'
71 },
72 dayOfMonthOrdinalParse : /\d{1,2}º/,
73 ordinal : '%dº',
74 week : {
75 dow : 1, // Monday is the first day of the week.
76 doy : 4 // The week that contains Jan 4th is the first week of the year.
77 }
78 });
79  
80 return esDo;
81  
82 })));