datepicker-el.js 1.42 KB
Newer Older
1 2
/* Greek (el) initialisation for the jQuery UI date picker plugin. */
/* Written by Alex Cicovic (http://www.alexcicovic.com) */
3
( function( factory ) {
4 5 6
	if ( typeof define === "function" && define.amd ) {

		// AMD. Register as an anonymous module.
7
		define( [ "../widgets/datepicker" ], factory );
8 9 10 11 12
	} else {

		// Browser globals
		factory( jQuery.datepicker );
	}
13
}( function( datepicker ) {
14

15 16 17 18 19 20 21 22 23 24 25 26 27 28
datepicker.regional.el = {
	closeText: "Κλείσιμο",
	prevText: "Προηγούμενος",
	nextText: "Επόμενος",
	currentText: "Σήμερα",
	monthNames: [ "Ιανουάριος","Φεβρουάριος","Μάρτιος","Απρίλιος","Μάιος","Ιούνιος",
	"Ιούλιος","Αύγουστος","Σεπτέμβριος","Οκτώβριος","Νοέμβριος","Δεκέμβριος" ],
	monthNamesShort: [ "Ιαν","Φεβ","Μαρ","Απρ","Μαι","Ιουν",
	"Ιουλ","Αυγ","Σεπ","Οκτ","Νοε","Δεκ" ],
	dayNames: [ "Κυριακή","Δευτέρα","Τρίτη","Τετάρτη","Πέμπτη","Παρασκευή","Σάββατο" ],
	dayNamesShort: [ "Κυρ","Δευ","Τρι","Τετ","Πεμ","Παρ","Σαβ" ],
	dayNamesMin: [ "Κυ","Δε","Τρ","Τε","Πε","Πα","Σα" ],
	weekHeader: "Εβδ",
	dateFormat: "dd/mm/yy",
29 30 31
	firstDay: 1,
	isRTL: false,
	showMonthAfterYear: false,
32 33
	yearSuffix: "" };
datepicker.setDefaults( datepicker.regional.el );
34

35
return datepicker.regional.el;
36

37
} ) );