34 lines
854 B
JavaScript
34 lines
854 B
JavaScript
/* http://keith-wood.name/calendars.html
|
|
Estonian localisation for calendars datepicker for jQuery.
|
|
Written by Mart Sõmermaa (mrts.pydev at gmail com). */
|
|
(function($) {
|
|
'use strict';
|
|
$.calendarsPicker.regionalOptions.et = {
|
|
renderer: $.calendarsPicker.defaultRenderer,
|
|
prevText: 'Eelnev',
|
|
prevStatus: '',
|
|
prevJumpText: '<<',
|
|
prevJumpStatus: '',
|
|
nextText: 'Järgnev',
|
|
nextStatus: '',
|
|
nextJumpText: '>>',
|
|
nextJumpStatus: '',
|
|
currentText: 'Täna',
|
|
currentStatus: '',
|
|
todayText: 'Täna',
|
|
todayStatus: '',
|
|
clearText: 'X',
|
|
clearStatus: '',
|
|
closeText: 'Sulge',
|
|
closeStatus: '',
|
|
yearStatus: '',
|
|
monthStatus: '',
|
|
weekText: 'Wk',
|
|
weekStatus: '',
|
|
dayStatus: 'DD, M d',
|
|
defaultStatus: '',
|
|
isRTL: false
|
|
};
|
|
$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions.et);
|
|
})(jQuery);
|