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.

119 lines
4.5 KiB

  1. //! moment.js locale configuration
  2. //! locale : Marathi (mr)
  3. //! author : Harshad Kale : https://github.com/kalehv
  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 mr = moment.defineLocale('mr', {
  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. 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. m: 'एक मिनिट',
  60. mm: '%d मिनिटे',
  61. h : 'एक तास',
  62. hh : '%d तास',
  63. d : 'एक दिवस',
  64. dd : '%d दिवस',
  65. M : 'एक महिना',
  66. MM : '%d महिने',
  67. y : 'एक वर्ष',
  68. yy : '%d वर्षे'
  69. },
  70. preparse: function (string) {
  71. return string.replace(/[१२३४५६७८९०]/g, function (match) {
  72. return numberMap[match];
  73. });
  74. },
  75. postformat: function (string) {
  76. return string.replace(/\d/g, function (match) {
  77. return symbolMap[match];
  78. });
  79. },
  80. meridiemParse: /रात्री|सकाळी|दुपारी|सायंकाळी/,
  81. meridiemHour : function (hour, meridiem) {
  82. if (hour === 12) {
  83. hour = 0;
  84. }
  85. if (meridiem === 'रात्री') {
  86. return hour < 4 ? hour : hour + 12;
  87. } else if (meridiem === 'सकाळी') {
  88. return hour;
  89. } else if (meridiem === 'दुपारी') {
  90. return hour >= 10 ? hour : hour + 12;
  91. } else if (meridiem === 'सायंकाळी') {
  92. return hour + 12;
  93. }
  94. },
  95. meridiem: function (hour, minute, isLower) {
  96. if (hour < 4) {
  97. return 'रात्री';
  98. } else if (hour < 10) {
  99. return 'सकाळी';
  100. } else if (hour < 17) {
  101. return 'दुपारी';
  102. } else if (hour < 20) {
  103. return 'सायंकाळी';
  104. } else {
  105. return 'रात्री';
  106. }
  107. },
  108. week : {
  109. dow : 0, // Sunday is the first day of the week.
  110. doy : 6 // The week that contains Jan 1st is the first week of the year.
  111. }
  112. });
  113. return mr;
  114. }));