Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

th.js 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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: 'ม.ค._ก.พ._มี.ค._เม.ย._พ.ค._มิ.ย._ก.ค._ส.ค._ก.ย._ต.ค._พ.ย._ธ.ค.'.split(
  16. '_'
  17. ),
  18. monthsParseExact: true,
  19. weekdays: 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์'.split('_'),
  20. weekdaysShort: 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์'.split('_'), // yes, three characters difference
  21. weekdaysMin: 'อา._จ._อ._พ._พฤ._ศ._ส.'.split('_'),
  22. weekdaysParseExact: true,
  23. longDateFormat: {
  24. LT: 'H:mm',
  25. LTS: 'H:mm:ss',
  26. L: 'DD/MM/YYYY',
  27. LL: 'D MMMM YYYY',
  28. LLL: 'D MMMM YYYY เวลา H:mm',
  29. LLLL: 'วันddddที่ D MMMM YYYY เวลา H:mm',
  30. },
  31. meridiemParse: /ก่อนเที่ยง|หลังเที่ยง/,
  32. isPM: function (input) {
  33. return input === 'หลังเที่ยง';
  34. },
  35. meridiem: function (hour, minute, isLower) {
  36. if (hour < 12) {
  37. return 'ก่อนเที่ยง';
  38. } else {
  39. return 'หลังเที่ยง';
  40. }
  41. },
  42. calendar: {
  43. sameDay: '[วันนี้ เวลา] LT',
  44. nextDay: '[พรุ่งนี้ เวลา] LT',
  45. nextWeek: 'dddd[หน้า เวลา] LT',
  46. lastDay: '[เมื่อวานนี้ เวลา] LT',
  47. lastWeek: '[วัน]dddd[ที่แล้ว เวลา] LT',
  48. sameElse: 'L',
  49. },
  50. relativeTime: {
  51. future: 'อีก %s',
  52. past: '%sที่แล้ว',
  53. s: 'ไม่กี่วินาที',
  54. ss: '%d วินาที',
  55. m: '1 นาที',
  56. mm: '%d นาที',
  57. h: '1 ชั่วโมง',
  58. hh: '%d ชั่วโมง',
  59. d: '1 วัน',
  60. dd: '%d วัน',
  61. w: '1 สัปดาห์',
  62. ww: '%d สัปดาห์',
  63. M: '1 เดือน',
  64. MM: '%d เดือน',
  65. y: '1 ปี',
  66. yy: '%d ปี',
  67. },
  68. });
  69. return th;
  70. })));