Files
hrm_eva/wwwroot/lib/jquery.calendars/js/jquery.calendars.picker-uk.js
2020-08-11 16:13:02 +07:00

34 lines
898 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/* 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);