Brought in another asset for Ray's eye form: moment
[openemr.git] / public / assets / moment-2-13-0 / locale / sq.js
blob68dbc1461aa9451fdaa20c0e134dad4faf18a81f
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 (global, factory) {
8    typeof exports === 'object' && typeof module !== 'undefined'
9        && typeof require === 'function' ? factory(require('../moment')) :
10    typeof define === 'function' && define.amd ? define(['moment'], factory) :
11    factory(global.moment)
12 }(this, function (moment) { 'use strict';
15     var sq = moment.defineLocale('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 Martë_E Mërkurë_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         weekdaysParseExact : true,
22         meridiemParse: /PD|MD/,
23         isPM: function (input) {
24             return input.charAt(0) === 'M';
25         },
26         meridiem : function (hours, minutes, isLower) {
27             return hours < 12 ? 'PD' : 'MD';
28         },
29         longDateFormat : {
30             LT : 'HH:mm',
31             LTS : 'HH:mm:ss',
32             L : 'DD/MM/YYYY',
33             LL : 'D MMMM YYYY',
34             LLL : 'D MMMM YYYY HH:mm',
35             LLLL : 'dddd, D MMMM YYYY HH:mm'
36         },
37         calendar : {
38             sameDay : '[Sot në] LT',
39             nextDay : '[Nesër në] LT',
40             nextWeek : 'dddd [në] LT',
41             lastDay : '[Dje në] LT',
42             lastWeek : 'dddd [e kaluar në] LT',
43             sameElse : 'L'
44         },
45         relativeTime : {
46             future : 'në %s',
47             past : '%s më parë',
48             s : 'disa sekonda',
49             m : 'një minutë',
50             mm : '%d minuta',
51             h : 'një orë',
52             hh : '%d orë',
53             d : 'një ditë',
54             dd : '%d ditë',
55             M : 'një muaj',
56             MM : '%d muaj',
57             y : 'një vit',
58             yy : '%d vite'
59         },
60         ordinalParse: /\d{1,2}\./,
61         ordinal : '%d.',
62         week : {
63             dow : 1, // Monday is the first day of the week.
64             doy : 4  // The week that contains Jan 4th is the first week of the year.
65         }
66     });
68     return sq;
70 }));