ms-my.js 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. //! moment.js locale configuration
  2. //! locale : Malay [ms-my]
  3. //! note : DEPRECATED, the correct one is [ms]
  4. //! author : Weldan Jamili : https://github.com/weldan
  5. ;(function (global, factory) {
  6. typeof exports === 'object' && typeof module !== 'undefined'
  7. && typeof require === 'function' ? factory(require('../moment')) :
  8. typeof define === 'function' && define.amd ? define(['../moment'], factory) :
  9. factory(global.moment)
  10. }(this, (function (moment) { 'use strict';
  11. var msMy = moment.defineLocale('ms-my', {
  12. months : 'Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember'.split('_'),
  13. monthsShort : 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis'.split('_'),
  14. weekdays : 'Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu'.split('_'),
  15. weekdaysShort : 'Ahd_Isn_Sel_Rab_Kha_Jum_Sab'.split('_'),
  16. weekdaysMin : 'Ah_Is_Sl_Rb_Km_Jm_Sb'.split('_'),
  17. longDateFormat : {
  18. LT : 'HH.mm',
  19. LTS : 'HH.mm.ss',
  20. L : 'DD/MM/YYYY',
  21. LL : 'D MMMM YYYY',
  22. LLL : 'D MMMM YYYY [pukul] HH.mm',
  23. LLLL : 'dddd, D MMMM YYYY [pukul] HH.mm'
  24. },
  25. meridiemParse: /pagi|tengahari|petang|malam/,
  26. meridiemHour: function (hour, meridiem) {
  27. if (hour === 12) {
  28. hour = 0;
  29. }
  30. if (meridiem === 'pagi') {
  31. return hour;
  32. } else if (meridiem === 'tengahari') {
  33. return hour >= 11 ? hour : hour + 12;
  34. } else if (meridiem === 'petang' || meridiem === 'malam') {
  35. return hour + 12;
  36. }
  37. },
  38. meridiem : function (hours, minutes, isLower) {
  39. if (hours < 11) {
  40. return 'pagi';
  41. } else if (hours < 15) {
  42. return 'tengahari';
  43. } else if (hours < 19) {
  44. return 'petang';
  45. } else {
  46. return 'malam';
  47. }
  48. },
  49. calendar : {
  50. sameDay : '[Hari ini pukul] LT',
  51. nextDay : '[Esok pukul] LT',
  52. nextWeek : 'dddd [pukul] LT',
  53. lastDay : '[Kelmarin pukul] LT',
  54. lastWeek : 'dddd [lepas pukul] LT',
  55. sameElse : 'L'
  56. },
  57. relativeTime : {
  58. future : 'dalam %s',
  59. past : '%s yang lepas',
  60. s : 'beberapa saat',
  61. m : 'seminit',
  62. mm : '%d minit',
  63. h : 'sejam',
  64. hh : '%d jam',
  65. d : 'sehari',
  66. dd : '%d hari',
  67. M : 'sebulan',
  68. MM : '%d bulan',
  69. y : 'setahun',
  70. yy : '%d tahun'
  71. },
  72. week : {
  73. dow : 1, // Monday is the first day of the week.
  74. doy : 7 // The week that contains Jan 1st is the first week of the year.
  75. }
  76. });
  77. return msMy;
  78. })));