mirror of
https://github.com/owncloudarchive/contacts.git
synced 2025-01-23 12:52:17 +01:00
14 lines
357 B
JavaScript
14 lines
357 B
JavaScript
|
/* Brazilian initialisation for the jQuery UI multiselect plugin. */
|
||
|
/* Written by Yusuf Özer (realsby@gmail.com). */
|
||
|
|
||
|
(function ( $ ) {
|
||
|
|
||
|
$.extend($.ech.multiselect.prototype.options, {
|
||
|
checkAllText: 'Tümünü seç',
|
||
|
uncheckAllText: 'Tümünü sil',
|
||
|
noneSelectedText: 'Seçenekleri belirleyin',
|
||
|
selectedText: '# adet seçildi'
|
||
|
});
|
||
|
|
||
|
})( jQuery );
|