You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
686 B
22 lines
686 B
/* German translation for the jQuery Timepicker Addon */
|
|
/* Written by Marvin */
|
|
(function ($) {
|
|
$.timepicker.regional['de'] = {
|
|
timeOnlyTitle: 'Zeit wählen',
|
|
timeText: 'Zeit',
|
|
hourText: 'Stunde',
|
|
minuteText: 'Minute',
|
|
secondText: 'Sekunde',
|
|
millisecText: 'Millisekunde',
|
|
microsecText: 'Mikrosekunde',
|
|
timezoneText: 'Zeitzone',
|
|
currentText: 'Jetzt',
|
|
closeText: 'Fertig',
|
|
timeFormat: 'HH:mm',
|
|
timeSuffix: '',
|
|
amNames: ['vorm.', 'AM', 'A'],
|
|
pmNames: ['nachm.', 'PM', 'P'],
|
|
isRTL: false
|
|
};
|
|
$.timepicker.setDefaults($.timepicker.regional['de']);
|
|
})(jQuery);
|