Files
hrm_eva/wwwroot/lib/jquery.calendars/js/jquery.calendars-tt.js
2020-08-11 16:13:02 +07:00

26 lines
1.2 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/* http://keith-wood.name/calendars.html
Tatar localisation for Gregorian/Julian calendars for jQuery.
Written by Ирек Хаҗиев (khazirek@gmail.com). */
(function($) {
'use strict';
$.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);