uz-latn.js 1.6 KB

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