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

26 lines
989 B
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
Turkish localisation for Gregorian/Julian calendars for jQuery.
Written by Izzet Emre Erkan (kara@karalamalar.net). */
(function($) {
'use strict';
$.calendars.calendars.gregorian.prototype.regionalOptions.tr = {
name: 'Gregorian',
epochs: ['BCE', 'CE'],
monthNames: ['Ocak','Şubat','Mart','Nisan','Mayıs','Haziran',
'Temmuz','Ağustos','Eylül','Ekim','Kasım','Aralık'],
monthNamesShort: ['Oca','Şub','Mar','Nis','May','Haz',
'Tem','Ağu','Eyl','Eki','Kas','Ara'],
dayNames: ['Pazar','Pazartesi','Salı','Çarşamba','Perşembe','Cuma','Cumartesi'],
dayNamesShort: ['Pz','Pt','Sa','Ça','Pe','Cu','Ct'],
dayNamesMin: ['Pz','Pt','Sa','Ça','Pe','Cu','Ct'],
digits: null,
dateFormat: 'dd.mm.yyyy',
firstDay: 1,
isRTL: false
};
if ($.calendars.calendars.julian) {
$.calendars.calendars.julian.prototype.regionalOptions.tr =
$.calendars.calendars.gregorian.prototype.regionalOptions.tr;
}
})(jQuery);