[ Index ] |
PHP Cross Reference of DokuWiki |
[Summary view] [Print] [Text view]
1 /* Estonian initialisation for the jQuery UI date picker plugin. */ 2 /* Written by Mart Sõmermaa (mrts.pydev at 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.et = { 16 closeText: "Sulge", 17 prevText: "Eelnev", 18 nextText: "Järgnev", 19 currentText: "Täna", 20 monthNames: [ "Jaanuar","Veebruar","Märts","Aprill","Mai","Juuni", 21 "Juuli","August","September","Oktoober","November","Detsember" ], 22 monthNamesShort: [ "Jaan", "Veebr", "Märts", "Apr", "Mai", "Juuni", 23 "Juuli", "Aug", "Sept", "Okt", "Nov", "Dets" ], 24 dayNames: [ 25 "Pühapäev", 26 "Esmaspäev", 27 "Teisipäev", 28 "Kolmapäev", 29 "Neljapäev", 30 "Reede", 31 "Laupäev" 32 ], 33 dayNamesShort: [ "Pühap", "Esmasp", "Teisip", "Kolmap", "Neljap", "Reede", "Laup" ], 34 dayNamesMin: [ "P","E","T","K","N","R","L" ], 35 weekHeader: "näd", 36 dateFormat: "dd.mm.yy", 37 firstDay: 1, 38 isRTL: false, 39 showMonthAfterYear: false, 40 yearSuffix: "" }; 41 datepicker.setDefaults( datepicker.regional.et ); 42 43 return datepicker.regional.et; 44 45 } ) );
title
Description
Body
title
Description
Body
title
Description
Body
title
Body