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

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