mirror of
https://github.com/YunoHost-Apps/limesurvey_ynh.git
synced 2024-09-03 19:36:32 +02:00
13 lines
348 B
JavaScript
13 lines
348 B
JavaScript
/* German initialisation for the jQuery UI multiselect plugin. */
|
|
/* Written by Sven Tatter (sven.tatter@gmail.com). */
|
|
|
|
(function ( $ ) {
|
|
|
|
$.extend($.ech.multiselect.prototype.options, {
|
|
checkAllText: 'Alle auswählen',
|
|
uncheckAllText: 'Alle abwählen',
|
|
noneSelectedText: 'Nichts ausgewählt',
|
|
selectedText: '# ausgewählt'
|
|
});
|
|
|
|
})( jQuery );
|