mirror of
https://github.com/YunoHost-Apps/limesurvey_ynh.git
synced 2024-09-03 19:36:32 +02:00
14 lines
332 B
JavaScript
14 lines
332 B
JavaScript
/* Czech initialisation for the jQuery UI multiselect plugin. */
|
|
/* Written by Michi (michi.m@gmail.com). */
|
|
|
|
(function ( $ ) {
|
|
|
|
$.extend($.ech.multiselect.prototype.options, {
|
|
checkAllText: 'Vybrat vše',
|
|
uncheckAllText: 'Zrušit výběr',
|
|
noneSelectedText: 'Nic není vybráno',
|
|
selectedText: '# vybráno'
|
|
});
|
|
|
|
})( jQuery );
|
|
|