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.

ne.js 4.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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 ne = moment.defineLocale('ne', {
  33. months : 'जनवरी_फेब्रुवरी_मार्च_अप्रिल_मई_जुन_जुलाई_अगष्ट_सेप्टेम्बर_अक्टोबर_नोभेम्बर_डिसेम्बर'.split('_'),
  34. monthsShort : 'जन._फेब्रु._मार्च_अप्रि._मई_जुन_जुलाई._अग._सेप्ट._अक्टो._नोभे._डिसे.'.split('_'),
  35. monthsParseExact : true,
  36. weekdays : 'आइतबार_सोमबार_मङ्गलबार_बुधबार_बिहिबार_शुक्रबार_शनिबार'.split('_'),
  37. weekdaysShort : 'आइत._सोम._मङ्गल._बुध._बिहि._शुक्र._शनि.'.split('_'),
  38. weekdaysMin : 'आ._सो._मं._बु._बि._शु._श.'.split('_'),
  39. weekdaysParseExact : true,
  40. longDateFormat : {
  41. LT : 'Aको h:mm बजे',
  42. LTS : 'Aको h:mm:ss बजे',
  43. L : 'DD/MM/YYYY',
  44. LL : 'D MMMM YYYY',
  45. LLL : 'D MMMM YYYY, Aको h:mm बजे',
  46. LLLL : 'dddd, D MMMM YYYY, Aको h:mm बजे'
  47. },
  48. preparse: function (string) {
  49. return string.replace(/[१२३४५६७८९०]/g, function (match) {
  50. return numberMap[match];
  51. });
  52. },
  53. postformat: function (string) {
  54. return string.replace(/\d/g, function (match) {
  55. return symbolMap[match];
  56. });
  57. },
  58. meridiemParse: /राति|बिहान|दिउँसो|साँझ/,
  59. meridiemHour : function (hour, meridiem) {
  60. if (hour === 12) {
  61. hour = 0;
  62. }
  63. if (meridiem === 'राति') {
  64. return hour < 4 ? hour : hour + 12;
  65. } else if (meridiem === 'बिहान') {
  66. return hour;
  67. } else if (meridiem === 'दिउँसो') {
  68. return hour >= 10 ? hour : hour + 12;
  69. } else if (meridiem === 'साँझ') {
  70. return hour + 12;
  71. }
  72. },
  73. meridiem : function (hour, minute, isLower) {
  74. if (hour < 3) {
  75. return 'राति';
  76. } else if (hour < 12) {
  77. return 'बिहान';
  78. } else if (hour < 16) {
  79. return 'दिउँसो';
  80. } else if (hour < 20) {
  81. return 'साँझ';
  82. } else {
  83. return 'राति';
  84. }
  85. },
  86. calendar : {
  87. sameDay : '[आज] LT',
  88. nextDay : '[भोलि] LT',
  89. nextWeek : '[आउँदो] dddd[,] LT',
  90. lastDay : '[हिजो] LT',
  91. lastWeek : '[गएको] dddd[,] LT',
  92. sameElse : 'L'
  93. },
  94. relativeTime : {
  95. future : '%sमा',
  96. past : '%s अगाडि',
  97. s : 'केही क्षण',
  98. ss : '%d सेकेण्ड',
  99. m : 'एक मिनेट',
  100. mm : '%d मिनेट',
  101. h : 'एक घण्टा',
  102. hh : '%d घण्टा',
  103. d : 'एक दिन',
  104. dd : '%d दिन',
  105. M : 'एक महिना',
  106. MM : '%d महिना',
  107. y : 'एक बर्ष',
  108. yy : '%d बर्ष'
  109. },
  110. week : {
  111. dow : 0, // Sunday is the first day of the week.
  112. doy : 6 // The week that contains Jan 6th is the first week of the year.
  113. }
  114. });
  115. return ne;
  116. })));