gom-deva.js 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. //! moment.js locale configuration
  2. //! locale : Konkani Devanagari script [gom-deva]
  3. //! author : The Discoverer : https://github.com/WikiDiscoverer
  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. function processRelativeTime(number, withoutSuffix, key, isFuture) {
  12. var format = {
  13. s: ['थोडया सॅकंडांनी', 'थोडे सॅकंड'],
  14. ss: [number + ' सॅकंडांनी', number + ' सॅकंड'],
  15. m: ['एका मिणटान', 'एक मिनूट'],
  16. mm: [number + ' मिणटांनी', number + ' मिणटां'],
  17. h: ['एका वरान', 'एक वर'],
  18. hh: [number + ' वरांनी', number + ' वरां'],
  19. d: ['एका दिसान', 'एक दीस'],
  20. dd: [number + ' दिसांनी', number + ' दीस'],
  21. M: ['एका म्हयन्यान', 'एक म्हयनो'],
  22. MM: [number + ' म्हयन्यानी', number + ' म्हयने'],
  23. y: ['एका वर्सान', 'एक वर्स'],
  24. yy: [number + ' वर्सांनी', number + ' वर्सां'],
  25. };
  26. return isFuture ? format[key][0] : format[key][1];
  27. }
  28. var gomDeva = moment.defineLocale('gom-deva', {
  29. months: {
  30. standalone:
  31. 'जानेवारी_फेब्रुवारी_मार्च_एप्रील_मे_जून_जुलय_ऑगस्ट_सप्टेंबर_ऑक्टोबर_नोव्हेंबर_डिसेंबर'.split(
  32. '_'
  33. ),
  34. format: 'जानेवारीच्या_फेब्रुवारीच्या_मार्चाच्या_एप्रीलाच्या_मेयाच्या_जूनाच्या_जुलयाच्या_ऑगस्टाच्या_सप्टेंबराच्या_ऑक्टोबराच्या_नोव्हेंबराच्या_डिसेंबराच्या'.split(
  35. '_'
  36. ),
  37. isFormat: /MMMM(\s)+D[oD]?/,
  38. },
  39. monthsShort:
  40. 'जाने._फेब्रु._मार्च_एप्री._मे_जून_जुल._ऑग._सप्टें._ऑक्टो._नोव्हें._डिसें.'.split(
  41. '_'
  42. ),
  43. monthsParseExact: true,
  44. weekdays: 'आयतार_सोमार_मंगळार_बुधवार_बिरेस्तार_सुक्रार_शेनवार'.split('_'),
  45. weekdaysShort: 'आयत._सोम._मंगळ._बुध._ब्रेस्त._सुक्र._शेन.'.split('_'),
  46. weekdaysMin: 'आ_सो_मं_बु_ब्रे_सु_शे'.split('_'),
  47. weekdaysParseExact: true,
  48. longDateFormat: {
  49. LT: 'A h:mm [वाजतां]',
  50. LTS: 'A h:mm:ss [वाजतां]',
  51. L: 'DD-MM-YYYY',
  52. LL: 'D MMMM YYYY',
  53. LLL: 'D MMMM YYYY A h:mm [वाजतां]',
  54. LLLL: 'dddd, MMMM Do, YYYY, A h:mm [वाजतां]',
  55. llll: 'ddd, D MMM YYYY, A h:mm [वाजतां]',
  56. },
  57. calendar: {
  58. sameDay: '[आयज] LT',
  59. nextDay: '[फाल्यां] LT',
  60. nextWeek: '[फुडलो] dddd[,] LT',
  61. lastDay: '[काल] LT',
  62. lastWeek: '[फाटलो] dddd[,] LT',
  63. sameElse: 'L',
  64. },
  65. relativeTime: {
  66. future: '%s',
  67. past: '%s आदीं',
  68. s: processRelativeTime,
  69. ss: processRelativeTime,
  70. m: processRelativeTime,
  71. mm: processRelativeTime,
  72. h: processRelativeTime,
  73. hh: processRelativeTime,
  74. d: processRelativeTime,
  75. dd: processRelativeTime,
  76. M: processRelativeTime,
  77. MM: processRelativeTime,
  78. y: processRelativeTime,
  79. yy: processRelativeTime,
  80. },
  81. dayOfMonthOrdinalParse: /\d{1,2}(वेर)/,
  82. ordinal: function (number, period) {
  83. switch (period) {
  84. // the ordinal 'वेर' only applies to day of the month
  85. case 'D':
  86. return number + 'वेर';
  87. default:
  88. case 'M':
  89. case 'Q':
  90. case 'DDD':
  91. case 'd':
  92. case 'w':
  93. case 'W':
  94. return number;
  95. }
  96. },
  97. week: {
  98. dow: 0, // Sunday is the first day of the week
  99. doy: 3, // The week that contains Jan 4th is the first week of the year (7 + 0 - 4)
  100. },
  101. meridiemParse: /राती|सकाळीं|दनपारां|सांजे/,
  102. meridiemHour: function (hour, meridiem) {
  103. if (hour === 12) {
  104. hour = 0;
  105. }
  106. if (meridiem === 'राती') {
  107. return hour < 4 ? hour : hour + 12;
  108. } else if (meridiem === 'सकाळीं') {
  109. return hour;
  110. } else if (meridiem === 'दनपारां') {
  111. return hour > 12 ? hour : hour + 12;
  112. } else if (meridiem === 'सांजे') {
  113. return hour + 12;
  114. }
  115. },
  116. meridiem: function (hour, minute, isLower) {
  117. if (hour < 4) {
  118. return 'राती';
  119. } else if (hour < 12) {
  120. return 'सकाळीं';
  121. } else if (hour < 16) {
  122. return 'दनपारां';
  123. } else if (hour < 20) {
  124. return 'सांजे';
  125. } else {
  126. return 'राती';
  127. }
  128. },
  129. });
  130. return gomDeva;
  131. })));