@fullcalendar/web-component
Version:
Custom Element for FullCalendar
31 lines (29 loc) • 886 B
JavaScript
var 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',
};
export { l23 as l };