mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-11-24 16:53:10 +08:00
10 lines
443 B
JavaScript
10 lines
443 B
JavaScript
/* http://keith-wood.name/timeEntry.html
|
|
Dutch initialisation written for the jQuery time entry extension.
|
|
Glenn plas (glenn.plas@telenet.be) March 2008. */
|
|
(function($) {
|
|
$.timeEntry.regionalOptions['nl'] = {show24Hours: true, separator: ':',
|
|
ampmPrefix: '', ampmNames: ['AM', 'PM'],
|
|
spinnerTexts: ['Nu', 'Vorig veld', 'Volgend veld','Verhoog', 'Verlaag']};
|
|
$.timeEntry.setDefaults($.timeEntry.regionalOptions['nl']);
|
|
})(jQuery);
|