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 2.0KB

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