Made runJobs.php fully respect $wgJobBackoffThrottling
[lhc/web/wiklou.git] / resources / moment / lang / sq.js
1 // moment.js language configuration
2 // language : Albanian (sq)
3 // author : Flakërim Ismani : https://github.com/flakerimi
4 // author: Menelion Elensúle: https://github.com/Oire (tests)
5
6 (function (factory) {
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
11 } else {
12 factory(window.moment); // Browser global
13 }
14 }(function (moment) {
15 return moment.lang('sq', {
16 months : "Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_Nëntor_Dhjetor".split("_"),
17 monthsShort : "Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_Nën_Dhj".split("_"),
18 weekdays : "E Diel_E Hënë_E Marte_E Mërkure_E Enjte_E Premte_E Shtunë".split("_"),
19 weekdaysShort : "Die_Hën_Mar_Mër_Enj_Pre_Sht".split("_"),
20 weekdaysMin : "D_H_Ma_Më_E_P_Sh".split("_"),
21 longDateFormat : {
22 LT : "HH:mm",
23 L : "DD/MM/YYYY",
24 LL : "D MMMM YYYY",
25 LLL : "D MMMM YYYY LT",
26 LLLL : "dddd, D MMMM YYYY LT"
27 },
28 calendar : {
29 sameDay : '[Sot në] LT',
30 nextDay : '[Neser në] LT',
31 nextWeek : 'dddd [në] LT',
32 lastDay : '[Dje në] LT',
33 lastWeek : 'dddd [e kaluar në] LT',
34 sameElse : 'L'
35 },
36 relativeTime : {
37 future : "në %s",
38 past : "%s me parë",
39 s : "disa sekonda",
40 m : "një minut",
41 mm : "%d minuta",
42 h : "një orë",
43 hh : "%d orë",
44 d : "një ditë",
45 dd : "%d ditë",
46 M : "një muaj",
47 MM : "%d muaj",
48 y : "një vit",
49 yy : "%d vite"
50 },
51 ordinal : '%d.',
52 week : {
53 dow : 1, // Monday is the first day of the week.
54 doy : 4 // The week that contains Jan 4th is the first week of the year.
55 }
56 });
57 }));