34 lines
907 B
JavaScript
34 lines
907 B
JavaScript
/* http://keith-wood.name/calendars.html
|
|
Thai localisation for calendars datepicker for jQuery.
|
|
Written by pipo (pipo@sixhead.com). */
|
|
(function($) {
|
|
'use strict';
|
|
$.calendarsPicker.regionalOptions.th = {
|
|
renderer: $.calendarsPicker.defaultRenderer,
|
|
prevText: '« ย้อน',
|
|
prevStatus: '',
|
|
prevJumpText: '<<',
|
|
prevJumpStatus: '',
|
|
nextText: 'ถัดไป »',
|
|
nextStatus: '',
|
|
nextJumpText: '>>',
|
|
nextJumpStatus: '',
|
|
currentText: 'วันนี้',
|
|
currentStatus: '',
|
|
todayText: 'วันนี้',
|
|
todayStatus: '',
|
|
clearText: 'ลบ',
|
|
clearStatus: '',
|
|
closeText: 'ปิด',
|
|
closeStatus: '',
|
|
yearStatus: '',
|
|
monthStatus: '',
|
|
weekText: 'Wk',
|
|
weekStatus: '',
|
|
dayStatus: 'DD, M d',
|
|
defaultStatus: '',
|
|
isRTL: false
|
|
};
|
|
$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions.th);
|
|
})(jQuery);
|