Localisation updates from https://translatewiki.net.
[mediawiki.git] / resources / lib / moment / locale / uz-latn.js
blob93403ec63da47ade1d18ee9886df73b50ed4e91e
1 //! moment.js locale configuration
2 //! locale : Uzbek Latin [uz-latn]
3 //! author : Rasulbek Mirzayev : github.com/Rasulbeeek
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';
12     //! moment.js locale configuration
14     var uzLatn = moment.defineLocale('uz-latn', {
15         months: 'Yanvar_Fevral_Mart_Aprel_May_Iyun_Iyul_Avgust_Sentabr_Oktabr_Noyabr_Dekabr'.split(
16             '_'
17         ),
18         monthsShort: 'Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek'.split('_'),
19         weekdays: 'Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba'.split(
20             '_'
21         ),
22         weekdaysShort: 'Yak_Dush_Sesh_Chor_Pay_Jum_Shan'.split('_'),
23         weekdaysMin: 'Ya_Du_Se_Cho_Pa_Ju_Sha'.split('_'),
24         longDateFormat: {
25             LT: 'HH:mm',
26             LTS: 'HH:mm:ss',
27             L: 'DD/MM/YYYY',
28             LL: 'D MMMM YYYY',
29             LLL: 'D MMMM YYYY HH:mm',
30             LLLL: 'D MMMM YYYY, dddd HH:mm',
31         },
32         calendar: {
33             sameDay: '[Bugun soat] LT [da]',
34             nextDay: '[Ertaga] LT [da]',
35             nextWeek: 'dddd [kuni soat] LT [da]',
36             lastDay: '[Kecha soat] LT [da]',
37             lastWeek: "[O'tgan] dddd [kuni soat] LT [da]",
38             sameElse: 'L',
39         },
40         relativeTime: {
41             future: 'Yaqin %s ichida',
42             past: 'Bir necha %s oldin',
43             s: 'soniya',
44             ss: '%d soniya',
45             m: 'bir daqiqa',
46             mm: '%d daqiqa',
47             h: 'bir soat',
48             hh: '%d soat',
49             d: 'bir kun',
50             dd: '%d kun',
51             M: 'bir oy',
52             MM: '%d oy',
53             y: 'bir yil',
54             yy: '%d yil',
55         },
56         week: {
57             dow: 1, // Monday is the first day of the week.
58             doy: 7, // The week that contains Jan 7th is the first week of the year.
59         },
60     });
62     return uzLatn;
64 })));