UNPKG

578 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var ca = {
5 code: "ca",
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: "Anterior",
12 next: "Següent",
13 today: "Avui",
14 month: "Mes",
15 week: "Setmana",
16 day: "Dia",
17 list: "Agenda"
18 },
19 weekText: "Set",
20 allDayText: "Tot el dia",
21 moreLinkText: "més",
22 noEventsText: "No hi ha esdeveniments per mostrar"
23 };
24
25 return ca;
26
27}());