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
675 B
22 lines
675 B
/* Dutch translation for the jQuery Timepicker Addon */
|
|
/* Written by Martijn van der Lee */
|
|
(function ($) {
|
|
$.timepicker.regional['nl'] = {
|
|
timeOnlyTitle: 'Tijdstip',
|
|
timeText: 'Tijd',
|
|
hourText: 'Uur',
|
|
minuteText: 'Minuut',
|
|
secondText: 'Seconde',
|
|
millisecText: 'Milliseconde',
|
|
microsecText: 'Microseconde',
|
|
timezoneText: 'Tijdzone',
|
|
currentText: 'Vandaag',
|
|
closeText: 'Sluiten',
|
|
timeFormat: 'HH:mm',
|
|
timeSuffix: '',
|
|
amNames: ['AM', 'A'],
|
|
pmNames: ['PM', 'P'],
|
|
isRTL: false
|
|
};
|
|
$.timepicker.setDefaults($.timepicker.regional['nl']);
|
|
})(jQuery);
|