1 // moment.js language configuration
2 // language : azerbaijani (az)
3 // author : topchiyev : https://github.com/topchiyev
6 if (typeof define
=== 'function' && define
.amd
) {
7 define(['moment'], factory
); // AMD
8 } else if (typeof exports
=== 'object') {
9 module
.exports
= factory(require('../moment')); // Node
11 factory(window
.moment
); // Browser global
40 return moment
.lang('az', {
41 months
: "yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr".split("_"),
42 monthsShort
: "yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek".split("_"),
43 weekdays
: "Bazar_Bazar ertəsi_Çərşənbə axşamı_Çərşənbə_Cümə axşamı_Cümə_Şənbə".split("_"),
44 weekdaysShort
: "Baz_BzE_ÇAx_Çər_CAx_Cüm_Şən".split("_"),
45 weekdaysMin
: "Bz_BE_ÇA_Çə_CA_Cü_Şə".split("_"),
50 LLL
: "D MMMM YYYY LT",
51 LLLL
: "dddd, D MMMM YYYY LT"
54 sameDay
: '[bugün saat] LT',
55 nextDay
: '[sabah saat] LT',
56 nextWeek
: '[gələn həftə] dddd [saat] LT',
57 lastDay
: '[dünən] LT',
58 lastWeek
: '[keçən həftə] dddd [saat] LT',
64 s
: "birneçə saniyyə",
76 meridiem : function (hour
, minute
, isLower
) {
79 } else if (hour
< 12) {
81 } else if (hour
< 17) {
87 ordinal : function (number
) {
88 if (number
=== 0) { // special case for zero
89 return number
+ "-ıncı";
93 c
= number
>= 100 ? 100 : null;
95 return number
+ (suffixes
[a
] || suffixes
[b
] || suffixes
[c
]);
98 dow
: 1, // Monday is the first day of the week.
99 doy
: 7 // The week that contains Jan 1st is the first week of the year.