34 lines
907 B
JavaScript
34 lines
907 B
JavaScript
/* http://keith-wood.name/calendars.html
|
||
Russian localisation for calendars datepicker for jQuery.
|
||
Written by Andrew Stromnov (stromnov@gmail.com). */
|
||
(function($) {
|
||
'use strict';
|
||
$.calendarsPicker.regionalOptions.ru = {
|
||
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.ru);
|
||
})(jQuery);
|