UNPKG

567 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var esUs = {
5 code: 'es',
6 week: {
7 dow: 0, // Sunday is the first day of the week.
8 doy: 6, // The week that contains Jan 1st is the first week of the year.
9 },
10 buttonText: {
11 prev: 'Ant',
12 next: 'Sig',
13 today: 'Hoy',
14 month: 'Mes',
15 week: 'Semana',
16 day: 'Día',
17 list: 'Agenda',
18 },
19 weekText: 'Sm',
20 allDayText: 'Todo el día',
21 moreLinkText: 'más',
22 noEventsText: 'No hay eventos para mostrar',
23 };
24
25 return esUs;
26
27}());