[ Index ] |
PHP Cross Reference of DokuWiki |
[Summary view] [Print] [Text view]
1 /* Slovak initialisation for the jQuery UI date picker plugin. */ 2 /* Written by Vojtech Rinik (vojto@hmm.sk). */ 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.sk = { 16 closeText: "Zavrieť", 17 prevText: "<Predchádzajúci", 18 nextText: "Nasledujúci>", 19 currentText: "Dnes", 20 monthNames: [ "január","február","marec","apríl","máj","jún", 21 "júl","august","september","október","november","december" ], 22 monthNamesShort: [ "Jan","Feb","Mar","Apr","Máj","Jún", 23 "Júl","Aug","Sep","Okt","Nov","Dec" ], 24 dayNames: [ "nedeľa","pondelok","utorok","streda","štvrtok","piatok","sobota" ], 25 dayNamesShort: [ "Ned","Pon","Uto","Str","Štv","Pia","Sob" ], 26 dayNamesMin: [ "Ne","Po","Ut","St","Št","Pia","So" ], 27 weekHeader: "Ty", 28 dateFormat: "dd.mm.yy", 29 firstDay: 1, 30 isRTL: false, 31 showMonthAfterYear: false, 32 yearSuffix: "" }; 33 datepicker.setDefaults( datepicker.regional.sk ); 34 35 return datepicker.regional.sk; 36 37 } ) );
title
Description
Body
title
Description
Body
title
Description
Body
title
Body