fullcalendar
Version:
FullCalendar Vanilla JS package for rendering a calendar
41 lines (36 loc) • 1.19 kB
JavaScript
/*!
FullCalendar (Vanilla JS) v7.0.2
Docs & License: https://fullcalendar.io
(c) 2026 Adam Shaw
*/
(function ({ F: globalLocales }) {
var __es_us$l23 = {
code: 'es',
week: {
dow: 0, // Sunday is the first day of the week.
doy: 6, // The week that contains Jan 1st is the first week of the year.
},
prevText: 'Ant',
nextText: 'Sig',
todayText: 'Hoy',
yearText: 'Año',
monthText: 'Mes',
weekTextLong: 'Semana',
weekTextShort: 'Sm',
dayText: 'Día',
listText: 'Agenda',
prevHint: '$0 antes',
nextHint: '$0 siguiente',
todayHint(unitText, unit) {
return (unit === 'day') ? 'Hoy' :
((unit === 'week') ? 'Esta' : 'Este') + ' ' + unitText.toLocaleLowerCase();
},
viewHint(unitText, unit) {
return 'Vista ' + (unit === 'week' ? 'de la' : 'del') + ' ' + unitText.toLocaleLowerCase();
},
allDayText: 'Todo\nel día',
moreLinkText: 'más',
noEventsText: 'No hay eventos para mostrar',
};
globalLocales.push(__es_us$l23);
})(FullCalendar.Shared);