9 lines
435 B
JavaScript
9 lines
435 B
JavaScript
|
/* http://keith-wood.name/timeEntry.html
|
|||
|
German initialisation for the jQuery time entry extension
|
|||
|
Written by Eyk Schulz (eyk.schulz@gmx.net) */
|
|||
|
$(document).ready(function() {
|
|||
|
$.timeEntry.regional['de'] = {show24Hours: true, separator: ':',
|
|||
|
ampmPrefix: '', ampmNames: ['AM', 'PM'],
|
|||
|
spinnerTexts: ['Jetzt', 'vorheriges Feld', 'nächstes Feld', 'hoch', 'runter']};
|
|||
|
$.timeEntry.setDefaults($.timeEntry.regional['de']);
|
|||
|
});
|