corrade-nucleus-nucleons – Blame information for rev 38

Subversion Repositories:
Rev:
Rev Author Line No. Line
38 office 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
5 //! author : Oerd Cukalla : https://github.com/oerd
6  
7 import moment from '../moment';
8  
9 export default moment.defineLocale('sq', {
10 months : 'Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_Nëntor_Dhjetor'.split('_'),
11 monthsShort : 'Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_Nën_Dhj'.split('_'),
12 weekdays : 'E Diel_E Hënë_E Martë_E Mërkurë_E Enjte_E Premte_E Shtunë'.split('_'),
13 weekdaysShort : 'Die_Hën_Mar_Mër_Enj_Pre_Sht'.split('_'),
14 weekdaysMin : 'D_H_Ma_Më_E_P_Sh'.split('_'),
15 weekdaysParseExact : true,
16 meridiemParse: /PD|MD/,
17 isPM: function (input) {
18 return input.charAt(0) === 'M';
19 },
20 meridiem : function (hours, minutes, isLower) {
21 return hours < 12 ? 'PD' : 'MD';
22 },
23 longDateFormat : {
24 LT : 'HH:mm',
25 LTS : 'HH:mm:ss',
26 L : 'DD/MM/YYYY',
27 LL : 'D MMMM YYYY',
28 LLL : 'D MMMM YYYY HH:mm',
29 LLLL : 'dddd, D MMMM YYYY HH:mm'
30 },
31 calendar : {
32 sameDay : '[Sot në] LT',
33 nextDay : '[Nesër në] LT',
34 nextWeek : 'dddd [në] LT',
35 lastDay : '[Dje në] LT',
36 lastWeek : 'dddd [e kaluar në] LT',
37 sameElse : 'L'
38 },
39 relativeTime : {
40 future : 'në %s',
41 past : '%s më parë',
42 s : 'disa sekonda',
43 m : 'një minutë',
44 mm : '%d minuta',
45 h : 'një orë',
46 hh : '%d orë',
47 d : 'një ditë',
48 dd : '%d ditë',
49 M : 'një muaj',
50 MM : '%d muaj',
51 y : 'një vit',
52 yy : '%d vite'
53 },
54 dayOfMonthOrdinalParse: /\d{1,2}\./,
55 ordinal : '%d.',
56 week : {
57 dow : 1, // Monday is the first day of the week.
58 doy : 4 // The week that contains Jan 4th is the first week of the year.
59 }
60 });
61