22 lines
651 B
JavaScript
22 lines
651 B
JavaScript
|
/* Russian translation for the jQuery Timepicker Addon */
|
||
|
/* Written by Trent Richardson */
|
||
|
(function($) {
|
||
|
$.timepicker.regional['ru'] = {
|
||
|
timeOnlyTitle: 'Выберите время',
|
||
|
timeText: 'Время',
|
||
|
hourText: 'Часы',
|
||
|
minuteText: 'Минуты',
|
||
|
secondText: 'Секунды',
|
||
|
millisecText: 'Миллисекунды',
|
||
|
microsecText: 'Микросекунды',
|
||
|
timezoneText: 'Часовой пояс',
|
||
|
currentText: 'Сейчас',
|
||
|
closeText: 'Закрыть',
|
||
|
timeFormat: 'HH:mm',
|
||
|
amNames: ['AM', 'A'],
|
||
|
pmNames: ['PM', 'P'],
|
||
|
isRTL: false
|
||
|
};
|
||
|
$.timepicker.setDefaults($.timepicker.regional['ru']);
|
||
|
})(jQuery);
|