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.

121 lines
4.6 KiB

  1. //! moment.js locale configuration
  2. //! locale : nepali/nepalese
  3. //! author : suvash : https://github.com/suvash
  4. (function (global, factory) {
  5. typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
  6. typeof define === 'function' && define.amd ? define(['moment'], factory) :
  7. factory(global.moment)
  8. }(this, function (moment) { 'use strict';
  9. var symbolMap = {
  10. '1': '१',
  11. '2': '२',
  12. '3': '३',
  13. '4': '४',
  14. '5': '५',
  15. '6': '६',
  16. '7': '७',
  17. '8': '८',
  18. '9': '९',
  19. '0': '०'
  20. },
  21. numberMap = {
  22. '१': '1',
  23. '२': '2',
  24. '३': '3',
  25. '४': '4',
  26. '५': '5',
  27. '६': '6',
  28. '७': '7',
  29. '८': '8',
  30. '९': '9',
  31. '०': '0'
  32. };
  33. var ne = moment.defineLocale('ne', {
  34. months : 'जनवरी_फेब्रुवरी_मार्च_अप्रिल_मई_जुन_जुलाई_अगष्ट_सेप्टेम्बर_अक्टोबर_नोभेम्बर_डिसेम्बर'.split('_'),
  35. monthsShort : 'जन._फेब्रु._मार्च_अप्रि._मई_जुन_जुलाई._अग._सेप्ट._अक्टो._नोभे._डिसे.'.split('_'),
  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, LT',
  45. LLLL : 'dddd, D MMMM YYYY, LT'
  46. },
  47. preparse: function (string) {
  48. return string.replace(/[१२३४५६७८९०]/g, function (match) {
  49. return numberMap[match];
  50. });
  51. },
  52. postformat: function (string) {
  53. return string.replace(/\d/g, function (match) {
  54. return symbolMap[match];
  55. });
  56. },
  57. meridiemParse: /राती|बिहान|दिउँसो|बेलुका|साँझ|राती/,
  58. meridiemHour : function (hour, meridiem) {
  59. if (hour === 12) {
  60. hour = 0;
  61. }
  62. if (meridiem === 'राती') {
  63. return hour < 3 ? hour : hour + 12;
  64. } else if (meridiem === 'बिहान') {
  65. return hour;
  66. } else if (meridiem === 'दिउँसो') {
  67. return hour >= 10 ? hour : hour + 12;
  68. } else if (meridiem === 'बेलुका' || meridiem === 'साँझ') {
  69. return hour + 12;
  70. }
  71. },
  72. meridiem : function (hour, minute, isLower) {
  73. if (hour < 3) {
  74. return 'राती';
  75. } else if (hour < 10) {
  76. return 'बिहान';
  77. } else if (hour < 15) {
  78. return 'दिउँसो';
  79. } else if (hour < 18) {
  80. return 'बेलुका';
  81. } else if (hour < 20) {
  82. return 'साँझ';
  83. } else {
  84. return 'राती';
  85. }
  86. },
  87. calendar : {
  88. sameDay : '[आज] LT',
  89. nextDay : '[भोली] LT',
  90. nextWeek : '[आउँदो] dddd[,] LT',
  91. lastDay : '[हिजो] LT',
  92. lastWeek : '[गएको] dddd[,] LT',
  93. sameElse : 'L'
  94. },
  95. relativeTime : {
  96. future : '%sमा',
  97. past : '%s अगाडी',
  98. s : 'केही समय',
  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 : 1, // Monday is the first day of the week.
  112. doy : 7 // The week that contains Jan 1st is the first week of the year.
  113. }
  114. });
  115. return ne;
  116. }));