| 1 |
/* Thai initialisation for the jQuery UI date picker plugin. */ |
| 2 |
/* Written by pipo (pipo@sixhead.com). */ |
| 3 |
(function($) { |
| 4 |
$.datepick.regional['th'] = { |
| 5 |
clearText: 'ลบ', clearStatus: '', |
| 6 |
closeText: 'ปิด', closeStatus: '', |
| 7 |
prevText: '« ย้อน', prevStatus: '', |
| 8 |
prevBigText: '<<', prevBigStatus: '', |
| 9 |
nextText: 'ถัดไป »', nextStatus: '', |
| 10 |
nextBigText: '>>', nextBigStatus: '', |
| 11 |
currentText: 'วันนี้', currentStatus: '', |
| 12 |
monthNames: ['มกราคม','กุมภาพันธ์','มีนาคม','เมษายน','พฤษภาคม','มิถุนายน', |
| 13 |
'กรกฏาคม','สิงหาคม','กันยายน','ตุลาคม','พฤศจิกายน','ธันวาคม'], |
| 14 |
monthNamesShort: ['ม.ค.','ก.พ.','มี.ค.','เม.ย.','พ.ค.','มิ.ย.', |
| 15 |
'ก.ค.','ส.ค.','ก.ย.','ต.ค.','พ.ย.','ธ.ค.'], |
| 16 |
monthStatus: '', yearStatus: '', |
| 17 |
weekHeader: 'Wk', weekStatus: '', |
| 18 |
dayNames: ['อาทิตย์','จันทร์','อังคาร','พุธ','พฤหัสบดี','ศุกร์','เสาร์'], |
| 19 |
dayNamesShort: ['อา.','จ.','อ.','พ.','พฤ.','ศ.','ส.'], |
| 20 |
dayNamesMin: ['อา.','จ.','อ.','พ.','พฤ.','ศ.','ส.'], |
| 21 |
dayStatus: 'DD', dateStatus: 'D, M d', |
| 22 |
dateFormat: 'dd/mm/yy', firstDay: 0, |
| 23 |
initStatus: '', isRTL: false, |
| 24 |
showMonthAfterYear: false, yearSuffix: ''}; |
| 25 |
$.datepick.setDefaults($.datepick.regional['th']); |
| 26 |
})(jQuery); |
| 27 |
|