/*
 * Localisation for timepicker (a jQuery UI Datepicker extension by Trent Richardson)
 * 
 * Extends jquery-ui-i18n.js with timepicker-specific values 
 * Timepicker from http://trentrichardson.com/examples/timepicker/
 */

(function($){
	var de = 
		{
			tpAMPM: false,
			tpTimeFormat: 'hh:mm:ss', 
			tpLabelTime: 'Uhrzeit',
			tpLabelHour: 'Stunde',
			tpLabelMinute: 'Minute',
			tpLabelSecond: 'Sekunde'
		};
		
	$.datepicker.regional['de'] = $.extend({}, $.datepicker.regional['de'], de);
	
	$.datepicker.regional['en'] = $.extend({}, $.datepicker.regional['en'],
		{
			tpAMPM: false,
			tpTimeFormat: 'hh:mm:ss', 
			tpLabelTime: 'Time',
			tpLabelHour: 'Hour',
			tpLabelMinute: 'Minute',
			tpLabelSecond: 'Second'
		} 
	);
	
	$.datepicker.setDefaults($.extend({}, $.datepicker.regional[''],de));

})(jQuery);
