2020-09-21 09:43:11 +00:00
|
|
|
FullCalendar.globalLocales.push(function () {
|
|
|
|
'use strict';
|
2019-06-14 07:33:43 +00:00
|
|
|
|
2020-09-21 09:43:11 +00:00
|
|
|
var esUs = {
|
2020-11-25 09:31:52 +00:00
|
|
|
code: 'es',
|
2020-09-21 09:43:11 +00:00
|
|
|
week: {
|
|
|
|
dow: 0, // Sunday is the first day of the week.
|
2020-11-25 09:31:52 +00:00
|
|
|
doy: 6, // The week that contains Jan 1st is the first week of the year.
|
2020-09-21 09:43:11 +00:00
|
|
|
},
|
|
|
|
buttonText: {
|
2020-11-25 09:31:52 +00:00
|
|
|
prev: 'Ant',
|
|
|
|
next: 'Sig',
|
|
|
|
today: 'Hoy',
|
|
|
|
month: 'Mes',
|
|
|
|
week: 'Semana',
|
|
|
|
day: 'Día',
|
|
|
|
list: 'Agenda',
|
2020-09-21 09:43:11 +00:00
|
|
|
},
|
2020-11-25 09:31:52 +00:00
|
|
|
weekText: 'Sm',
|
|
|
|
allDayText: 'Todo el día',
|
|
|
|
moreLinkText: 'más',
|
|
|
|
noEventsText: 'No hay eventos para mostrar',
|
2020-09-21 09:43:11 +00:00
|
|
|
};
|
2019-06-14 07:33:43 +00:00
|
|
|
|
2020-09-21 09:43:11 +00:00
|
|
|
return esUs;
|
2019-06-14 07:33:43 +00:00
|
|
|
|
2020-09-21 09:43:11 +00:00
|
|
|
}());
|