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