1
|
/* Albanian initialisation for the jQuery UI date picker plugin. */
|
2
|
/* Written by Besnik Bleta. */
|
3
|
(function( factory ) {
|
4
|
if ( typeof define === "function" && define.amd ) {
|
5
|
|
6
|
// AMD. Register as an anonymous module.
|
7
|
define([ "../datepicker" ], factory );
|
8
|
} else {
|
9
|
|
10
|
// Browser globals
|
11
|
factory( jQuery.datepicker );
|
12
|
}
|
13
|
}(function( datepicker ) {
|
14
|
|
15
|
datepicker.regional['sq'] = {
|
16
|
closeText: 'U bë',
|
17
|
prevText: 'E mëpar.',
|
18
|
nextText: 'Pasuesja',
|
19
|
currentText: 'Sot',
|
20
|
monthNames: ['Janar','Shkurt','Mars','Prill','Maj','Qershor',
|
21
|
'Korrik','Gusht','Shtator','Tetor','Nëntor','Dhjetor'],
|
22
|
monthNamesShort: ['Jan', 'Shk', 'Mar', 'Pri', 'Maj', 'Qer',
|
23
|
'Kor', 'Gus', 'Sht', 'Tet', 'Nën', 'Dhj'],
|
24
|
dayNames: ['E dielë', 'E hënë', 'E martë', 'E mërkurë', 'E enjte', 'E premte', 'E shtunë'],
|
25
|
dayNamesShort: ['Die', 'Hën', 'Mar', 'Mër', 'Enj', 'Pre', 'Sht'],
|
26
|
dayNamesMin: ['Di','Hë','Ma','Më','En','Pr','Sh'],
|
27
|
weekHeader: 'Jv',
|
28
|
dateFormat: 'dd.mm.yy',
|
29
|
firstDay: 1,
|
30
|
isRTL: false,
|
31
|
showMonthAfterYear: false,
|
32
|
yearSuffix: ''};
|
33
|
datepicker.setDefaults(datepicker.regional['sq']);
|
34
|
|
35
|
return datepicker.regional['sq'];
|
36
|
|
37
|
}));
|