summaryrefslogtreecommitdiffstats
path: root/js/vendor/momentjs/locale/az.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/vendor/momentjs/locale/az.js')
-rw-r--r--js/vendor/momentjs/locale/az.js43
1 files changed, 20 insertions, 23 deletions
diff --git a/js/vendor/momentjs/locale/az.js b/js/vendor/momentjs/locale/az.js
index 7624feea7..5ff9b088c 100644
--- a/js/vendor/momentjs/locale/az.js
+++ b/js/vendor/momentjs/locale/az.js
@@ -1,42 +1,37 @@
-// moment.js locale configuration
-// locale : azerbaijani (az)
-// author : topchiyev : https://github.com/topchiyev
+//! moment.js locale configuration
+//! locale : azerbaijani (az)
+//! author : topchiyev : https://github.com/topchiyev
+
+;(function (global, factory) {
+ typeof exports === 'object' && typeof module !== 'undefined'
+ && typeof require === 'function' ? factory(require('../moment')) :
+ typeof define === 'function' && define.amd ? define(['moment'], factory) :
+ factory(global.moment)
+}(this, function (moment) { 'use strict';
+
-(function (factory) {
- if (typeof define === 'function' && define.amd) {
- define(['moment'], factory); // AMD
- } else if (typeof exports === 'object') {
- module.exports = factory(require('../moment')); // Node
- } else {
- factory((typeof global !== 'undefined' ? global : this).moment); // node or other global
- }
-}(function (moment) {
var suffixes = {
1: '-inci',
5: '-inci',
8: '-inci',
70: '-inci',
80: '-inci',
-
2: '-nci',
7: '-nci',
20: '-nci',
50: '-nci',
-
3: '-üncü',
4: '-üncü',
100: '-üncü',
-
6: '-ncı',
-
9: '-uncu',
10: '-uncu',
30: '-uncu',
-
60: '-ıncı',
90: '-ıncı'
};
- return moment.defineLocale('az', {
+
+ var az = moment.defineLocale('az', {
months : 'yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr'.split('_'),
monthsShort : 'yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek'.split('_'),
weekdays : 'Bazar_Bazar ertəsi_Çərşənbə axşamı_Çərşənbə_Cümə axşamı_Cümə_Şənbə'.split('_'),
@@ -44,11 +39,11 @@
weekdaysMin : 'Bz_BE_ÇA_Çə_CA_Cü_Şə'.split('_'),
longDateFormat : {
LT : 'HH:mm',
- LTS : 'LT:ss',
+ LTS : 'HH:mm:ss',
L : 'DD.MM.YYYY',
LL : 'D MMMM YYYY',
- LLL : 'D MMMM YYYY LT',
- LLLL : 'dddd, D MMMM YYYY LT'
+ LLL : 'D MMMM YYYY HH:mm',
+ LLLL : 'dddd, D MMMM YYYY HH:mm'
},
calendar : {
sameDay : '[bugün saat] LT',
@@ -96,7 +91,6 @@
var a = number % 10,
b = number % 100 - a,
c = number >= 100 ? 100 : null;
-
return number + (suffixes[a] || suffixes[b] || suffixes[c]);
},
week : {
@@ -104,4 +98,7 @@
doy : 7 // The week that contains Jan 1st is the first week of the year.
}
});
-}));
+
+ return az;
+
+})); \ No newline at end of file