UNPKG

700 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var el = {
5 code: "el",
6 week: {
7 dow: 1, // Monday is the first day of the week.
8 doy: 4 // The week that contains Jan 4st is the first week of the year.
9 },
10 buttonText: {
11 prev: "Προηγούμενος",
12 next: "Επόμενος",
13 today: "Σήμερα",
14 month: "Μήνας",
15 week: "Εβδομάδα",
16 day: "Ημέρα",
17 list: "Ατζέντα"
18 },
19 weekText: "Εβδ",
20 allDayText: "Ολοήμερο",
21 moreLinkText: "περισσότερα",
22 noEventsText: "Δεν υπάρχουν γεγονότα προς εμφάνιση"
23 };
24
25 return el;
26
27}());