UNPKG

571 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var eu = {
5 code: "eu",
6 week: {
7 dow: 1, // Monday is the first day of the week.
8 doy: 7 // The week that contains Jan 1st is the first week of the year.
9 },
10 buttonText: {
11 prev: "Aur",
12 next: "Hur",
13 today: "Gaur",
14 month: "Hilabetea",
15 week: "Astea",
16 day: "Eguna",
17 list: "Agenda"
18 },
19 weekText: "As",
20 allDayText: "Egun osoa",
21 moreLinkText: "gehiago",
22 noEventsText: "Ez dago ekitaldirik erakusteko"
23 };
24
25 return eu;
26
27}());