You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

jquery.ui.datepicker-th.js 1.4KB

12345678910111213141516171819202122232425
  1. /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat (MIT) */
  2. /* Thai initialisation for the jQuery UI date picker plugin. */
  3. /* Written by pipo (pipo@sixhead.com). */
  4. jQuery(function($){
  5. $.datepicker.regional['th'] = {
  6. closeText: 'ปิด',
  7. prevText: '« ย้อน',
  8. nextText: 'ถัดไป »',
  9. currentText: 'วันนี้',
  10. monthNames: ['มกราคม','กุมภาพันธ์','มีนาคม','เมษายน','พฤษภาคม','มิถุนายน',
  11. 'กรกฎาคม','สิงหาคม','กันยายน','ตุลาคม','พฤศจิกายน','ธันวาคม'],
  12. monthNamesShort: ['ม.ค.','ก.พ.','มี.ค.','เม.ย.','พ.ค.','มิ.ย.',
  13. 'ก.ค.','ส.ค.','ก.ย.','ต.ค.','พ.ย.','ธ.ค.'],
  14. dayNames: ['อาทิตย์','จันทร์','อังคาร','พุธ','พฤหัสบดี','ศุกร์','เสาร์'],
  15. dayNamesShort: ['อา.','จ.','อ.','พ.','พฤ.','ศ.','ส.'],
  16. dayNamesMin: ['อา.','จ.','อ.','พ.','พฤ.','ศ.','ส.'],
  17. weekHeader: 'Wk',
  18. dateFormat: 'dd/mm/yy',
  19. firstDay: 0,
  20. isRTL: false,
  21. showMonthAfterYear: false,
  22. yearSuffix: ''};
  23. $.datepicker.setDefaults($.datepicker.regional['th']);
  24. });
  25. /* @license-end */