Release note for Id83eda95
[mediawiki.git] / resources / lib / moment / locale / sq.js
blob415495aa159822a0577755587a78d7d944d02e5e
1 // moment.js locale configuration
2 // locale : Albanian (sq)
3 // author : Flakërim Ismani : https://github.com/flakerimi
4 // author: Menelion Elensúle: https://github.com/Oire (tests)
5 // author : Oerd Cukalla : https://github.com/oerd (fixes)
7 (function (factory) {
8     if (typeof define === 'function' && define.amd) {
9         define(['moment'], factory); // AMD
10     } else if (typeof exports === 'object') {
11         module.exports = factory(require('../moment')); // Node
12     } else {
13         factory((typeof global !== 'undefined' ? global : this).moment); // node or other global
14     }
15 }(function (moment) {
16     return moment.defineLocale('sq', {
17         months : 'Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_Nëntor_Dhjetor'.split('_'),
18         monthsShort : 'Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_Nën_Dhj'.split('_'),
19         weekdays : 'E Diel_E Hënë_E Martë_E Mërkurë_E Enjte_E Premte_E Shtunë'.split('_'),
20         weekdaysShort : 'Die_Hën_Mar_Mër_Enj_Pre_Sht'.split('_'),
21         weekdaysMin : 'D_H_Ma_Më_E_P_Sh'.split('_'),
22         meridiem : function (hours, minutes, isLower) {
23             return hours < 12 ? 'PD' : 'MD';
24         },
25         longDateFormat : {
26             LT : 'HH:mm',
27             LTS : 'LT:ss',
28             L : 'DD/MM/YYYY',
29             LL : 'D MMMM YYYY',
30             LLL : 'D MMMM YYYY LT',
31             LLLL : 'dddd, D MMMM YYYY LT'
32         },
33         calendar : {
34             sameDay : '[Sot në] LT',
35             nextDay : '[Nesër në] LT',
36             nextWeek : 'dddd [në] LT',
37             lastDay : '[Dje në] LT',
38             lastWeek : 'dddd [e kaluar në] LT',
39             sameElse : 'L'
40         },
41         relativeTime : {
42             future : 'në %s',
43             past : '%s më parë',
44             s : 'disa sekonda',
45             m : 'një minutë',
46             mm : '%d minuta',
47             h : 'një orë',
48             hh : '%d orë',
49             d : 'një ditë',
50             dd : '%d ditë',
51             M : 'një muaj',
52             MM : '%d muaj',
53             y : 'një vit',
54             yy : '%d vite'
55         },
56         ordinalParse: /\d{1,2}\./,
57         ordinal : '%d.',
58         week : {
59             dow : 1, // Monday is the first day of the week.
60             doy : 4  // The week that contains Jan 4th is the first week of the year.
61         }
62     });
63 }));