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.

lo.js 2.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. //! moment.js locale configuration
  2. //! locale : Lao [lo]
  3. //! author : Ryan Hart : https://github.com/ryanhart2
  4. import moment from '../moment';
  5. export default moment.defineLocale('lo', {
  6. months: 'ມັງກອນ_ກຸມພາ_ມີນາ_ເມສາ_ພຶດສະພາ_ມິຖຸນາ_ກໍລະກົດ_ສິງຫາ_ກັນຍາ_ຕຸລາ_ພະຈິກ_ທັນວາ'.split(
  7. '_'
  8. ),
  9. monthsShort: 'ມັງກອນ_ກຸມພາ_ມີນາ_ເມສາ_ພຶດສະພາ_ມິຖຸນາ_ກໍລະກົດ_ສິງຫາ_ກັນຍາ_ຕຸລາ_ພະຈິກ_ທັນວາ'.split(
  10. '_'
  11. ),
  12. weekdays: 'ອາທິດ_ຈັນ_ອັງຄານ_ພຸດ_ພະຫັດ_ສຸກ_ເສົາ'.split('_'),
  13. weekdaysShort: 'ທິດ_ຈັນ_ອັງຄານ_ພຸດ_ພະຫັດ_ສຸກ_ເສົາ'.split('_'),
  14. weekdaysMin: 'ທ_ຈ_ອຄ_ພ_ພຫ_ສກ_ສ'.split('_'),
  15. weekdaysParseExact: true,
  16. longDateFormat: {
  17. LT: 'HH:mm',
  18. LTS: 'HH:mm:ss',
  19. L: 'DD/MM/YYYY',
  20. LL: 'D MMMM YYYY',
  21. LLL: 'D MMMM YYYY HH:mm',
  22. LLLL: 'ວັນdddd D MMMM YYYY HH:mm',
  23. },
  24. meridiemParse: /ຕອນເຊົ້າ|ຕອນແລງ/,
  25. isPM: function (input) {
  26. return input === 'ຕອນແລງ';
  27. },
  28. meridiem: function (hour, minute, isLower) {
  29. if (hour < 12) {
  30. return 'ຕອນເຊົ້າ';
  31. } else {
  32. return 'ຕອນແລງ';
  33. }
  34. },
  35. calendar: {
  36. sameDay: '[ມື້ນີ້ເວລາ] LT',
  37. nextDay: '[ມື້ອື່ນເວລາ] LT',
  38. nextWeek: '[ວັນ]dddd[ໜ້າເວລາ] LT',
  39. lastDay: '[ມື້ວານນີ້ເວລາ] LT',
  40. lastWeek: '[ວັນ]dddd[ແລ້ວນີ້ເວລາ] LT',
  41. sameElse: 'L',
  42. },
  43. relativeTime: {
  44. future: 'ອີກ %s',
  45. past: '%sຜ່ານມາ',
  46. s: 'ບໍ່ເທົ່າໃດວິນາທີ',
  47. ss: '%d ວິນາທີ',
  48. m: '1 ນາທີ',
  49. mm: '%d ນາທີ',
  50. h: '1 ຊົ່ວໂມງ',
  51. hh: '%d ຊົ່ວໂມງ',
  52. d: '1 ມື້',
  53. dd: '%d ມື້',
  54. M: '1 ເດືອນ',
  55. MM: '%d ເດືອນ',
  56. y: '1 ປີ',
  57. yy: '%d ປີ',
  58. },
  59. dayOfMonthOrdinalParse: /(ທີ່)\d{1,2}/,
  60. ordinal: function (number) {
  61. return 'ທີ່' + number;
  62. },
  63. });