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.

uz-latn.js 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. //! moment.js locale configuration
  2. //! locale : Uzbek Latin [uz-latn]
  3. //! author : Rasulbek Mirzayev : github.com/Rasulbeeek
  4. import moment from '../moment';
  5. export default moment.defineLocale('uz-latn', {
  6. months: 'Yanvar_Fevral_Mart_Aprel_May_Iyun_Iyul_Avgust_Sentabr_Oktabr_Noyabr_Dekabr'.split(
  7. '_'
  8. ),
  9. monthsShort: 'Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek'.split('_'),
  10. weekdays: 'Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba'.split(
  11. '_'
  12. ),
  13. weekdaysShort: 'Yak_Dush_Sesh_Chor_Pay_Jum_Shan'.split('_'),
  14. weekdaysMin: 'Ya_Du_Se_Cho_Pa_Ju_Sha'.split('_'),
  15. longDateFormat: {
  16. LT: 'HH:mm',
  17. LTS: 'HH:mm:ss',
  18. L: 'DD/MM/YYYY',
  19. LL: 'D MMMM YYYY',
  20. LLL: 'D MMMM YYYY HH:mm',
  21. LLLL: 'D MMMM YYYY, dddd HH:mm',
  22. },
  23. calendar: {
  24. sameDay: '[Bugun soat] LT [da]',
  25. nextDay: '[Ertaga] LT [da]',
  26. nextWeek: 'dddd [kuni soat] LT [da]',
  27. lastDay: '[Kecha soat] LT [da]',
  28. lastWeek: "[O'tgan] dddd [kuni soat] LT [da]",
  29. sameElse: 'L',
  30. },
  31. relativeTime: {
  32. future: 'Yaqin %s ichida',
  33. past: 'Bir necha %s oldin',
  34. s: 'soniya',
  35. ss: '%d soniya',
  36. m: 'bir daqiqa',
  37. mm: '%d daqiqa',
  38. h: 'bir soat',
  39. hh: '%d soat',
  40. d: 'bir kun',
  41. dd: '%d kun',
  42. M: 'bir oy',
  43. MM: '%d oy',
  44. y: 'bir yil',
  45. yy: '%d yil',
  46. },
  47. week: {
  48. dow: 1, // Monday is the first day of the week.
  49. doy: 7, // The week that contains Jan 7th is the first week of the year.
  50. },
  51. });