UNPKG

569 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var tr = {
5 code: 'tr',
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: 'geri',
12 next: 'ileri',
13 today: 'bugün',
14 month: 'Ay',
15 week: 'Hafta',
16 day: 'Gün',
17 list: 'Ajanda',
18 },
19 weekText: 'Hf',
20 allDayText: 'Tüm gün',
21 moreLinkText: 'daha fazla',
22 noEventsText: 'Gösterilecek etkinlik yok',
23 };
24
25 return tr;
26
27}());