34 lines
898 B
JavaScript
34 lines
898 B
JavaScript
/* http://keith-wood.name/calendars.html
|
||
Ukrainian localisation for calendars datepicker for jQuery.
|
||
Written by Maxim Drogobitskiy (maxdao@gmail.com). */
|
||
(function($) {
|
||
'use strict';
|
||
$.calendarsPicker.regionalOptions.uk = {
|
||
renderer: $.calendarsPicker.defaultRenderer,
|
||
prevText: '<',
|
||
prevStatus: '',
|
||
prevJumpText: '<<',
|
||
prevJumpStatus: '',
|
||
nextText: '>',
|
||
nextStatus: '',
|
||
nextJumpText: '>>',
|
||
nextJumpStatus: '',
|
||
currentText: 'Сьогодні',
|
||
currentStatus: '',
|
||
todayText: 'Сьогодні',
|
||
todayStatus: '',
|
||
clearText: 'Очистити',
|
||
clearStatus: '',
|
||
closeText: 'Закрити',
|
||
closeStatus: '',
|
||
yearStatus: '',
|
||
monthStatus: '',
|
||
weekText: 'Не',
|
||
weekStatus: '',
|
||
dayStatus: 'DD, M d',
|
||
defaultStatus: '',
|
||
isRTL: false
|
||
};
|
||
$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions.uk);
|
||
})(jQuery);
|