forked from kbwood/calendars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.calendars-tt.js
24 lines (24 loc) · 1.15 KB
/
jquery.calendars-tt.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* http://keith-wood.name/calendars.html
Tatar localisation for Gregorian/Julian calendars for jQuery.
Written by Ирек Хаҗиев ([email protected]). */
(function($) {
$.calendars.calendars.gregorian.prototype.regionalOptions['tt'] = {
name: 'Gregorian',
epochs: ['BCE', 'CE'],
monthNames: ['Гынвар','Февраль','Март','Апрель','Май','Июнь',
'Июль','Август','Сентябрь','Октябрь','Ноябрь','Декабрь'],
monthNamesShort: ['Гыйн','Фев','Мар','Апр','Май','Июн',
'Июл','Авг','Сен','Окт','Ноя','Дек'],
dayNames: ['якшәмбе','дүшәмбе','сишәмбе','чәршәмбе','пәнҗешәмбе','җомга','шимбә'],
dayNamesShort: ['якш','дүш','сиш','чәр','пән','җом','шим'],
dayNamesMin: ['Як','Дү','Си','Чә','Пә','Җо','Ши'],
digits: null,
dateFormat: 'dd.mm.yyyy',
firstDay: 1,
isRTL: false
};
if ($.calendars.calendars.julian) {
$.calendars.calendars.julian.prototype.regionalOptions['tt'] =
$.calendars.calendars.gregorian.prototype.regionalOptions['tt'];
}
})(jQuery);