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.

ml.js 3.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. //! moment.js locale configuration
  2. //! locale : Malayalam [ml]
  3. //! author : Floyd Pink : https://github.com/floydpink
  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 ml = moment.defineLocale('ml', {
  12. months: 'ജനുവരി_ഫെബ്രുവരി_മാർച്ച്_ഏപ്രിൽ_മേയ്_ജൂൺ_ജൂലൈ_ഓഗസ്റ്റ്_സെപ്റ്റംബർ_ഒക്ടോബർ_നവംബർ_ഡിസംബർ'.split(
  13. '_'
  14. ),
  15. monthsShort: 'ജനു._ഫെബ്രു._മാർ._ഏപ്രി._മേയ്_ജൂൺ_ജൂലൈ._ഓഗ._സെപ്റ്റ._ഒക്ടോ._നവം._ഡിസം.'.split(
  16. '_'
  17. ),
  18. monthsParseExact: true,
  19. weekdays: 'ഞായറാഴ്ച_തിങ്കളാഴ്ച_ചൊവ്വാഴ്ച_ബുധനാഴ്ച_വ്യാഴാഴ്ച_വെള്ളിയാഴ്ച_ശനിയാഴ്ച'.split(
  20. '_'
  21. ),
  22. weekdaysShort: 'ഞായർ_തിങ്കൾ_ചൊവ്വ_ബുധൻ_വ്യാഴം_വെള്ളി_ശനി'.split('_'),
  23. weekdaysMin: 'ഞാ_തി_ചൊ_ബു_വ്യാ_വെ_ശ'.split('_'),
  24. longDateFormat: {
  25. LT: 'A h:mm -നു',
  26. LTS: 'A h:mm:ss -നു',
  27. L: 'DD/MM/YYYY',
  28. LL: 'D MMMM YYYY',
  29. LLL: 'D MMMM YYYY, A h:mm -നു',
  30. LLLL: 'dddd, D MMMM YYYY, A h:mm -നു',
  31. },
  32. calendar: {
  33. sameDay: '[ഇന്ന്] LT',
  34. nextDay: '[നാളെ] LT',
  35. nextWeek: 'dddd, LT',
  36. lastDay: '[ഇന്നലെ] LT',
  37. lastWeek: '[കഴിഞ്ഞ] dddd, LT',
  38. sameElse: 'L',
  39. },
  40. relativeTime: {
  41. future: '%s കഴിഞ്ഞ്',
  42. past: '%s മുൻപ്',
  43. s: 'അൽപ നിമിഷങ്ങൾ',
  44. ss: '%d സെക്കൻഡ്',
  45. m: 'ഒരു മിനിറ്റ്',
  46. mm: '%d മിനിറ്റ്',
  47. h: 'ഒരു മണിക്കൂർ',
  48. hh: '%d മണിക്കൂർ',
  49. d: 'ഒരു ദിവസം',
  50. dd: '%d ദിവസം',
  51. M: 'ഒരു മാസം',
  52. MM: '%d മാസം',
  53. y: 'ഒരു വർഷം',
  54. yy: '%d വർഷം',
  55. },
  56. meridiemParse: /രാത്രി|രാവിലെ|ഉച്ച കഴിഞ്ഞ്|വൈകുന്നേരം|രാത്രി/i,
  57. meridiemHour: function (hour, meridiem) {
  58. if (hour === 12) {
  59. hour = 0;
  60. }
  61. if (
  62. (meridiem === 'രാത്രി' && hour >= 4) ||
  63. meridiem === 'ഉച്ച കഴിഞ്ഞ്' ||
  64. meridiem === 'വൈകുന്നേരം'
  65. ) {
  66. return hour + 12;
  67. } else {
  68. return hour;
  69. }
  70. },
  71. meridiem: function (hour, minute, isLower) {
  72. if (hour < 4) {
  73. return 'രാത്രി';
  74. } else if (hour < 12) {
  75. return 'രാവിലെ';
  76. } else if (hour < 17) {
  77. return 'ഉച്ച കഴിഞ്ഞ്';
  78. } else if (hour < 20) {
  79. return 'വൈകുന്നേരം';
  80. } else {
  81. return 'രാത്രി';
  82. }
  83. },
  84. });
  85. return ml;
  86. })));