22 lines
588 B
JavaScript
Executable File
22 lines
588 B
JavaScript
Executable File
/* Hungarian translation for the jQuery Timepicker Addon */
|
|
/* Written by Vas Gábor */
|
|
(function($) {
|
|
$.timepicker.regional['hu'] = {
|
|
timeOnlyTitle: 'Válasszon időpontot',
|
|
timeText: 'Idő',
|
|
hourText: 'Óra',
|
|
minuteText: 'Perc',
|
|
secondText: 'Másodperc',
|
|
millisecText: 'Milliszekundumos',
|
|
microsecText: 'Ezredmásodperc',
|
|
timezoneText: 'Időzóna',
|
|
currentText: 'Most',
|
|
closeText: 'Kész',
|
|
timeFormat: 'HH:mm',
|
|
amNames: ['de.', 'AM', 'A'],
|
|
pmNames: ['du.', 'PM', 'P'],
|
|
isRTL: false
|
|
};
|
|
$.timepicker.setDefaults($.timepicker.regional['hu']);
|
|
})(jQuery);
|