UNPKG

564 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var gl = {
5 code: 'gl',
6 week: {
7 dow: 1, // Monday is the first day of the week.
8 doy: 4, // The week that contains Jan 4th is the first week of the year.
9 },
10 buttonText: {
11 prev: 'Ant',
12 next: 'Seg',
13 today: 'Hoxe',
14 month: 'Mes',
15 week: 'Semana',
16 day: 'Día',
17 list: 'Axenda',
18 },
19 weekText: 'Sm',
20 allDayText: 'Todo o día',
21 moreLinkText: 'máis',
22 noEventsText: 'Non hai eventos para amosar',
23 };
24
25 return gl;
26
27}());