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.

si.js 3.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. //! moment.js locale configuration
  2. //! locale : Sinhalese [si]
  3. //! author : Sampath Sitinamaluwa : https://github.com/sampathsris
  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. /*jshint -W100*/
  12. var si = moment.defineLocale('si', {
  13. months: 'ජනවාරි_පෙබරවාරි_මාර්තු_අප්‍රේල්_මැයි_ජූනි_ජූලි_අගෝස්තු_සැප්තැම්බර්_ඔක්තෝබර්_නොවැම්බර්_දෙසැම්බර්'.split(
  14. '_'
  15. ),
  16. monthsShort: 'ජන_පෙබ_මාර්_අප්_මැයි_ජූනි_ජූලි_අගෝ_සැප්_ඔක්_නොවැ_දෙසැ'.split(
  17. '_'
  18. ),
  19. weekdays: 'ඉරිදා_සඳුදා_අඟහරුවාදා_බදාදා_බ්‍රහස්පතින්දා_සිකුරාදා_සෙනසුරාදා'.split(
  20. '_'
  21. ),
  22. weekdaysShort: 'ඉරි_සඳු_අඟ_බදා_බ්‍රහ_සිකු_සෙන'.split('_'),
  23. weekdaysMin: 'ඉ_ස_අ_බ_බ්‍ර_සි_සෙ'.split('_'),
  24. weekdaysParseExact: true,
  25. longDateFormat: {
  26. LT: 'a h:mm',
  27. LTS: 'a h:mm:ss',
  28. L: 'YYYY/MM/DD',
  29. LL: 'YYYY MMMM D',
  30. LLL: 'YYYY MMMM D, a h:mm',
  31. LLLL: 'YYYY MMMM D [වැනි] dddd, a h:mm:ss',
  32. },
  33. calendar: {
  34. sameDay: '[අද] LT[ට]',
  35. nextDay: '[හෙට] LT[ට]',
  36. nextWeek: 'dddd LT[ට]',
  37. lastDay: '[ඊයේ] LT[ට]',
  38. lastWeek: '[පසුගිය] dddd LT[ට]',
  39. sameElse: 'L',
  40. },
  41. relativeTime: {
  42. future: '%sකින්',
  43. past: '%sකට පෙර',
  44. s: 'තත්පර කිහිපය',
  45. ss: 'තත්පර %d',
  46. m: 'මිනිත්තුව',
  47. mm: 'මිනිත්තු %d',
  48. h: 'පැය',
  49. hh: 'පැය %d',
  50. d: 'දිනය',
  51. dd: 'දින %d',
  52. M: 'මාසය',
  53. MM: 'මාස %d',
  54. y: 'වසර',
  55. yy: 'වසර %d',
  56. },
  57. dayOfMonthOrdinalParse: /\d{1,2} වැනි/,
  58. ordinal: function (number) {
  59. return number + ' වැනි';
  60. },
  61. meridiemParse: /පෙර වරු|පස් වරු|පෙ.ව|ප.ව./,
  62. isPM: function (input) {
  63. return input === 'ප.ව.' || input === 'පස් වරු';
  64. },
  65. meridiem: function (hours, minutes, isLower) {
  66. if (hours > 11) {
  67. return isLower ? 'ප.ව.' : 'පස් වරු';
  68. } else {
  69. return isLower ? 'පෙ.ව.' : 'පෙර වරු';
  70. }
  71. },
  72. });
  73. return si;
  74. })));