[ Index ] |
PHP Cross Reference of DokuWiki |
[Summary view] [Print] [Text view]
1 /* Danish initialisation for the jQuery UI date picker plugin. */ 2 /* Written by Jan Christensen ( deletestuff@gmail.com). */ 3 ( function( factory ) { 4 if ( typeof define === "function" && define.amd ) { 5 6 // AMD. Register as an anonymous module. 7 define( [ "../widgets/datepicker" ], factory ); 8 } else { 9 10 // Browser globals 11 factory( jQuery.datepicker ); 12 } 13 }( function( datepicker ) { 14 15 datepicker.regional.da = { 16 closeText: "Luk", 17 prevText: "<Forrige", 18 nextText: "Næste>", 19 currentText: "Idag", 20 monthNames: [ "Januar","Februar","Marts","April","Maj","Juni", 21 "Juli","August","September","Oktober","November","December" ], 22 monthNamesShort: [ "Jan","Feb","Mar","Apr","Maj","Jun", 23 "Jul","Aug","Sep","Okt","Nov","Dec" ], 24 dayNames: [ "Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag" ], 25 dayNamesShort: [ "Søn","Man","Tir","Ons","Tor","Fre","Lør" ], 26 dayNamesMin: [ "Sø","Ma","Ti","On","To","Fr","Lø" ], 27 weekHeader: "Uge", 28 dateFormat: "dd-mm-yy", 29 firstDay: 1, 30 isRTL: false, 31 showMonthAfterYear: false, 32 yearSuffix: "" }; 33 datepicker.setDefaults( datepicker.regional.da ); 34 35 return datepicker.regional.da; 36 37 } ) );
title
Description
Body
title
Description
Body
title
Description
Body
title
Body