mirror of
https://github.com/owncloudarchive/contacts.git
synced 2025-01-20 09:52:17 +01:00
14 lines
370 B
JavaScript
14 lines
370 B
JavaScript
|
/* Japanese initialisation for the jQuery UI multiselect plugin. */
|
||
|
/* Written by Daisuke (daisuketaniwaki@gmail.com). */
|
||
|
|
||
|
(function ( $ ) {
|
||
|
|
||
|
$.extend($.ech.multiselect.prototype.options, {
|
||
|
checkAllText: 'すべて選択',
|
||
|
uncheckAllText: '選択解除',
|
||
|
noneSelectedText: '選択してください',
|
||
|
selectedText: '#つ選択中'
|
||
|
});
|
||
|
|
||
|
})( jQuery );
|