19 lines
560 B
JavaScript
19 lines
560 B
JavaScript
/* Hellenic translation for the jQuery Timepicker Addon */
|
|
/* Written by Christos Pontikis */
|
|
(function($) {
|
|
$.timepicker.regional['el'] = {
|
|
timeOnlyTitle: 'Επιλογή ώρας',
|
|
timeText: 'Ώρα',
|
|
hourText: 'Ώρες',
|
|
minuteText: 'Λεπτά',
|
|
secondText: 'Δευτερόλεπτα',
|
|
millisecText: 'μιλιδευτερόλεπτο',
|
|
timezoneText: 'Ζώνη ώρας',
|
|
currentText: 'Τώρα',
|
|
closeText: 'Κλείσιμο',
|
|
timeFormat: 'hh:mm',
|
|
ampm: false
|
|
};
|
|
$.timepicker.setDefaults($.timepicker.regional['el']);
|
|
})(jQuery);
|