2
* Bootstrap-select v1.12.4 (http://silviomoreto.github.io/bootstrap-select)
4
* Copyright 2013-2017 bootstrap-select
5
* Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
8
(function (root, factory) {
9
if (typeof define === 'function' && define.amd) {
10
// AMD. Register as an anonymous module unless amdModuleId is set
11
define(["jquery"], function (a0) {
14
} else if (typeof module === 'object' && module.exports) {
15
// Node. Does not work with strict CommonJS, but
16
// only CommonJS-like environments that support module.exports,
18
module.exports = factory(require("jquery"));
20
factory(root["jQuery"]);
22
}(this, function (jQuery) {
25
$.fn.selectpicker.defaults = {
26
noneSelectedText: 'Nič izbranega',
27
noneResultsText: 'Ni zadetkov za {0}',
28
countSelectedText: '{0} od {1} izbranih',
29
maxOptionsText: function (numAll, numGroup) {
31
'Omejitev dosežena (max. izbranih: {n})',
32
'Omejitev skupine dosežena (max. izbranih: {n})'
35
selectAllText: 'Izberi vse',
36
deselectAllText: 'Počisti izbor',
37
multipleSeparator: ', '