1 //! moment.js locale configuration
2 //! locale : Azerbaijani [az]
3 //! author : topchiyev : https://github.com/topchiyev
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) :
10 }(this, (function (moment) { 'use strict';
12 //! moment.js locale configuration
35 var az = moment.defineLocale('az', {
36 months: 'yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr'.split(
39 monthsShort: 'yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek'.split('_'),
40 weekdays: 'Bazar_Bazar ertəsi_Çərşənbə axşamı_Çərşənbə_Cümə axşamı_Cümə_Şənbə'.split(
43 weekdaysShort: 'Baz_BzE_ÇAx_Çər_CAx_Cüm_Şən'.split('_'),
44 weekdaysMin: 'Bz_BE_ÇA_Çə_CA_Cü_Şə'.split('_'),
45 weekdaysParseExact: true,
51 LLL: 'D MMMM YYYY HH:mm',
52 LLLL: 'dddd, D MMMM YYYY HH:mm',
55 sameDay: '[bugün saat] LT',
56 nextDay: '[sabah saat] LT',
57 nextWeek: '[gələn həftə] dddd [saat] LT',
58 lastDay: '[dünən] LT',
59 lastWeek: '[keçən həftə] dddd [saat] LT',
78 meridiemParse: /gecə|səhər|gündüz|axşam/,
79 isPM: function (input) {
80 return /^(gündüz|axşam)$/.test(input);
82 meridiem: function (hour, minute, isLower) {
85 } else if (hour < 12) {
87 } else if (hour < 17) {
93 dayOfMonthOrdinalParse: /\d{1,2}-(ıncı|inci|nci|üncü|ncı|uncu)/,
94 ordinal: function (number) {
96 // special case for zero
97 return number + '-ıncı';
100 b = (number % 100) - a,
101 c = number >= 100 ? 100 : null;
102 return number + (suffixes[a] || suffixes[b] || suffixes[c]);
105 dow: 1, // Monday is the first day of the week.
106 doy: 7, // The week that contains Jan 7th is the first week of the year.