1/* Esperanto initialisation for the jQuery UI date picker plugin. */ 2/* Written by Olivier M. (olivierweb@ifrance.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 15datepicker.regional.eo = { 16 closeText: "Fermi", 17 prevText: "<Anta", 18 nextText: "Sekv>", 19 currentText: "Nuna", 20 monthNames: [ "Januaro","Februaro","Marto","Aprilo","Majo","Junio", 21 "Julio","Aŭgusto","Septembro","Oktobro","Novembro","Decembro" ], 22 monthNamesShort: [ "Jan","Feb","Mar","Apr","Maj","Jun", 23 "Jul","Aŭg","Sep","Okt","Nov","Dec" ], 24 dayNames: [ "Dimanĉo","Lundo","Mardo","Merkredo","Ĵaŭdo","Vendredo","Sabato" ], 25 dayNamesShort: [ "Dim","Lun","Mar","Mer","Ĵaŭ","Ven","Sab" ], 26 dayNamesMin: [ "Di","Lu","Ma","Me","Ĵa","Ve","Sa" ], 27 weekHeader: "Sb", 28 dateFormat: "dd/mm/yy", 29 firstDay: 0, 30 isRTL: false, 31 showMonthAfterYear: false, 32 yearSuffix: "" }; 33datepicker.setDefaults( datepicker.regional.eo ); 34 35return datepicker.regional.eo; 36 37} ) ); 38