No Description

defaults-cro_CRO.js 855B

1234567891011121314151617181920212223
  1. /*
  2. * Translated default messages for bootstrap-select.
  3. * Locale: CRO (Croatia)
  4. * Region: CRO (Croatia)
  5. */
  6. (function ($) {
  7. $.fn.selectpicker.defaults = {
  8. noneSelectedText: 'Odaberite stavku',
  9. noneResultsText: 'Nema rezultata pretrage {0}',
  10. countSelectedText: function (numSelected, numTotal) {
  11. return (numSelected == 1) ? "{0} stavka selektirana" : "{0} stavke selektirane";
  12. },
  13. maxOptionsText: function (numAll, numGroup) {
  14. return [
  15. (numAll == 1) ? 'Limit je postignut ({n} stvar maximalno)' : 'Limit je postignut ({n} stavke maksimalno)',
  16. (numGroup == 1) ? 'Grupni limit je postignut ({n} stvar maksimalno)' : 'Grupni limit je postignut ({n} stavke maksimalno)'
  17. ];
  18. },
  19. selectAllText: 'Selektiraj sve',
  20. deselectAllText: 'Deselektiraj sve',
  21. multipleSeparator: ', '
  22. };
  23. })(jQuery);