uz-latn.js 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //! moment.js locale configuration
  2. //! locale : Uzbek Latin [uz-latn]
  3. //! author : Rasulbek Mirzayev : github.com/Rasulbeeek
  4. ;(function (global, factory) {
  5. typeof exports === 'object' && typeof module !== 'undefined'
  6. && typeof require === 'function' ? factory(require('../moment')) :
  7. typeof define === 'function' && define.amd ? define(['../moment'], factory) :
  8. factory(global.moment)
  9. }(this, (function (moment) { 'use strict';
  10. var uzLatn = moment.defineLocale('uz-latn', {
  11. months : 'Yanvar_Fevral_Mart_Aprel_May_Iyun_Iyul_Avgust_Sentabr_Oktabr_Noyabr_Dekabr'.split('_'),
  12. monthsShort : 'Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek'.split('_'),
  13. weekdays : 'Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba'.split('_'),
  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. 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 1st is the first week of the year.
  50. }
  51. });
  52. return uzLatn;
  53. })));