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.

ne.js 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. //! moment.js locale configuration
  2. //! locale : Nepalese [ne]
  3. //! author : suvash : https://github.com/suvash
  4. import moment from '../moment';
  5. var symbolMap = {
  6. 1: '१',
  7. 2: '२',
  8. 3: '३',
  9. 4: '४',
  10. 5: '५',
  11. 6: '६',
  12. 7: '७',
  13. 8: '८',
  14. 9: '९',
  15. 0: '०',
  16. },
  17. numberMap = {
  18. '१': '1',
  19. '२': '2',
  20. '३': '3',
  21. '४': '4',
  22. '५': '5',
  23. '६': '6',
  24. '७': '7',
  25. '८': '8',
  26. '९': '9',
  27. '०': '0',
  28. };
  29. export default moment.defineLocale('ne', {
  30. months: 'जनवरी_फेब्रुवरी_मार्च_अप्रिल_मई_जुन_जुलाई_अगष्ट_सेप्टेम्बर_अक्टोबर_नोभेम्बर_डिसेम्बर'.split(
  31. '_'
  32. ),
  33. monthsShort: 'जन._फेब्रु._मार्च_अप्रि._मई_जुन_जुलाई._अग._सेप्ट._अक्टो._नोभे._डिसे.'.split(
  34. '_'
  35. ),
  36. monthsParseExact: true,
  37. weekdays: 'आइतबार_सोमबार_मङ्गलबार_बुधबार_बिहिबार_शुक्रबार_शनिबार'.split(
  38. '_'
  39. ),
  40. weekdaysShort: 'आइत._सोम._मङ्गल._बुध._बिहि._शुक्र._शनि.'.split('_'),
  41. weekdaysMin: 'आ._सो._मं._बु._बि._शु._श.'.split('_'),
  42. weekdaysParseExact: true,
  43. longDateFormat: {
  44. LT: 'Aको h:mm बजे',
  45. LTS: 'Aको h:mm:ss बजे',
  46. L: 'DD/MM/YYYY',
  47. LL: 'D MMMM YYYY',
  48. LLL: 'D MMMM YYYY, Aको h:mm बजे',
  49. LLLL: 'dddd, D MMMM YYYY, Aको h:mm बजे',
  50. },
  51. preparse: function (string) {
  52. return string.replace(/[१२३४५६७८९०]/g, function (match) {
  53. return numberMap[match];
  54. });
  55. },
  56. postformat: function (string) {
  57. return string.replace(/\d/g, function (match) {
  58. return symbolMap[match];
  59. });
  60. },
  61. meridiemParse: /राति|बिहान|दिउँसो|साँझ/,
  62. meridiemHour: function (hour, meridiem) {
  63. if (hour === 12) {
  64. hour = 0;
  65. }
  66. if (meridiem === 'राति') {
  67. return hour < 4 ? hour : hour + 12;
  68. } else if (meridiem === 'बिहान') {
  69. return hour;
  70. } else if (meridiem === 'दिउँसो') {
  71. return hour >= 10 ? hour : hour + 12;
  72. } else if (meridiem === 'साँझ') {
  73. return hour + 12;
  74. }
  75. },
  76. meridiem: function (hour, minute, isLower) {
  77. if (hour < 3) {
  78. return 'राति';
  79. } else if (hour < 12) {
  80. return 'बिहान';
  81. } else if (hour < 16) {
  82. return 'दिउँसो';
  83. } else if (hour < 20) {
  84. return 'साँझ';
  85. } else {
  86. return 'राति';
  87. }
  88. },
  89. calendar: {
  90. sameDay: '[आज] LT',
  91. nextDay: '[भोलि] LT',
  92. nextWeek: '[आउँदो] dddd[,] LT',
  93. lastDay: '[हिजो] LT',
  94. lastWeek: '[गएको] dddd[,] LT',
  95. sameElse: 'L',
  96. },
  97. relativeTime: {
  98. future: '%sमा',
  99. past: '%s अगाडि',
  100. s: 'केही क्षण',
  101. ss: '%d सेकेण्ड',
  102. m: 'एक मिनेट',
  103. mm: '%d मिनेट',
  104. h: 'एक घण्टा',
  105. hh: '%d घण्टा',
  106. d: 'एक दिन',
  107. dd: '%d दिन',
  108. M: 'एक महिना',
  109. MM: '%d महिना',
  110. y: 'एक बर्ष',
  111. yy: '%d बर्ष',
  112. },
  113. week: {
  114. dow: 0, // Sunday is the first day of the week.
  115. doy: 6, // The week that contains Jan 6th is the first week of the year.
  116. },
  117. });