| 1 |
/* Albanian initialisation for the jQuery UI date picker plugin. */ |
| 2 |
/* Written by Flakron Bytyqi (flakron@gmail.com). */ |
| 3 |
(function($) { |
| 4 |
$.datepick.regional['sq'] = { |
| 5 |
clearText: 'fshije', clearStatus: 'fshije datën aktuale', |
| 6 |
closeText: 'mbylle', closeStatus: 'mbylle pa ndryshime', |
| 7 |
prevText: '<mbrapa', prevStatus: 'trego muajin e fundit', |
| 8 |
prevBigText: '<<', prevBigStatus: '', |
| 9 |
nextText: 'Përpara>', nextStatus: 'trego muajin tjetër', |
| 10 |
nextBigText: '>>', nextBigStatus: '', |
| 11 |
currentText: 'sot', currentStatus: '', |
| 12 |
monthNames: ['Janar','Shkurt','Mars','Prill','Maj','Qershor', |
| 13 |
'Korrik','Gusht','Shtator','Tetor','Nëntor','Dhjetor'], |
| 14 |
monthNamesShort: ['Jan','Shk','Mar','Pri','Maj','Qer', |
| 15 |
'Kor','Gus','Sht','Tet','Nën','Dhj'], |
| 16 |
monthStatus: 'trego muajin tjetër', yearStatus: 'trego tjetër vit', |
| 17 |
weekHeader: 'Ja', weekStatus: 'Java e muajit', |
| 18 |
dayNames: ['E Diel','E Hënë','E Martë','E Mërkurë','E Enjte','E Premte','E Shtune'], |
| 19 |
dayNamesShort: ['Di','Hë','Ma','Më','En','Pr','Sh'], |
| 20 |
dayNamesMin: ['Di','Hë','Ma','Më','En','Pr','Sh'], |
| 21 |
dayStatus: 'Vendose DD si ditë të parë të javës', dateStatus: '\'Zgjedh\' D, M d', |
| 22 |
dateFormat: 'dd.mm.yy', firstDay: 1, |
| 23 |
initStatus: 'Zgjedhe një datë', isRTL: false, |
| 24 |
showMonthAfterYear: false, yearSuffix: ''}; |
| 25 |
$.datepick.setDefaults($.datepick.regional['sq']); |
| 26 |
})(jQuery); |
| 27 |
|