Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

gom-deva.js 6.1KB

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