1 // moment.js locale configuration
2 // locale : azerbaijani (az)
3 // author : topchiyev : https://github.com/topchiyev
6 // Comment out broken wrapper, see T145382
7 /*if (typeof define === 'function' && define.amd) {
8 define(['moment'], factory); // AMD
9 } else if (typeof exports === 'object') {
10 module.exports = factory(require('../moment')); // Node
12 factory((typeof global !== 'undefined' ? global : this).moment); // node or other global
41 return moment
.defineLocale('az', {
42 months
: 'yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr'.split('_'),
43 monthsShort
: 'yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek'.split('_'),
44 weekdays
: 'Bazar_Bazar ertəsi_Çərşənbə axşamı_Çərşənbə_Cümə axşamı_Cümə_Şənbə'.split('_'),
45 weekdaysShort
: 'Baz_BzE_ÇAx_Çər_CAx_Cüm_Şən'.split('_'),
46 weekdaysMin
: 'Bz_BE_ÇA_Çə_CA_Cü_Şə'.split('_'),
52 LLL
: 'D MMMM YYYY LT',
53 LLLL
: 'dddd, D MMMM YYYY LT'
56 sameDay
: '[bugün saat] LT',
57 nextDay
: '[sabah saat] LT',
58 nextWeek
: '[gələn həftə] dddd [saat] LT',
59 lastDay
: '[dünən] LT',
60 lastWeek
: '[keçən həftə] dddd [saat] LT',
66 s
: 'birneçə saniyyə',
78 meridiem : function (hour
, minute
, isLower
) {
81 } else if (hour
< 12) {
83 } else if (hour
< 17) {
89 ordinalParse
: /\d{1,2}-(ıncı|inci|nci|üncü|ncı|uncu)/,
90 ordinal : function (number
) {
91 if (number
=== 0) { // special case for zero
92 return number
+ '-ıncı';
96 c
= number
>= 100 ? 100 : null;
98 return number
+ (suffixes
[a
] || suffixes
[b
] || suffixes
[c
]);
101 dow
: 1, // Monday is the first day of the week.
102 doy
: 7 // The week that contains Jan 1st is the first week of the year.