Serveur preprod f0c0c48223 first push
2016-04-14 16:14:31 +02:00

13 lines
533 B
JavaScript

/* http://keith-wood.name/countdown.html
Dutch initialisation for the jQuery countdown extension
Written by Mathias Bynens <http://mathiasbynens.be/> Mar 2008. */
(function($) {
$.countdown.regional['nl'] = {
labels: ['Jaren', 'Maanden', 'Weken', 'Dagen', 'Uren', 'Minuten', 'Seconden'],
labels1: ['Jaar', 'Maand', 'Week', 'Dag', 'Uur', 'Minuut', 'Seconde'],
compactLabels: ['j', 'm', 'w', 'd'],
whichLabels: null,
timeSeparator: ':', isRTL: false};
$.countdown.setDefaults($.countdown.regional['nl']);
})(jQuery);