mirror of
https://github.com/YunoHost-Apps/limesurvey_ynh.git
synced 2024-09-03 19:36:32 +02:00
13 lines
316 B
JavaScript
13 lines
316 B
JavaScript
/* Simplified Chinese initialisation for the jQuery UI multiselect plugin. */
|
|
/* Written by Ben (ben@zfben.com). */
|
|
|
|
(function ( $ ) {
|
|
|
|
$.extend($.ech.multiselect.prototype.options, {
|
|
checkAllText: '全選',
|
|
uncheckAllText: '清空',
|
|
noneSelectedText: '請選擇',
|
|
selectedText: '# 已選擇'
|
|
});
|
|
|
|
})( jQuery );
|