Created
October 21, 2014 15:03
-
-
Save SergeyMiracle/452f897d06ebc7dda016 to your computer and use it in GitHub Desktop.
Локализация Datepicker jQuery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Russian (UTF-8) initialisation for the jQuery UI date picker plugin. */ | |
jQuery(function($){ | |
$.datepicker.regional['ru'] = { | |
closeText: 'Закрыть', | |
prevText: '<Пред', | |
nextText: 'След>', | |
currentText: 'Сегодня', | |
monthNames: ['Январь','Февраль','Март','Апрель','Май','Июнь', | |
'Июль','Август','Сентябрь','Октябрь','Ноябрь','Декабрь'], | |
monthNamesShort: ['Янв','Фев','Мар','Апр','Май','Июн', | |
'Июл','Авг','Сен','Окт','Ноя','Дек'], | |
dayNames: ['воскресенье','понедельник','вторник','среда','четверг','пятница','суббота'], | |
dayNamesShort: ['вск','пнд','втр','срд','чтв','птн','сбт'], | |
dayNamesMin: ['Вс','Пн','Вт','Ср','Чт','Пт','Сб'], | |
weekHeader: 'Не', | |
dateFormat: 'dd.mm.yy', | |
firstDay: 1, | |
isRTL: false, | |
showMonthAfterYear: false, | |
yearSuffix: ''}; | |
$.datepicker.setDefaults($.datepicker.regional['ru']); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment