34 lines
1016 B
JavaScript
34 lines
1016 B
JavaScript
/* http://keith-wood.name/calendars.html
|
||
Turkish localisation for calendars datepicker for jQuery.
|
||
Written by Izzet Emre Erkan (kara@karalamalar.net). */
|
||
(function($) {
|
||
'use strict';
|
||
$.calendarsPicker.regionalOptions.tr = {
|
||
renderer: $.calendarsPicker.defaultRenderer,
|
||
prevText: '<geri',
|
||
prevStatus: 'önceki ayı göster',
|
||
prevJumpText: '<<',
|
||
prevJumpStatus: '',
|
||
nextText: 'ileri>',
|
||
nextStatus: 'sonraki ayı göster',
|
||
nextJumpText: '>>',
|
||
nextJumpStatus: '',
|
||
currentText: 'bugün',
|
||
currentStatus: '',
|
||
todayText: 'bugün',
|
||
todayStatus: '',
|
||
clearText: 'temizle',
|
||
clearStatus: 'geçerli tarihi temizler',
|
||
closeText: 'kapat',
|
||
closeStatus: 'sadece göstergeyi kapat',
|
||
yearStatus: 'başka yıl',
|
||
monthStatus: 'başka ay',
|
||
weekText: 'Hf',
|
||
weekStatus: 'Ayın haftaları',
|
||
dayStatus: 'D, M d seçiniz',
|
||
defaultStatus: 'Bir tarih seçiniz',
|
||
isRTL: false
|
||
};
|
||
$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions.tr);
|
||
})(jQuery);
|