34 lines
903 B
JavaScript
34 lines
903 B
JavaScript
/* http://keith-wood.name/calendars.html
|
|
Malayalam localisation for calendars datepicker for jQuery.
|
|
Saji Nediyanchath (saji89@gmail.com). */
|
|
(function($) {
|
|
'use strict';
|
|
$.calendarsPicker.regionalOptions.ml = {
|
|
renderer: $.calendarsPicker.defaultRenderer,
|
|
prevText: 'മുന്നത്തെ',
|
|
prevStatus: '',
|
|
prevJumpText: '<<',
|
|
prevJumpStatus: '',
|
|
nextText: 'അടുത്തത് ',
|
|
nextStatus: '',
|
|
nextJumpText: '>>',
|
|
nextJumpStatus: '',
|
|
currentText: 'ഇന്ന്',
|
|
currentStatus: '',
|
|
todayText: 'ഇന്ന്',
|
|
todayStatus: '',
|
|
clearText: 'X',
|
|
clearStatus: '',
|
|
closeText: 'ശരി',
|
|
closeStatus: '',
|
|
yearStatus: '',
|
|
monthStatus: '',
|
|
weekText: 'ആ',
|
|
weekStatus: '',
|
|
dayStatus: 'DD d MM',
|
|
defaultStatus: '',
|
|
isRTL: false
|
|
};
|
|
$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions.ml);
|
|
})(jQuery);
|