th.js 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. //! moment.js locale configuration
  2. //! locale : Thai [th]
  3. //! author : Kridsada Thanabulpong : https://github.com/sirn
  4. ;(function (global, factory) {
  5. typeof exports === 'object' && typeof module !== 'undefined'
  6. && typeof require === 'function' ? factory(require('../moment')) :
  7. typeof define === 'function' && define.amd ? define(['../moment'], factory) :
  8. factory(global.moment)
  9. }(this, (function (moment) { 'use strict';
  10. //! moment.js locale configuration
  11. var th = moment.defineLocale('th', {
  12. months: 'มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม'.split(
  13. '_'
  14. ),
  15. monthsShort:
  16. 'ม.ค._ก.พ._มี.ค._เม.ย._พ.ค._มิ.ย._ก.ค._ส.ค._ก.ย._ต.ค._พ.ย._ธ.ค.'.split(
  17. '_'
  18. ),
  19. monthsParseExact: true,
  20. weekdays: 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์'.split('_'),
  21. weekdaysShort: 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์'.split('_'), // yes, three characters difference
  22. weekdaysMin: 'อา._จ._อ._พ._พฤ._ศ._ส.'.split('_'),
  23. weekdaysParseExact: true,
  24. longDateFormat: {
  25. LT: 'H:mm',
  26. LTS: 'H:mm:ss',
  27. L: 'DD/MM/YYYY',
  28. LL: 'D MMMM YYYY',
  29. LLL: 'D MMMM YYYY เวลา H:mm',
  30. LLLL: 'วันddddที่ D MMMM YYYY เวลา H:mm',
  31. },
  32. meridiemParse: /ก่อนเที่ยง|หลังเที่ยง/,
  33. isPM: function (input) {
  34. return input === 'หลังเที่ยง';
  35. },
  36. meridiem: function (hour, minute, isLower) {
  37. if (hour < 12) {
  38. return 'ก่อนเที่ยง';
  39. } else {
  40. return 'หลังเที่ยง';
  41. }
  42. },
  43. calendar: {
  44. sameDay: '[วันนี้ เวลา] LT',
  45. nextDay: '[พรุ่งนี้ เวลา] LT',
  46. nextWeek: 'dddd[หน้า เวลา] LT',
  47. lastDay: '[เมื่อวานนี้ เวลา] LT',
  48. lastWeek: '[วัน]dddd[ที่แล้ว เวลา] LT',
  49. sameElse: 'L',
  50. },
  51. relativeTime: {
  52. future: 'อีก %s',
  53. past: '%sที่แล้ว',
  54. s: 'ไม่กี่วินาที',
  55. ss: '%d วินาที',
  56. m: '1 นาที',
  57. mm: '%d นาที',
  58. h: '1 ชั่วโมง',
  59. hh: '%d ชั่วโมง',
  60. d: '1 วัน',
  61. dd: '%d วัน',
  62. w: '1 สัปดาห์',
  63. ww: '%d สัปดาห์',
  64. M: '1 เดือน',
  65. MM: '%d เดือน',
  66. y: '1 ปี',
  67. yy: '%d ปี',
  68. },
  69. });
  70. return th;
  71. })));