2011-05-24 16:52:45 +02:00
|
|
|
|
/* Hungarian translation for the jQuery Timepicker Addon */
|
|
|
|
|
/* Written by Vas Gábor */
|
2011-06-07 00:41:59 +02:00
|
|
|
|
(function($) {
|
|
|
|
|
$.timepicker.regional['hu'] = {
|
|
|
|
|
timeOnlyTitle: 'Válasszon időpontot',
|
|
|
|
|
timeText: 'Idő',
|
|
|
|
|
hourText: 'Óra',
|
|
|
|
|
minuteText: 'Perc',
|
|
|
|
|
secondText: 'Másodperc',
|
2011-07-24 16:07:00 +02:00
|
|
|
|
millisecText: 'Milliszekundumos',
|
2011-06-07 00:41:59 +02:00
|
|
|
|
timezoneText: 'Időzóna',
|
|
|
|
|
currentText: 'Most',
|
|
|
|
|
closeText: 'Kész',
|
|
|
|
|
timeFormat: 'hh:mm tt',
|
2011-08-11 07:43:48 +02:00
|
|
|
|
amNames: ['de.', 'AM', 'A'],
|
|
|
|
|
pmNames: ['du.', 'PM', 'P'],
|
2011-06-07 00:41:59 +02:00
|
|
|
|
ampm: false
|
|
|
|
|
};
|
|
|
|
|
$.timepicker.setDefaults($.timepicker.regional['hu']);
|
|
|
|
|
})(jQuery);
|