[ Index ] |
PHP Cross Reference of DokuWiki |
[Summary view] [Print] [Text view]
1 /* Greek (el) initialisation for the jQuery UI date picker plugin. */ 2 /* Written by Alex Cicovic (http://www.alexcicovic.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.el = { 16 closeText: "Κλείσιμο", 17 prevText: "Προηγούμενος", 18 nextText: "Επόμενος", 19 currentText: "Σήμερα", 20 monthNames: [ "Ιανουάριος","Φεβρουάριος","Μάρτιος","Απρίλιος","Μάιος","Ιούνιος", 21 "Ιούλιος","Αύγουστος","Σεπτέμβριος","Οκτώβριος","Νοέμβριος","Δεκέμβριος" ], 22 monthNamesShort: [ "Ιαν","Φεβ","Μαρ","Απρ","Μαι","Ιουν", 23 "Ιουλ","Αυγ","Σεπ","Οκτ","Νοε","Δεκ" ], 24 dayNames: [ "Κυριακή","Δευτέρα","Τρίτη","Τετάρτη","Πέμπτη","Παρασκευή","Σάββατο" ], 25 dayNamesShort: [ "Κυρ","Δευ","Τρι","Τετ","Πεμ","Παρ","Σαβ" ], 26 dayNamesMin: [ "Κυ","Δε","Τρ","Τε","Πε","Πα","Σα" ], 27 weekHeader: "Εβδ", 28 dateFormat: "dd/mm/yy", 29 firstDay: 1, 30 isRTL: false, 31 showMonthAfterYear: false, 32 yearSuffix: "" }; 33 datepicker.setDefaults( datepicker.regional.el ); 34 35 return datepicker.regional.el; 36 37 } ) );
title
Description
Body
title
Description
Body
title
Description
Body
title
Body