Ohm-Management - Projektarbeit B-ME
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.

hi.js 4.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. //! moment.js locale configuration
  2. ;(function (global, factory) {
  3. typeof exports === 'object' && typeof module !== 'undefined'
  4. && typeof require === 'function' ? factory(require('../moment')) :
  5. typeof define === 'function' && define.amd ? define(['../moment'], factory) :
  6. factory(global.moment)
  7. }(this, (function (moment) { 'use strict';
  8. var symbolMap = {
  9. '1': '१',
  10. '2': '२',
  11. '3': '३',
  12. '4': '४',
  13. '5': '५',
  14. '6': '६',
  15. '7': '७',
  16. '8': '८',
  17. '9': '९',
  18. '0': '०'
  19. },
  20. numberMap = {
  21. '१': '1',
  22. '२': '2',
  23. '३': '3',
  24. '४': '4',
  25. '५': '5',
  26. '६': '6',
  27. '७': '7',
  28. '८': '8',
  29. '९': '9',
  30. '०': '0'
  31. };
  32. var hi = moment.defineLocale('hi', {
  33. months : 'जनवरी_फ़रवरी_मार्च_अप्रैल_मई_जून_जुलाई_अगस्त_सितम्बर_अक्टूबर_नवम्बर_दिसम्बर'.split('_'),
  34. monthsShort : 'जन._फ़र._मार्च_अप्रै._मई_जून_जुल._अग._सित._अक्टू._नव._दिस.'.split('_'),
  35. monthsParseExact: true,
  36. weekdays : 'रविवार_सोमवार_मंगलवार_बुधवार_गुरूवार_शुक्रवार_शनिवार'.split('_'),
  37. weekdaysShort : 'रवि_सोम_मंगल_बुध_गुरू_शुक्र_शनि'.split('_'),
  38. weekdaysMin : 'र_सो_मं_बु_गु_शु_श'.split('_'),
  39. longDateFormat : {
  40. LT : 'A h:mm बजे',
  41. LTS : 'A h:mm:ss बजे',
  42. L : 'DD/MM/YYYY',
  43. LL : 'D MMMM YYYY',
  44. LLL : 'D MMMM YYYY, A h:mm बजे',
  45. LLLL : 'dddd, D MMMM YYYY, A h:mm बजे'
  46. },
  47. calendar : {
  48. sameDay : '[आज] LT',
  49. nextDay : '[कल] LT',
  50. nextWeek : 'dddd, LT',
  51. lastDay : '[कल] LT',
  52. lastWeek : '[पिछले] dddd, LT',
  53. sameElse : 'L'
  54. },
  55. relativeTime : {
  56. future : '%s में',
  57. past : '%s पहले',
  58. s : 'कुछ ही क्षण',
  59. ss : '%d सेकंड',
  60. m : 'एक मिनट',
  61. mm : '%d मिनट',
  62. h : 'एक घंटा',
  63. hh : '%d घंटे',
  64. d : 'एक दिन',
  65. dd : '%d दिन',
  66. M : 'एक महीने',
  67. MM : '%d महीने',
  68. y : 'एक वर्ष',
  69. yy : '%d वर्ष'
  70. },
  71. preparse: function (string) {
  72. return string.replace(/[१२३४५६७८९०]/g, function (match) {
  73. return numberMap[match];
  74. });
  75. },
  76. postformat: function (string) {
  77. return string.replace(/\d/g, function (match) {
  78. return symbolMap[match];
  79. });
  80. },
  81. // Hindi notation for meridiems are quite fuzzy in practice. While there exists
  82. // a rigid notion of a 'Pahar' it is not used as rigidly in modern Hindi.
  83. meridiemParse: /रात|सुबह|दोपहर|शाम/,
  84. meridiemHour : function (hour, meridiem) {
  85. if (hour === 12) {
  86. hour = 0;
  87. }
  88. if (meridiem === 'रात') {
  89. return hour < 4 ? hour : hour + 12;
  90. } else if (meridiem === 'सुबह') {
  91. return hour;
  92. } else if (meridiem === 'दोपहर') {
  93. return hour >= 10 ? hour : hour + 12;
  94. } else if (meridiem === 'शाम') {
  95. return hour + 12;
  96. }
  97. },
  98. meridiem : function (hour, minute, isLower) {
  99. if (hour < 4) {
  100. return 'रात';
  101. } else if (hour < 10) {
  102. return 'सुबह';
  103. } else if (hour < 17) {
  104. return 'दोपहर';
  105. } else if (hour < 20) {
  106. return 'शाम';
  107. } else {
  108. return 'रात';
  109. }
  110. },
  111. week : {
  112. dow : 0, // Sunday is the first day of the week.
  113. doy : 6 // The week that contains Jan 6th is the first week of the year.
  114. }
  115. });
  116. return hi;
  117. })));