mirror of
https://github.com/owncloudarchive/contacts.git
synced 2025-01-19 08:52:22 +01:00
15 lines
332 B
JavaScript
15 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 );
|
||
|
|