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