Ohm-Management - Projektarbeit B-ME
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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. monthsShort : 'Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek'.split('_'),
  8. weekdays : 'Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba'.split('_'),
  9. weekdaysShort : 'Yak_Dush_Sesh_Chor_Pay_Jum_Shan'.split('_'),
  10. weekdaysMin : 'Ya_Du_Se_Cho_Pa_Ju_Sha'.split('_'),
  11. longDateFormat : {
  12. LT : 'HH:mm',
  13. LTS : 'HH:mm:ss',
  14. L : 'DD/MM/YYYY',
  15. LL : 'D MMMM YYYY',
  16. LLL : 'D MMMM YYYY HH:mm',
  17. LLLL : 'D MMMM YYYY, dddd HH:mm'
  18. },
  19. calendar : {
  20. sameDay : '[Bugun soat] LT [da]',
  21. nextDay : '[Ertaga] LT [da]',
  22. nextWeek : 'dddd [kuni soat] LT [da]',
  23. lastDay : '[Kecha soat] LT [da]',
  24. lastWeek : '[O\'tgan] dddd [kuni soat] LT [da]',
  25. sameElse : 'L'
  26. },
  27. relativeTime : {
  28. future : 'Yaqin %s ichida',
  29. past : 'Bir necha %s oldin',
  30. s : 'soniya',
  31. ss : '%d soniya',
  32. m : 'bir daqiqa',
  33. mm : '%d daqiqa',
  34. h : 'bir soat',
  35. hh : '%d soat',
  36. d : 'bir kun',
  37. dd : '%d kun',
  38. M : 'bir oy',
  39. MM : '%d oy',
  40. y : 'bir yil',
  41. yy : '%d yil'
  42. },
  43. week : {
  44. dow : 1, // Monday is the first day of the week.
  45. doy : 7 // The week that contains Jan 7th is the first week of the year.
  46. }
  47. });