34 lines
1014 B
JavaScript
34 lines
1014 B
JavaScript
/* http://keith-wood.name/calendars.html
|
||
Azerbaijani localisation for calendars datepicker for jQuery.
|
||
Written by Jamil Najafov (necefov33@gmail.com). */
|
||
(function($) {
|
||
'use strict';
|
||
$.calendarsPicker.regionalOptions.az = {
|
||
renderer: $.calendarsPicker.defaultRenderer,
|
||
prevText: '<Geri',
|
||
prevStatus: 'Əvvəlki ay',
|
||
prevJumpText: '<<',
|
||
prevJumpStatus: 'Əvvəlki il',
|
||
nextText: 'İrəli>',
|
||
nextStatus: 'Sonrakı ay',
|
||
nextJumpText: '>>',
|
||
nextJumpStatus: 'Sonrakı il',
|
||
currentText: 'Bugün',
|
||
currentStatus: 'İndiki ay',
|
||
todayText: 'Bugün',
|
||
todayStatus: 'İndiki ay',
|
||
clearText: 'Təmizlə',
|
||
clearStatus: 'Tarixi sil',
|
||
closeText: 'Bağla',
|
||
closeStatus: 'Təqvimi bağla',
|
||
yearStatus: 'Başqa il',
|
||
monthStatus: 'Başqa ay',
|
||
weekText: 'Hf',
|
||
weekStatus: 'Həftələr',
|
||
dayStatus: 'D, M d seçin',
|
||
defaultStatus: 'Bir tarix seçin',
|
||
isRTL: false
|
||
};
|
||
$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions.az);
|
||
})(jQuery);
|