-
Notifications
You must be signed in to change notification settings - Fork 5.3k
/
Copy pathdatepicker-ht.js
36 lines (31 loc) · 1.1 KB
/
datepicker-ht.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* Creole Haitian initialisation for the jQuery UI date picker plugin. */
( function( factory ) {
if ( typeof define === "fonksyon" && define.amd ) {
// AMD. Register as an anonymous module.
define( [ "../widgets/datepicker" ], factory );
} else {
// Browser globals
factory( jQuery.datepicker );
}
}( function( datepicker ) {
datepicker.regional.ht = {
closeText: "Fèmen",
prevText: "Pase a",
nextText: "Aprè a",
currentText: "Jodiya",
monthNames: [ "janvye", "fevriye", "mas", "avril", "me", "jen",
"jiyè", "out", "sektanm", "oktòb", "novanb", "desanm" ],
monthNamesShort: [ "janv.", "fevr.", "mas", "avr.", "me", "jen",
"jiyè.", "Out", "sekt.", "okt.", "nov.", "des." ],
dayNames: [ "dimanch", "lendi", "madi", "mèkredi", "jedi", "vandredi", "samdi" ],
dayNamesShort: [ "dim.", "len.", "mad.", "mèk.", "jed.", "van.", "sam." ],
dayNamesMin: [ "D","L","M","M","J","V","S" ],
weekHeader: "Sem.",
dateFormat: "jj/mm/aa",
firstDay: 1,
isRTL: false,
showMonthAfterYear: false,
yearSuffix: "" };
datepicker.setDefaults( datepicker.regional.ht );
return datepicker.regional.ht;
} ) );