2008-06-04 02:34:33 +00:00
|
|
|
|
/* Thai initialisation for the jQuery UI date picker plugin. */
|
|
|
|
|
/* Written by pipo (pipo@sixhead.com). */
|
|
|
|
|
jQuery(function($){
|
2008-07-25 09:59:05 +00:00
|
|
|
|
$.datepicker.regional['th'] = {
|
|
|
|
|
clearText: 'ลบ', clearStatus: '',
|
2008-06-04 02:34:33 +00:00
|
|
|
|
closeText: 'ปิด', closeStatus: '',
|
|
|
|
|
prevText: '« ย้อน', prevStatus: '',
|
2008-07-25 09:59:05 +00:00
|
|
|
|
prevBigText: '<<', prevBigStatus: '',
|
2008-06-04 02:34:33 +00:00
|
|
|
|
nextText: 'ถัดไป »', nextStatus: '',
|
2008-07-25 09:59:05 +00:00
|
|
|
|
nextBigText: '>>', nextBigStatus: '',
|
2008-06-04 02:34:33 +00:00
|
|
|
|
currentText: 'วันนี้', currentStatus: '',
|
|
|
|
|
monthNames: ['มกราคม','กุมภาพันธ์','มีนาคม','เมษายน','พฤษภาคม','มิถุนายน',
|
|
|
|
|
'กรกฏาคม','สิงหาคม','กันยายน','ตุลาคม','พฤศจิกายน','ธันวาคม'],
|
|
|
|
|
monthNamesShort: ['ม.ค.','ก.พ.','มี.ค.','เม.ย.','พ.ค.','มิ.ย.',
|
|
|
|
|
'ก.ค.','ส.ค.','ก.ย.','ต.ค.','พ.ย.','ธ.ค.'],
|
|
|
|
|
monthStatus: '', yearStatus: '',
|
|
|
|
|
weekHeader: 'Sm', weekStatus: '',
|
|
|
|
|
dayNames: ['อาทิตย์','จันทร์','อังคาร','พุธ','พฤหัสบดี','ศุกร์','เสาร์'],
|
|
|
|
|
dayNamesShort: ['อา.','จ.','อ.','พ.','พฤ.','ศ.','ส.'],
|
|
|
|
|
dayNamesMin: ['อา.','จ.','อ.','พ.','พฤ.','ศ.','ส.'],
|
|
|
|
|
dayStatus: 'DD', dateStatus: 'D, M d',
|
2008-11-20 04:10:34 +00:00
|
|
|
|
dateFormat: 'dd/mm/yy', firstDay: 0,
|
2008-06-04 02:34:33 +00:00
|
|
|
|
initStatus: '', isRTL: false};
|
|
|
|
|
$.datepicker.setDefaults($.datepicker.regional['th']);
|
2008-05-29 15:19:49 +00:00
|
|
|
|
});
|