mirror of
https://github.com/owncloudarchive/contacts.git
synced 2024-12-11 22:24:32 +01:00
8c3d7ccdba
Remove old combobox user bower for onfontresize Add jcrop + md5 Add files to scrutinizer ignore list Remove misplaced text Selected the right MultiSelect library via bower Move bower dependencies to correct location
14 lines
361 B
JavaScript
14 lines
361 B
JavaScript
/* French initialisation for the jQuery UI multiselect plugin. */
|
|
/* Written by Charles SANQUER (charles.sanquer@spyrit.net). */
|
|
|
|
(function ( $ ) {
|
|
|
|
$.extend($.ech.multiselect.prototype.options, {
|
|
checkAllText: 'Tout cocher',
|
|
uncheckAllText: 'Tout décocher',
|
|
noneSelectedText: 'Selectionner les options',
|
|
selectedText: '# selectionnés'
|
|
});
|
|
|
|
})( jQuery );
|