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