You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

jquery.multiselect.cs.js 332B

1234567891011121314
  1. /* Czech initialisation for the jQuery UI multiselect plugin. */
  2. /* Written by Michi (michi.m@gmail.com). */
  3. (function ( $ ) {
  4. $.extend($.ech.multiselect.prototype.options, {
  5. checkAllText: 'Vybrat vše',
  6. uncheckAllText: 'Zrušit výběr',
  7. noneSelectedText: 'Nic není vybráno',
  8. selectedText: '# vybráno'
  9. });
  10. })( jQuery );