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.

ms.js 2.8KB

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