LaravelTest
112 строк · 3.5 Кб
1//! moment.js locale configuration
2//! locale : Azerbaijani [az]
3//! author : topchiyev : https://github.com/topchiyev
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 suffixes = {151: '-inci',165: '-inci',178: '-inci',1870: '-inci',1980: '-inci',202: '-nci',217: '-nci',2220: '-nci',2350: '-nci',243: '-üncü',254: '-üncü',26100: '-üncü',276: '-ncı',289: '-uncu',2910: '-uncu',3030: '-uncu',3160: '-ıncı',3290: '-ıncı',33};34
35var az = moment.defineLocale('az', {36months: 'yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr'.split(37'_'38),39monthsShort: 'yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek'.split('_'),40weekdays: 'Bazar_Bazar ertəsi_Çərşənbə axşamı_Çərşənbə_Cümə axşamı_Cümə_Şənbə'.split(41'_'42),43weekdaysShort: 'Baz_BzE_ÇAx_Çər_CAx_Cüm_Şən'.split('_'),44weekdaysMin: 'Bz_BE_ÇA_Çə_CA_Cü_Şə'.split('_'),45weekdaysParseExact: true,46longDateFormat: {47LT: 'HH:mm',48LTS: 'HH:mm:ss',49L: 'DD.MM.YYYY',50LL: 'D MMMM YYYY',51LLL: 'D MMMM YYYY HH:mm',52LLLL: 'dddd, D MMMM YYYY HH:mm',53},54calendar: {55sameDay: '[bugün saat] LT',56nextDay: '[sabah saat] LT',57nextWeek: '[gələn həftə] dddd [saat] LT',58lastDay: '[dünən] LT',59lastWeek: '[keçən həftə] dddd [saat] LT',60sameElse: 'L',61},62relativeTime: {63future: '%s sonra',64past: '%s əvvəl',65s: 'bir neçə saniyə',66ss: '%d saniyə',67m: 'bir dəqiqə',68mm: '%d dəqiqə',69h: 'bir saat',70hh: '%d saat',71d: 'bir gün',72dd: '%d gün',73M: 'bir ay',74MM: '%d ay',75y: 'bir il',76yy: '%d il',77},78meridiemParse: /gecə|səhər|gündüz|axşam/,79isPM: function (input) {80return /^(gündüz|axşam)$/.test(input);81},82meridiem: function (hour, minute, isLower) {83if (hour < 4) {84return 'gecə';85} else if (hour < 12) {86return 'səhər';87} else if (hour < 17) {88return 'gündüz';89} else {90return 'axşam';91}92},93dayOfMonthOrdinalParse: /\d{1,2}-(ıncı|inci|nci|üncü|ncı|uncu)/,94ordinal: function (number) {95if (number === 0) {96// special case for zero97return number + '-ıncı';98}99var a = number % 10,100b = (number % 100) - a,101c = number >= 100 ? 100 : null;102return number + (suffixes[a] || suffixes[b] || suffixes[c]);103},104week: {105dow: 1, // Monday is the first day of the week.106doy: 7, // The week that contains Jan 7th is the first week of the year.107},108});109
110return az;111
112})));113