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 5.3KB

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