Modified: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-en_US.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-en_US.js?rev=1783804&r1=1783803&r2=1783804&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-en_US.js (original) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-en_US.js Mon Feb 20 22:25:27 2017 @@ -1,9 +1,26 @@ /*! - * Bootstrap-select v1.6.5 (http://silviomoreto.github.io/bootstrap-select) + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) * - * Copyright 2013-2015 bootstrap-select + * Copyright 2013-2017 bootstrap-select * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) */ + +(function (root, factory) { + if (typeof define === 'function' && define.amd) { + // AMD. Register as an anonymous module unless amdModuleId is set + define(["jquery"], function (a0) { + return (factory(a0)); + }); + } else if (typeof module === 'object' && module.exports) { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory(require("jquery")); + } else { + factory(root["jQuery"]); + } +}(this, function (jQuery) { + (function ($) { $.fn.selectpicker.defaults = { noneSelectedText: 'Nothing selected', @@ -22,3 +39,6 @@ multipleSeparator: ', ' }; })(jQuery); + + +}));
Modified: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-en_US.min.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-en_US.min.js?rev=1783804&r1=1783803&r2=1783804&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-en_US.min.js (original) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-en_US.min.js Mon Feb 20 22:25:27 2017 @@ -1,7 +1,7 @@ /*! - * Bootstrap-select v1.6.5 (http://silviomoreto.github.io/bootstrap-select) + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) * - * Copyright 2013-2015 bootstrap-select + * Copyright 2013-2017 bootstrap-select * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) */ -!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nothing selected",noneResultsText:"No results match {0}",countSelectedText:function(a){return 1==a?"{0} item selected":"{0} items selected"},maxOptionsText:function(a,b){return[1==a?"Limit reached ({n} item max)":"Limit reached ({n} items max)",1==b?"Group limit reached ({n} item max)":"Group limit reached ({n} items max)"]},selectAllText:"Select All",deselectAllText:"Deselect All",multipleSeparator:", "}}(jQuery); \ No newline at end of file +!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nothing selected",noneResultsText:"No results match {0}",countSelectedText:function(a,b){return 1==a?"{0} item selected":"{0} items selected"},maxOptionsText:function(a,b){return[1==a?"Limit reached ({n} item max)":"Limit reached ({n} items max)",1==b?"Group limit reached ({n} item max)":"Group limit reached ({n} items max)"]},selectAllText:"Select All",deselectAllText:"Deselect All",multipleSeparator:", "}}(a)}); \ No newline at end of file Modified: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-es_CL.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-es_CL.js?rev=1783804&r1=1783803&r2=1783804&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-es_CL.js (original) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-es_CL.js Mon Feb 20 22:25:27 2017 @@ -1,15 +1,37 @@ /*! - * Bootstrap-select v1.6.5 (http://silviomoreto.github.io/bootstrap-select) + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) * - * Copyright 2013-2015 bootstrap-select + * Copyright 2013-2017 bootstrap-select * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) */ + +(function (root, factory) { + if (typeof define === 'function' && define.amd) { + // AMD. Register as an anonymous module unless amdModuleId is set + define(["jquery"], function (a0) { + return (factory(a0)); + }); + } else if (typeof module === 'object' && module.exports) { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory(require("jquery")); + } else { + factory(root["jQuery"]); + } +}(this, function (jQuery) { + (function ($) { $.fn.selectpicker.defaults = { noneSelectedText: 'No hay selección', noneResultsText: 'No hay resultados {0}', countSelectedText: 'Seleccionados {0} de {1}', maxOptionsText: ['LÃmite alcanzado ({n} {var} max)', 'LÃmite del grupo alcanzado({n} {var} max)', ['elementos', 'element']], - multipleSeparator: ', ' + multipleSeparator: ', ', + selectAllText: 'Seleccionar Todos', + deselectAllText: 'Desmarcar Todos' }; })(jQuery); + + +})); Modified: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-es_CL.min.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-es_CL.min.js?rev=1783804&r1=1783803&r2=1783804&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-es_CL.min.js (original) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-es_CL.min.js Mon Feb 20 22:25:27 2017 @@ -1,7 +1,7 @@ /*! - * Bootstrap-select v1.6.5 (http://silviomoreto.github.io/bootstrap-select) + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) * - * Copyright 2013-2015 bootstrap-select + * Copyright 2013-2017 bootstrap-select * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) */ -!function(a){a.fn.selectpicker.defaults={noneSelectedText:"No hay selección",noneResultsText:"No hay resultados {0}",countSelectedText:"Seleccionados {0} de {1}",maxOptionsText:["LÃmite alcanzado ({n} {var} max)","LÃmite del grupo alcanzado({n} {var} max)",["elementos","element"]],multipleSeparator:", "}}(jQuery); \ No newline at end of file +!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"No hay selección",noneResultsText:"No hay resultados {0}",countSelectedText:"Seleccionados {0} de {1}",maxOptionsText:["LÃmite alcanzado ({n} {var} max)","LÃmite del grupo alcanzado({n} {var} max)",["elementos","element"]],multipleSeparator:", ",selectAllText:"Seleccionar Todos",deselectAllText:"Desmarcar Todos"}}(a)}); \ No newline at end of file Added: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-es_ES.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-es_ES.js?rev=1783804&view=auto ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-es_ES.js (added) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-es_ES.js Mon Feb 20 22:25:27 2017 @@ -0,0 +1,37 @@ +/*! + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) + * + * Copyright 2013-2017 bootstrap-select + * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) + */ + +(function (root, factory) { + if (typeof define === 'function' && define.amd) { + // AMD. Register as an anonymous module unless amdModuleId is set + define(["jquery"], function (a0) { + return (factory(a0)); + }); + } else if (typeof module === 'object' && module.exports) { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory(require("jquery")); + } else { + factory(root["jQuery"]); + } +}(this, function (jQuery) { + +(function ($) { + $.fn.selectpicker.defaults = { + noneSelectedText: 'No hay selección', + noneResultsText: 'No hay resultados {0}', + countSelectedText: 'Seleccionados {0} de {1}', + maxOptionsText: ['LÃmite alcanzado ({n} {var} max)', 'LÃmite del grupo alcanzado({n} {var} max)', ['elementos', 'element']], + multipleSeparator: ', ', + selectAllText: 'Seleccionar Todos', + deselectAllText: 'Desmarcar Todos' + }; +})(jQuery); + + +})); Propchange: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-es_ES.js ------------------------------------------------------------------------------ svn:eol-style = native Added: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-es_ES.min.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-es_ES.min.js?rev=1783804&view=auto ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-es_ES.min.js (added) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-es_ES.min.js Mon Feb 20 22:25:27 2017 @@ -0,0 +1,7 @@ +/*! + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) + * + * Copyright 2013-2017 bootstrap-select + * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) + */ +!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"No hay selección",noneResultsText:"No hay resultados {0}",countSelectedText:"Seleccionados {0} de {1}",maxOptionsText:["LÃmite alcanzado ({n} {var} max)","LÃmite del grupo alcanzado({n} {var} max)",["elementos","element"]],multipleSeparator:", ",selectAllText:"Seleccionar Todos",deselectAllText:"Desmarcar Todos"}}(a)}); \ No newline at end of file Propchange: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-es_ES.min.js ------------------------------------------------------------------------------ svn:eol-style = native Modified: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-eu.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-eu.js?rev=1783804&r1=1783803&r2=1783804&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-eu.js (original) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-eu.js Mon Feb 20 22:25:27 2017 @@ -1,9 +1,26 @@ /*! - * Bootstrap-select v1.6.5 (http://silviomoreto.github.io/bootstrap-select) + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) * - * Copyright 2013-2015 bootstrap-select + * Copyright 2013-2017 bootstrap-select * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) */ + +(function (root, factory) { + if (typeof define === 'function' && define.amd) { + // AMD. Register as an anonymous module unless amdModuleId is set + define(["jquery"], function (a0) { + return (factory(a0)); + }); + } else if (typeof module === 'object' && module.exports) { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory(require("jquery")); + } else { + factory(root["jQuery"]); + } +}(this, function (jQuery) { + (function ($) { $.fn.selectpicker.defaults = { noneSelectedText: 'Hautapenik ez', @@ -13,3 +30,6 @@ multipleSeparator: ', ' }; })(jQuery); + + +})); Modified: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-eu.min.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-eu.min.js?rev=1783804&r1=1783803&r2=1783804&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-eu.min.js (original) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-eu.min.js Mon Feb 20 22:25:27 2017 @@ -1,7 +1,7 @@ /*! - * Bootstrap-select v1.6.5 (http://silviomoreto.github.io/bootstrap-select) + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) * - * Copyright 2013-2015 bootstrap-select + * Copyright 2013-2017 bootstrap-select * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) */ -!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Hautapenik ez",noneResultsText:"Emaitzarik ez {0}",countSelectedText:"{1}(e)tik {0} hautatuta",maxOptionsText:["Mugara iritsita ({n} {var} gehienez)","Taldearen mugara iritsita ({n} {var} gehienez)",["elementu","elementu"]],multipleSeparator:", "}}(jQuery); \ No newline at end of file +!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Hautapenik ez",noneResultsText:"Emaitzarik ez {0}",countSelectedText:"{1}(e)tik {0} hautatuta",maxOptionsText:["Mugara iritsita ({n} {var} gehienez)","Taldearen mugara iritsita ({n} {var} gehienez)",["elementu","elementu"]],multipleSeparator:", "}}(a)}); \ No newline at end of file Added: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-fa_IR.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-fa_IR.js?rev=1783804&view=auto ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-fa_IR.js (added) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-fa_IR.js Mon Feb 20 22:25:27 2017 @@ -0,0 +1,37 @@ +/*! + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) + * + * Copyright 2013-2017 bootstrap-select + * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) + */ + +(function (root, factory) { + if (typeof define === 'function' && define.amd) { + // AMD. Register as an anonymous module unless amdModuleId is set + define(["jquery"], function (a0) { + return (factory(a0)); + }); + } else if (typeof module === 'object' && module.exports) { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory(require("jquery")); + } else { + factory(root["jQuery"]); + } +}(this, function (jQuery) { + +(function ($) { + $.fn.selectpicker.defaults = { + noneSelectedText: 'ÚÛØ²Û Ø§ÙØªØ®Ø§Ø¨ ÙØ´Ø¯Ù است', + noneResultsText: 'ÙÛØ¬ ٠شابÙÛ Ø¨Ø±Ø§Û {0} Ù¾ÛØ¯Ø§ ÙØ´Ø¯', + countSelectedText: "{0} از {1} Ù ÙØ±Ø¯ Ø§ÙØªØ®Ø§Ø¨ شدÙ", + maxOptionsText: ['Ø¨ÛØ´ØªØ± Ù Ù Ú©Ù ÙÛØ³Øª {ØØ¯Ø§Ú©Ø«Ø± {n} عدد}', 'Ø¨ÛØ´ØªØ± Ù Ù Ú©Ù ÙÛØ³Øª {ØØ¯Ø§Ú©Ø«Ø± {n} عدد}'], + selectAllText: 'Ø§ÙØªØ®Ø§Ø¨ ÙÙ Ù', + deselectAllText: 'Ø§ÙØªØ®Ø§Ø¨ ÙÛÚ Ú©Ø¯Ø§Ù ', + multipleSeparator: ', ' + }; +})(jQuery); + + +})); Propchange: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-fa_IR.js ------------------------------------------------------------------------------ svn:eol-style = native Added: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-fa_IR.min.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-fa_IR.min.js?rev=1783804&view=auto ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-fa_IR.min.js (added) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-fa_IR.min.js Mon Feb 20 22:25:27 2017 @@ -0,0 +1,7 @@ +/*! + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) + * + * Copyright 2013-2017 bootstrap-select + * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) + */ +!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"ÚÛØ²Û Ø§ÙØªØ®Ø§Ø¨ ÙØ´Ø¯Ù است",noneResultsText:"ÙÛØ¬ ٠شابÙÛ Ø¨Ø±Ø§Û {0} Ù¾ÛØ¯Ø§ ÙØ´Ø¯",countSelectedText:"{0} از {1} Ù ÙØ±Ø¯ Ø§ÙØªØ®Ø§Ø¨ شدÙ",maxOptionsText:["Ø¨ÛØ´ØªØ± Ù Ù Ú©Ù ÙÛØ³Øª {ØØ¯Ø§Ú©Ø«Ø± {n} عدد}","Ø¨ÛØ´ØªØ± Ù Ù Ú©Ù ÙÛØ³Øª {ØØ¯Ø§Ú©Ø«Ø± {n} عدد}"],selectAllText:"Ø§ÙØªØ®Ø§Ø¨ ÙÙ Ù",deselectAllText:"Ø§ÙØªØ®Ø§Ø¨ ÙÛÚ Ú©Ø¯Ø§Ù ",multipleSeparator:", "}}(a)}); \ No newline at end of file Propchange: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-fa_IR.min.js ------------------------------------------------------------------------------ svn:eol-style = native Added: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-fi_FI.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-fi_FI.js?rev=1783804&view=auto ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-fi_FI.js (added) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-fi_FI.js Mon Feb 20 22:25:27 2017 @@ -0,0 +1,44 @@ +/*! + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) + * + * Copyright 2013-2017 bootstrap-select + * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) + */ + +(function (root, factory) { + if (typeof define === 'function' && define.amd) { + // AMD. Register as an anonymous module unless amdModuleId is set + define(["jquery"], function (a0) { + return (factory(a0)); + }); + } else if (typeof module === 'object' && module.exports) { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory(require("jquery")); + } else { + factory(root["jQuery"]); + } +}(this, function (jQuery) { + +(function ($) { + $.fn.selectpicker.defaults = { + noneSelectedText: 'Ei valintoja', + noneResultsText: 'Ei hakutuloksia {0}', + countSelectedText: function (numSelected, numTotal) { + return (numSelected == 1) ? "{0} valittu" : "{0} valitut"; + }, + maxOptionsText: function (numAll, numGroup) { + return [ + (numAll == 1) ? 'Valintojen maksimimäärä ({n} saavutettu)' : 'Valintojen maksimimäärä ({n} saavutettu)', + (numGroup == 1) ? 'Ryhmän maksimimäärä ({n} saavutettu)' : 'Ryhmän maksimimäärä ({n} saavutettu)' + ]; + }, + selectAllText: 'Valitse kaikki', + deselectAllText: 'Poista kaikki', + multipleSeparator: ', ' + }; +})(jQuery); + + +})); Propchange: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-fi_FI.js ------------------------------------------------------------------------------ svn:eol-style = native Added: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-fi_FI.min.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-fi_FI.min.js?rev=1783804&view=auto ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-fi_FI.min.js (added) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-fi_FI.min.js Mon Feb 20 22:25:27 2017 @@ -0,0 +1,7 @@ +/*! + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) + * + * Copyright 2013-2017 bootstrap-select + * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) + */ +!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Ei valintoja",noneResultsText:"Ei hakutuloksia {0}",countSelectedText:function(a,b){return 1==a?"{0} valittu":"{0} valitut"},maxOptionsText:function(a,b){return["Valintojen maksimimäärä ({n} saavutettu)","Ryhmän maksimimäärä ({n} saavutettu)"]},selectAllText:"Valitse kaikki",deselectAllText:"Poista kaikki",multipleSeparator:", "}}(a)}); \ No newline at end of file Propchange: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-fi_FI.min.js ------------------------------------------------------------------------------ svn:eol-style = native Modified: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-fr_FR.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-fr_FR.js?rev=1783804&r1=1783803&r2=1783804&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-fr_FR.js (original) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-fr_FR.js Mon Feb 20 22:25:27 2017 @@ -1,22 +1,44 @@ /*! - * Bootstrap-select v1.6.5 (http://silviomoreto.github.io/bootstrap-select) + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) * - * Copyright 2013-2015 bootstrap-select + * Copyright 2013-2017 bootstrap-select * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) */ + +(function (root, factory) { + if (typeof define === 'function' && define.amd) { + // AMD. Register as an anonymous module unless amdModuleId is set + define(["jquery"], function (a0) { + return (factory(a0)); + }); + } else if (typeof module === 'object' && module.exports) { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory(require("jquery")); + } else { + factory(root["jQuery"]); + } +}(this, function (jQuery) { + (function ($) { $.fn.selectpicker.defaults = { - noneSelectedText: 'Aucune sélection', - noneResultsText: 'Aucun résultat pour {0}', + noneSelectedText: 'Aucune sélection', + noneResultsText: 'Aucun résultat pour {0}', countSelectedText: function (numSelected, numTotal) { - return (numSelected > 1) ? "{0} éléments sélectionnés" : "{0} élément sélectionné"; + return (numSelected > 1) ? "{0} éléments sélectionnés" : "{0} élément sélectionné"; }, maxOptionsText: function (numAll, numGroup) { return [ - (numAll > 1) ? 'Limite atteinte ({n} éléments max)' : 'Limite atteinte ({n} élément max)', - (numGroup > 1) ? 'Limite du groupe atteinte ({n} éléments max)' : 'Limite du groupe atteinte ({n} élément max)' + (numAll > 1) ? 'Limite atteinte ({n} éléments max)' : 'Limite atteinte ({n} élément max)', + (numGroup > 1) ? 'Limite du groupe atteinte ({n} éléments max)' : 'Limite du groupe atteinte ({n} élément max)' ]; }, - multipleSeparator: ', ' + multipleSeparator: ', ', + selectAllText: 'Tout Sélectionner', + deselectAllText: 'Tout Dé-selectionner', }; })(jQuery); + + +})); Modified: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-fr_FR.min.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-fr_FR.min.js?rev=1783804&r1=1783803&r2=1783804&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-fr_FR.min.js (original) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-fr_FR.min.js Mon Feb 20 22:25:27 2017 @@ -1,7 +1,7 @@ /*! - * Bootstrap-select v1.6.5 (http://silviomoreto.github.io/bootstrap-select) + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) * - * Copyright 2013-2015 bootstrap-select + * Copyright 2013-2017 bootstrap-select * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) */ -!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Aucune sélection",noneResultsText:"Aucun résultat pour {0}",countSelectedText:function(a){return a>1?"{0} éléments sélectionnés":"{0} élément sélectionné"},maxOptionsText:function(a,b){return[a>1?"Limite atteinte ({n} éléments max)":"Limite atteinte ({n} élément max)",b>1?"Limite du groupe atteinte ({n} éléments max)":"Limite du groupe atteinte ({n} élément max)"]},multipleSeparator:", "}}(jQuery); \ No newline at end of file +!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Aucune sélection",noneResultsText:"Aucun résultat pour {0}",countSelectedText:function(a,b){return a>1?"{0} éléments sélectionnés":"{0} élément sélectionné"},maxOptionsText:function(a,b){return[a>1?"Limite atteinte ({n} éléments max)":"Limite atteinte ({n} élément max)",b>1?"Limite du groupe atteinte ({n} éléments max)":"Limite du groupe atteinte ({n} élément max)"]},multipleSeparator:", ",selectAllText:"Tout Sélectionner",deselectAllText:"Tout Dé-selectionner"}}(a)}); \ No newline at end of file Modified: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-hu_HU.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-hu_HU.js?rev=1783804&r1=1783803&r2=1783804&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-hu_HU.js (original) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-hu_HU.js Mon Feb 20 22:25:27 2017 @@ -1,15 +1,32 @@ /*! - * Bootstrap-select v1.6.5 (http://silviomoreto.github.io/bootstrap-select) + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) * - * Copyright 2013-2015 bootstrap-select + * Copyright 2013-2017 bootstrap-select * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) */ + +(function (root, factory) { + if (typeof define === 'function' && define.amd) { + // AMD. Register as an anonymous module unless amdModuleId is set + define(["jquery"], function (a0) { + return (factory(a0)); + }); + } else if (typeof module === 'object' && module.exports) { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory(require("jquery")); + } else { + factory(root["jQuery"]); + } +}(this, function (jQuery) { + (function ($) { $.fn.selectpicker.defaults = { noneSelectedText: 'Válasszon!', noneResultsText: 'Nincs találat {0}', countSelectedText: function (numSelected, numTotal) { - return '{n} elem kiválasztva'; + return '{0} elem kiválasztva'; }, maxOptionsText: function (numAll, numGroup) { return [ @@ -22,3 +39,6 @@ multipleSeparator: ', ' }; })(jQuery); + + +})); Modified: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-hu_HU.min.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-hu_HU.min.js?rev=1783804&r1=1783803&r2=1783804&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-hu_HU.min.js (original) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-hu_HU.min.js Mon Feb 20 22:25:27 2017 @@ -1,7 +1,7 @@ /*! - * Bootstrap-select v1.6.5 (http://silviomoreto.github.io/bootstrap-select) + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) * - * Copyright 2013-2015 bootstrap-select + * Copyright 2013-2017 bootstrap-select * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) */ -!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Válasszon!",noneResultsText:"Nincs találat {0}",countSelectedText:function(){return"{n} elem kiválasztva"},maxOptionsText:function(){return["Legfeljebb {n} elem választható","A csoportban legfeljebb {n} elem választható"]},selectAllText:"Mind",deselectAllText:"Egyik sem",multipleSeparator:", "}}(jQuery); \ No newline at end of file +!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Válasszon!",noneResultsText:"Nincs találat {0}",countSelectedText:function(a,b){return"{0} elem kiválasztva"},maxOptionsText:function(a,b){return["Legfeljebb {n} elem választható","A csoportban legfeljebb {n} elem választható"]},selectAllText:"Mind",deselectAllText:"Egyik sem",multipleSeparator:", "}}(a)}); \ No newline at end of file Added: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-id_ID.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-id_ID.js?rev=1783804&view=auto ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-id_ID.js (added) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-id_ID.js Mon Feb 20 22:25:27 2017 @@ -0,0 +1,37 @@ +/*! + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) + * + * Copyright 2013-2017 bootstrap-select + * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) + */ + +(function (root, factory) { + if (typeof define === 'function' && define.amd) { + // AMD. Register as an anonymous module unless amdModuleId is set + define(["jquery"], function (a0) { + return (factory(a0)); + }); + } else if (typeof module === 'object' && module.exports) { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory(require("jquery")); + } else { + factory(root["jQuery"]); + } +}(this, function (jQuery) { + +(function ($) { + $.fn.selectpicker.defaults = { + noneSelectedText: 'Tidak ada yang dipilih', + noneResultsText: 'Tidak ada yang cocok {0}', + countSelectedText: '{0} terpilih', + maxOptionsText: ['Mencapai batas (maksimum {n})', 'Mencapai batas grup (maksimum {n})'], + selectAllText: 'Pilih Semua', + deselectAllText: 'Hapus Semua', + multipleSeparator: ', ' + }; +})(jQuery); + + +})); Propchange: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-id_ID.js ------------------------------------------------------------------------------ svn:eol-style = native Added: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-id_ID.min.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-id_ID.min.js?rev=1783804&view=auto ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-id_ID.min.js (added) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-id_ID.min.js Mon Feb 20 22:25:27 2017 @@ -0,0 +1,7 @@ +/*! + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) + * + * Copyright 2013-2017 bootstrap-select + * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) + */ +!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Tidak ada yang dipilih",noneResultsText:"Tidak ada yang cocok {0}",countSelectedText:"{0} terpilih",maxOptionsText:["Mencapai batas (maksimum {n})","Mencapai batas grup (maksimum {n})"],selectAllText:"Pilih Semua",deselectAllText:"Hapus Semua",multipleSeparator:", "}}(a)}); \ No newline at end of file Propchange: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-id_ID.min.js ------------------------------------------------------------------------------ svn:eol-style = native Modified: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-it_IT.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-it_IT.js?rev=1783804&r1=1783803&r2=1783804&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-it_IT.js (original) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-it_IT.js Mon Feb 20 22:25:27 2017 @@ -1,15 +1,39 @@ /*! - * Bootstrap-select v1.6.5 (http://silviomoreto.github.io/bootstrap-select) + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) * - * Copyright 2013-2015 bootstrap-select + * Copyright 2013-2017 bootstrap-select * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) */ + +(function (root, factory) { + if (typeof define === 'function' && define.amd) { + // AMD. Register as an anonymous module unless amdModuleId is set + define(["jquery"], function (a0) { + return (factory(a0)); + }); + } else if (typeof module === 'object' && module.exports) { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory(require("jquery")); + } else { + factory(root["jQuery"]); + } +}(this, function (jQuery) { + (function ($) { $.fn.selectpicker.defaults = { noneSelectedText: 'Nessuna selezione', noneResultsText: 'Nessun risultato per {0}', - countSelectedText: 'Selezionati {0} di {1}', + countSelectedText: function (numSelected, numTotal){ + return (numSelected == 1) ? 'Selezionato {0} di {1}' : 'Selezionati {0} di {1}'; + }, maxOptionsText: ['Limite raggiunto ({n} {var} max)', 'Limite del gruppo raggiunto ({n} {var} max)', ['elementi', 'elemento']], - multipleSeparator: ', ' + multipleSeparator: ', ', + selectAllText: 'Seleziona Tutto', + deselectAllText: 'Deseleziona Tutto' }; })(jQuery); + + +})); Modified: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-it_IT.min.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-it_IT.min.js?rev=1783804&r1=1783803&r2=1783804&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-it_IT.min.js (original) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-it_IT.min.js Mon Feb 20 22:25:27 2017 @@ -1,7 +1,7 @@ /*! - * Bootstrap-select v1.6.5 (http://silviomoreto.github.io/bootstrap-select) + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) * - * Copyright 2013-2015 bootstrap-select + * Copyright 2013-2017 bootstrap-select * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) */ -!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nessuna selezione",noneResultsText:"Nessun risultato per {0}",countSelectedText:"Selezionati {0} di {1}",maxOptionsText:["Limite raggiunto ({n} {var} max)","Limite del gruppo raggiunto ({n} {var} max)",["elementi","elemento"]],multipleSeparator:", "}}(jQuery); \ No newline at end of file +!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nessuna selezione",noneResultsText:"Nessun risultato per {0}",countSelectedText:function(a,b){return 1==a?"Selezionato {0} di {1}":"Selezionati {0} di {1}"},maxOptionsText:["Limite raggiunto ({n} {var} max)","Limite del gruppo raggiunto ({n} {var} max)",["elementi","elemento"]],multipleSeparator:", ",selectAllText:"Seleziona Tutto",deselectAllText:"Deseleziona Tutto"}}(a)}); \ No newline at end of file Added: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-ko_KR.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-ko_KR.js?rev=1783804&view=auto ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-ko_KR.js (added) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-ko_KR.js Mon Feb 20 22:25:27 2017 @@ -0,0 +1,44 @@ +/*! + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) + * + * Copyright 2013-2017 bootstrap-select + * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) + */ + +(function (root, factory) { + if (typeof define === 'function' && define.amd) { + // AMD. Register as an anonymous module unless amdModuleId is set + define(["jquery"], function (a0) { + return (factory(a0)); + }); + } else if (typeof module === 'object' && module.exports) { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory(require("jquery")); + } else { + factory(root["jQuery"]); + } +}(this, function (jQuery) { + +(function ($) { + $.fn.selectpicker.defaults = { + noneSelectedText: 'í목ì ì íí´ì£¼ì¸ì', + noneResultsText: '{0} ê²ì ê²°ê³¼ê° ììµëë¤', + countSelectedText: function (numSelected, numTotal) { + return "{0}ê°ë¥¼ ì ííììµëë¤"; + }, + maxOptionsText: function (numAll, numGroup) { + return [ + '{n}ê°ê¹ì§ ì í ê°ë¥í©ëë¤', + 'í´ë¹ 그룹ì {n}ê°ê¹ì§ ì í ê°ë¥í©ëë¤' + ]; + }, + selectAllText: 'ì ì²´ì í', + deselectAllText: 'ì ì²´í´ì ', + multipleSeparator: ', ' + }; +})(jQuery); + + +})); Propchange: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-ko_KR.js ------------------------------------------------------------------------------ svn:eol-style = native Added: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-ko_KR.min.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-ko_KR.min.js?rev=1783804&view=auto ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-ko_KR.min.js (added) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-ko_KR.min.js Mon Feb 20 22:25:27 2017 @@ -0,0 +1,7 @@ +/*! + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) + * + * Copyright 2013-2017 bootstrap-select + * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) + */ +!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"í목ì ì íí´ì£¼ì¸ì",noneResultsText:"{0} ê²ì ê²°ê³¼ê° ììµëë¤",countSelectedText:function(a,b){return"{0}ê°ë¥¼ ì ííììµëë¤"},maxOptionsText:function(a,b){return["{n}ê°ê¹ì§ ì í ê°ë¥í©ëë¤","í´ë¹ 그룹ì {n}ê°ê¹ì§ ì í ê°ë¥í©ëë¤"]},selectAllText:"ì ì²´ì í",deselectAllText:"ì ì²´í´ì ",multipleSeparator:", "}}(a)}); \ No newline at end of file Propchange: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-ko_KR.min.js ------------------------------------------------------------------------------ svn:eol-style = native Added: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-lt_LT.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-lt_LT.js?rev=1783804&view=auto ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-lt_LT.js (added) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-lt_LT.js Mon Feb 20 22:25:27 2017 @@ -0,0 +1,44 @@ +/*! + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) + * + * Copyright 2013-2017 bootstrap-select + * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) + */ + +(function (root, factory) { + if (typeof define === 'function' && define.amd) { + // AMD. Register as an anonymous module unless amdModuleId is set + define(["jquery"], function (a0) { + return (factory(a0)); + }); + } else if (typeof module === 'object' && module.exports) { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory(require("jquery")); + } else { + factory(root["jQuery"]); + } +}(this, function (jQuery) { + +(function ($) { + $.fn.selectpicker.defaults = { + noneSelectedText: 'Niekas nepasirinkta', + noneResultsText: 'Niekas nesutapo su {0}', + countSelectedText: function (numSelected, numTotal) { + return (numSelected == 1) ? "{0} elementas pasirinktas" : "{0} elementai(-ų) pasirinkta"; + }, + maxOptionsText: function (numAll, numGroup) { + return [ + (numAll == 1) ? 'Pasiekta riba ({n} elementas daugiausiai)' : 'Riba pasiekta ({n} elementai(-ų) daugiausiai)', + (numGroup == 1) ? 'GrupÄs riba pasiekta ({n} elementas daugiausiai)' : 'GrupÄs riba pasiekta ({n} elementai(-ų) daugiausiai)' + ]; + }, + selectAllText: 'Pasirinkti visus', + deselectAllText: 'Atmesti visus', + multipleSeparator: ', ' + }; +})(jQuery); + + +})); Propchange: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-lt_LT.js ------------------------------------------------------------------------------ svn:eol-style = native Added: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-lt_LT.min.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-lt_LT.min.js?rev=1783804&view=auto ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-lt_LT.min.js (added) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-lt_LT.min.js Mon Feb 20 22:25:27 2017 @@ -0,0 +1,7 @@ +/*! + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) + * + * Copyright 2013-2017 bootstrap-select + * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) + */ +!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Niekas nepasirinkta",noneResultsText:"Niekas nesutapo su {0}",countSelectedText:function(a,b){return 1==a?"{0} elementas pasirinktas":"{0} elementai(-ų) pasirinkta"},maxOptionsText:function(a,b){return[1==a?"Pasiekta riba ({n} elementas daugiausiai)":"Riba pasiekta ({n} elementai(-ų) daugiausiai)",1==b?"GrupÄs riba pasiekta ({n} elementas daugiausiai)":"GrupÄs riba pasiekta ({n} elementai(-ų) daugiausiai)"]},selectAllText:"Pasirinkti visus",deselectAllText:"Atmesti visus",multipleSeparator:", "}}(a)}); \ No newline at end of file Propchange: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-lt_LT.min.js ------------------------------------------------------------------------------ svn:eol-style = native Added: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-nb_NO.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-nb_NO.js?rev=1783804&view=auto ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-nb_NO.js (added) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-nb_NO.js Mon Feb 20 22:25:27 2017 @@ -0,0 +1,44 @@ +/*! + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) + * + * Copyright 2013-2017 bootstrap-select + * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) + */ + +(function (root, factory) { + if (typeof define === 'function' && define.amd) { + // AMD. Register as an anonymous module unless amdModuleId is set + define(["jquery"], function (a0) { + return (factory(a0)); + }); + } else if (typeof module === 'object' && module.exports) { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory(require("jquery")); + } else { + factory(root["jQuery"]); + } +}(this, function (jQuery) { + +(function ($) { + $.fn.selectpicker.defaults = { + noneSelectedText: 'Ingen valgt', + noneResultsText: 'Søket gir ingen treff {0}', + countSelectedText: function (numSelected, numTotal) { + return (numSelected == 1) ? "{0} alternativ valgt" : "{0} alternativer valgt"; + }, + maxOptionsText: function (numAll, numGroup) { + return [ + (numAll == 1) ? 'Grense nÃ¥dd (maks {n} valg)' : 'Grense nÃ¥dd (maks {n} valg)', + (numGroup == 1) ? 'Grense for grupper nÃ¥dd (maks {n} grupper)' : 'Grense for grupper nÃ¥dd (maks {n} grupper)' + ]; + }, + selectAllText: 'Merk alle', + deselectAllText: 'Fjern alle', + multipleSeparator: ', ' + }; +})(jQuery); + + +})); Propchange: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-nb_NO.js ------------------------------------------------------------------------------ svn:eol-style = native Added: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-nb_NO.min.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-nb_NO.min.js?rev=1783804&view=auto ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-nb_NO.min.js (added) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-nb_NO.min.js Mon Feb 20 22:25:27 2017 @@ -0,0 +1,7 @@ +/*! + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) + * + * Copyright 2013-2017 bootstrap-select + * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) + */ +!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Ingen valgt",noneResultsText:"Søket gir ingen treff {0}",countSelectedText:function(a,b){return 1==a?"{0} alternativ valgt":"{0} alternativer valgt"},maxOptionsText:function(a,b){return["Grense nÃ¥dd (maks {n} valg)","Grense for grupper nÃ¥dd (maks {n} grupper)"]},selectAllText:"Merk alle",deselectAllText:"Fjern alle",multipleSeparator:", "}}(a)}); \ No newline at end of file Propchange: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-nb_NO.min.js ------------------------------------------------------------------------------ svn:eol-style = native Modified: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-nl_NL.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-nl_NL.js?rev=1783804&r1=1783803&r2=1783804&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-nl_NL.js (original) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-nl_NL.js Mon Feb 20 22:25:27 2017 @@ -1,9 +1,26 @@ /*! - * Bootstrap-select v1.6.5 (http://silviomoreto.github.io/bootstrap-select) + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) * - * Copyright 2013-2015 bootstrap-select + * Copyright 2013-2017 bootstrap-select * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) */ + +(function (root, factory) { + if (typeof define === 'function' && define.amd) { + // AMD. Register as an anonymous module unless amdModuleId is set + define(["jquery"], function (a0) { + return (factory(a0)); + }); + } else if (typeof module === 'object' && module.exports) { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory(require("jquery")); + } else { + factory(root["jQuery"]); + } +}(this, function (jQuery) { + (function ($) { $.fn.selectpicker.defaults = { noneSelectedText: 'Niets geselecteerd', @@ -13,3 +30,6 @@ multipleSeparator: ', ' }; })(jQuery); + + +})); Modified: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-nl_NL.min.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-nl_NL.min.js?rev=1783804&r1=1783803&r2=1783804&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-nl_NL.min.js (original) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-nl_NL.min.js Mon Feb 20 22:25:27 2017 @@ -1,7 +1,7 @@ /*! - * Bootstrap-select v1.6.5 (http://silviomoreto.github.io/bootstrap-select) + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) * - * Copyright 2013-2015 bootstrap-select + * Copyright 2013-2017 bootstrap-select * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) */ -!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Niets geselecteerd",noneResultsText:"Geen resultaten gevonden voor {0}",countSelectedText:"{0} van {1} geselecteerd",maxOptionsText:["Limiet bereikt ({n} {var} max)","Groep limiet bereikt ({n} {var} max)",["items","item"]],multipleSeparator:", "}}(jQuery); \ No newline at end of file +!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Niets geselecteerd",noneResultsText:"Geen resultaten gevonden voor {0}",countSelectedText:"{0} van {1} geselecteerd",maxOptionsText:["Limiet bereikt ({n} {var} max)","Groep limiet bereikt ({n} {var} max)",["items","item"]],multipleSeparator:", "}}(a)}); \ No newline at end of file Modified: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-pl_PL.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-pl_PL.js?rev=1783804&r1=1783803&r2=1783804&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-pl_PL.js (original) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-pl_PL.js Mon Feb 20 22:25:27 2017 @@ -1,9 +1,26 @@ /*! - * Bootstrap-select v1.6.5 (http://silviomoreto.github.io/bootstrap-select) + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) * - * Copyright 2013-2015 bootstrap-select + * Copyright 2013-2017 bootstrap-select * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) */ + +(function (root, factory) { + if (typeof define === 'function' && define.amd) { + // AMD. Register as an anonymous module unless amdModuleId is set + define(["jquery"], function (a0) { + return (factory(a0)); + }); + } else if (typeof module === 'object' && module.exports) { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory(require("jquery")); + } else { + factory(root["jQuery"]); + } +}(this, function (jQuery) { + (function ($) { $.fn.selectpicker.defaults = { noneSelectedText: 'Nic nie zaznaczono', @@ -15,3 +32,6 @@ multipleSeparator: ', ' }; })(jQuery); + + +})); Modified: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-pl_PL.min.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-pl_PL.min.js?rev=1783804&r1=1783803&r2=1783804&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-pl_PL.min.js (original) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-pl_PL.min.js Mon Feb 20 22:25:27 2017 @@ -1,7 +1,7 @@ /*! - * Bootstrap-select v1.6.5 (http://silviomoreto.github.io/bootstrap-select) + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) * - * Copyright 2013-2015 bootstrap-select + * Copyright 2013-2017 bootstrap-select * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) */ -!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nic nie zaznaczono",noneResultsText:"Brak wyników wyszukiwania {0}",countSelectedText:"Zaznaczono {0} z {1}",maxOptionsText:["OsiÄ gniÄto limit ({n} {var} max)","Limit grupy osiÄ gniÄty ({n} {var} max)",["elementy","element"]],selectAll:"Zaznacz wszystkie",deselectAll:"Odznacz wszystkie",multipleSeparator:", "}}(jQuery); \ No newline at end of file +!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nic nie zaznaczono",noneResultsText:"Brak wyników wyszukiwania {0}",countSelectedText:"Zaznaczono {0} z {1}",maxOptionsText:["OsiÄ gniÄto limit ({n} {var} max)","Limit grupy osiÄ gniÄty ({n} {var} max)",["elementy","element"]],selectAll:"Zaznacz wszystkie",deselectAll:"Odznacz wszystkie",multipleSeparator:", "}}(a)}); \ No newline at end of file Modified: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-pt_BR.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-pt_BR.js?rev=1783804&r1=1783803&r2=1783804&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-pt_BR.js (original) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-pt_BR.js Mon Feb 20 22:25:27 2017 @@ -1,9 +1,26 @@ /*! - * Bootstrap-select v1.6.5 (http://silviomoreto.github.io/bootstrap-select) + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) * - * Copyright 2013-2015 bootstrap-select + * Copyright 2013-2017 bootstrap-select * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) */ + +(function (root, factory) { + if (typeof define === 'function' && define.amd) { + // AMD. Register as an anonymous module unless amdModuleId is set + define(["jquery"], function (a0) { + return (factory(a0)); + }); + } else if (typeof module === 'object' && module.exports) { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory(require("jquery")); + } else { + factory(root["jQuery"]); + } +}(this, function (jQuery) { + (function ($) { $.fn.selectpicker.defaults = { noneSelectedText: 'Nada selecionado', @@ -13,3 +30,6 @@ multipleSeparator: ', ' }; })(jQuery); + + +})); Modified: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-pt_BR.min.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-pt_BR.min.js?rev=1783804&r1=1783803&r2=1783804&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-pt_BR.min.js (original) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-pt_BR.min.js Mon Feb 20 22:25:27 2017 @@ -1,7 +1,7 @@ /*! - * Bootstrap-select v1.6.5 (http://silviomoreto.github.io/bootstrap-select) + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) * - * Copyright 2013-2015 bootstrap-select + * Copyright 2013-2017 bootstrap-select * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) */ -!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nada selecionado",noneResultsText:"Nada encontrado contendo {0}",countSelectedText:"Selecionado {0} de {1}",maxOptionsText:["Limite excedido (máx. {n} {var})","Limite do grupo excedido (máx. {n} {var})",["itens","item"]],multipleSeparator:", "}}(jQuery); \ No newline at end of file +!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nada selecionado",noneResultsText:"Nada encontrado contendo {0}",countSelectedText:"Selecionado {0} de {1}",maxOptionsText:["Limite excedido (máx. {n} {var})","Limite do grupo excedido (máx. {n} {var})",["itens","item"]],multipleSeparator:", "}}(a)}); \ No newline at end of file Added: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-pt_PT.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-pt_PT.js?rev=1783804&view=auto ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-pt_PT.js (added) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-pt_PT.js Mon Feb 20 22:25:27 2017 @@ -0,0 +1,35 @@ +/*! + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) + * + * Copyright 2013-2017 bootstrap-select + * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) + */ + +(function (root, factory) { + if (typeof define === 'function' && define.amd) { + // AMD. Register as an anonymous module unless amdModuleId is set + define(["jquery"], function (a0) { + return (factory(a0)); + }); + } else if (typeof module === 'object' && module.exports) { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory(require("jquery")); + } else { + factory(root["jQuery"]); + } +}(this, function (jQuery) { + +(function ($) { +$.fn.selectpicker.defaults = { +noneSelectedText: 'Nenhum seleccionado', +noneResultsText: 'Sem resultados contendo {0}', +countSelectedText: 'Selecionado {0} de {1}', +maxOptionsText: ['Limite ultrapassado (máx. {n} {var})', 'Limite de seleções ultrapassado (máx. {n} {var})', ['itens', 'item']], +multipleSeparator: ', ' +}; +})(jQuery); + + +})); Propchange: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-pt_PT.js ------------------------------------------------------------------------------ svn:eol-style = native Modified: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-pt_PT.min.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-pt_PT.min.js?rev=1783804&r1=1783803&r2=1783804&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-pt_PT.min.js (original) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-pt_PT.min.js Mon Feb 20 22:25:27 2017 @@ -1 +1,7 @@ -!function(e){e.fn.selectpicker.defaults={noneSelectedText:"Nenhum seleccionado",noneResultsText:"Sem resultados contendo {0}",countSelectedText:"Selecionado {0} de {1}",maxOptionsText:["Limite ultrapassado (máx. {n} {var})","Limite de seleções ultrapassado (máx. {n} {var})",["itens","item"]],multipleSeparator:", "}}(jQuery); +/*! + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) + * + * Copyright 2013-2017 bootstrap-select + * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) + */ +!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nenhum seleccionado",noneResultsText:"Sem resultados contendo {0}",countSelectedText:"Selecionado {0} de {1}",maxOptionsText:["Limite ultrapassado (máx. {n} {var})","Limite de seleções ultrapassado (máx. {n} {var})",["itens","item"]],multipleSeparator:", "}}(a)}); \ No newline at end of file Modified: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-ro_RO.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-ro_RO.js?rev=1783804&r1=1783803&r2=1783804&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-ro_RO.js (original) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-ro_RO.js Mon Feb 20 22:25:27 2017 @@ -1,9 +1,26 @@ /*! - * Bootstrap-select v1.6.5 (http://silviomoreto.github.io/bootstrap-select) + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) * - * Copyright 2013-2015 bootstrap-select + * Copyright 2013-2017 bootstrap-select * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) */ + +(function (root, factory) { + if (typeof define === 'function' && define.amd) { + // AMD. Register as an anonymous module unless amdModuleId is set + define(["jquery"], function (a0) { + return (factory(a0)); + }); + } else if (typeof module === 'object' && module.exports) { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory(require("jquery")); + } else { + factory(root["jQuery"]); + } +}(this, function (jQuery) { + (function ($) { $.fn.selectpicker.defaults = { noneSelectedText: 'Nu a fost selectat nimic', @@ -13,3 +30,6 @@ multipleSeparator: ', ' }; })(jQuery); + + +})); Modified: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-ro_RO.min.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-ro_RO.min.js?rev=1783804&r1=1783803&r2=1783804&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-ro_RO.min.js (original) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-ro_RO.min.js Mon Feb 20 22:25:27 2017 @@ -1,7 +1,7 @@ /*! - * Bootstrap-select v1.6.5 (http://silviomoreto.github.io/bootstrap-select) + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) * - * Copyright 2013-2015 bootstrap-select + * Copyright 2013-2017 bootstrap-select * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) */ -!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nu a fost selectat nimic",noneResultsText:"Nu exista niciun rezultat {0}",countSelectedText:"{0} din {1} selectat(e)",maxOptionsText:["Limita a fost atinsa ({n} {var} max)","Limita de grup a fost atinsa ({n} {var} max)",["iteme","item"]],multipleSeparator:", "}}(jQuery); \ No newline at end of file +!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nu a fost selectat nimic",noneResultsText:"Nu exista niciun rezultat {0}",countSelectedText:"{0} din {1} selectat(e)",maxOptionsText:["Limita a fost atinsa ({n} {var} max)","Limita de grup a fost atinsa ({n} {var} max)",["iteme","item"]],multipleSeparator:", "}}(a)}); \ No newline at end of file Modified: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-ru_RU.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-ru_RU.js?rev=1783804&r1=1783803&r2=1783804&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-ru_RU.js (original) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-ru_RU.js Mon Feb 20 22:25:27 2017 @@ -1,16 +1,38 @@ /*! - * Bootstrap-select v1.6.5 (http://silviomoreto.github.io/bootstrap-select) + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) * - * Copyright 2013-2015 bootstrap-select + * Copyright 2013-2017 bootstrap-select * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) */ + +(function (root, factory) { + if (typeof define === 'function' && define.amd) { + // AMD. Register as an anonymous module unless amdModuleId is set + define(["jquery"], function (a0) { + return (factory(a0)); + }); + } else if (typeof module === 'object' && module.exports) { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory(require("jquery")); + } else { + factory(root["jQuery"]); + } +}(this, function (jQuery) { + (function ($) { $.fn.selectpicker.defaults = { noneSelectedText: 'ÐиÑего не вÑбÑано', noneResultsText: 'Совпадений не найдено {0}', countSelectedText: 'ÐÑбÑано {0} из {1}', - maxOptionsText: ['ÐоÑÑигнÑÑ Ð¿Ñедел ({n} {var} макÑимÑм)', 'ÐоÑÑигнÑÑ Ð¿Ñедел в гÑÑппе ({n} {var} макÑимÑм)', ['items', 'item']], + maxOptionsText: ['ÐоÑÑигнÑÑ Ð¿Ñедел ({n} {var} макÑимÑм)', 'ÐоÑÑигнÑÑ Ð¿Ñедел в гÑÑппе ({n} {var} макÑимÑм)', ['ÑÑ.', 'ÑÑ.']], doneButtonText: 'ÐакÑÑÑÑ', + selectAllText: 'ÐÑбÑаÑÑ Ð²Ñе', + deselectAllText: 'ÐÑмениÑÑ Ð²Ñе', multipleSeparator: ', ' }; })(jQuery); + + +})); Modified: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-ru_RU.min.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-ru_RU.min.js?rev=1783804&r1=1783803&r2=1783804&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-ru_RU.min.js (original) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-ru_RU.min.js Mon Feb 20 22:25:27 2017 @@ -1,7 +1,7 @@ /*! - * Bootstrap-select v1.6.5 (http://silviomoreto.github.io/bootstrap-select) + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) * - * Copyright 2013-2015 bootstrap-select + * Copyright 2013-2017 bootstrap-select * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) */ -!function(a){a.fn.selectpicker.defaults={noneSelectedText:"ÐиÑего не вÑбÑано",noneResultsText:"Совпадений не найдено {0}",countSelectedText:"ÐÑбÑано {0} из {1}",maxOptionsText:["ÐоÑÑигнÑÑ Ð¿Ñедел ({n} {var} макÑимÑм)","ÐоÑÑигнÑÑ Ð¿Ñедел в гÑÑппе ({n} {var} макÑимÑм)",["items","item"]],doneButtonText:"ÐакÑÑÑÑ",multipleSeparator:", "}}(jQuery); \ No newline at end of file +!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"ÐиÑего не вÑбÑано",noneResultsText:"Совпадений не найдено {0}",countSelectedText:"ÐÑбÑано {0} из {1}",maxOptionsText:["ÐоÑÑигнÑÑ Ð¿Ñедел ({n} {var} макÑимÑм)","ÐоÑÑигнÑÑ Ð¿Ñедел в гÑÑппе ({n} {var} макÑимÑм)",["ÑÑ.","ÑÑ."]],doneButtonText:"ÐакÑÑÑÑ",selectAllText:"ÐÑбÑаÑÑ Ð²Ñе",deselectAllText:"ÐÑмениÑÑ Ð²Ñе",multipleSeparator:", "}}(a)}); \ No newline at end of file Added: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-sk_SK.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-sk_SK.js?rev=1783804&view=auto ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-sk_SK.js (added) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-sk_SK.js Mon Feb 20 22:25:27 2017 @@ -0,0 +1,37 @@ +/*! + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) + * + * Copyright 2013-2017 bootstrap-select + * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) + */ + +(function (root, factory) { + if (typeof define === 'function' && define.amd) { + // AMD. Register as an anonymous module unless amdModuleId is set + define(["jquery"], function (a0) { + return (factory(a0)); + }); + } else if (typeof module === 'object' && module.exports) { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory(require("jquery")); + } else { + factory(root["jQuery"]); + } +}(this, function (jQuery) { + +(function ($) { + $.fn.selectpicker.defaults = { + noneSelectedText: 'Vyberte zo zoznamu', + noneResultsText: 'Pre výraz {0} neboli nájdené žiadne výsledky', + countSelectedText: 'Vybrané {0} z {1}', + maxOptionsText: ['Limit prekroÄený ({n} {var} max)', 'Limit skupiny prekroÄený ({n} {var} max)', ['položiek', 'položka']], + selectAllText: 'VybraÅ¥ vÅ¡etky', + deselectAllText: 'ZruÅ¡iÅ¥ výber', + multipleSeparator: ', ' + }; +})(jQuery); + + +})); Propchange: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-sk_SK.js ------------------------------------------------------------------------------ svn:eol-style = native Added: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-sk_SK.min.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-sk_SK.min.js?rev=1783804&view=auto ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-sk_SK.min.js (added) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-sk_SK.min.js Mon Feb 20 22:25:27 2017 @@ -0,0 +1,7 @@ +/*! + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) + * + * Copyright 2013-2017 bootstrap-select + * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) + */ +!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Vyberte zo zoznamu",noneResultsText:"Pre výraz {0} neboli nájdené žiadne výsledky",countSelectedText:"Vybrané {0} z {1}",maxOptionsText:["Limit prekroÄený ({n} {var} max)","Limit skupiny prekroÄený ({n} {var} max)",["položiek","položka"]],selectAllText:"VybraÅ¥ vÅ¡etky",deselectAllText:"ZruÅ¡iÅ¥ výber",multipleSeparator:", "}}(a)}); \ No newline at end of file Propchange: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-sk_SK.min.js ------------------------------------------------------------------------------ svn:eol-style = native Modified: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-sl_SI.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-sl_SI.js?rev=1783804&r1=1783803&r2=1783804&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-sl_SI.js (original) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-sl_SI.js Mon Feb 20 22:25:27 2017 @@ -1,9 +1,26 @@ /*! - * Bootstrap-select v1.6.5 (http://silviomoreto.github.io/bootstrap-select) + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) * - * Copyright 2013-2015 bootstrap-select + * Copyright 2013-2017 bootstrap-select * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) */ + +(function (root, factory) { + if (typeof define === 'function' && define.amd) { + // AMD. Register as an anonymous module unless amdModuleId is set + define(["jquery"], function (a0) { + return (factory(a0)); + }); + } else if (typeof module === 'object' && module.exports) { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory(require("jquery")); + } else { + factory(root["jQuery"]); + } +}(this, function (jQuery) { + (function ($) { $.fn.selectpicker.defaults = { noneSelectedText: 'NiÄ izbranega', @@ -22,3 +39,6 @@ multipleSeparator: ', ' }; })(jQuery); + + +})); Modified: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-sl_SI.min.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-sl_SI.min.js?rev=1783804&r1=1783803&r2=1783804&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-sl_SI.min.js (original) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-sl_SI.min.js Mon Feb 20 22:25:27 2017 @@ -1,7 +1,7 @@ /*! - * Bootstrap-select v1.6.5 (http://silviomoreto.github.io/bootstrap-select) + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) * - * Copyright 2013-2015 bootstrap-select + * Copyright 2013-2017 bootstrap-select * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) */ -!function(a){a.fn.selectpicker.defaults={noneSelectedText:"NiÄ izbranega",noneResultsText:"Ni zadetkov za {0}",countSelectedText:function(){"Å tevilo izbranih: {0}"},maxOptionsText:function(){return["Omejitev dosežena (max. izbranih: {n})","Omejitev skupine dosežena (max. izbranih: {n})"]},selectAllText:"Izberi vse",deselectAllText:"PoÄisti izbor",multipleSeparator:", "}}(jQuery); \ No newline at end of file +!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"NiÄ izbranega",noneResultsText:"Ni zadetkov za {0}",countSelectedText:function(a,b){"Å tevilo izbranih: {0}"},maxOptionsText:function(a,b){return["Omejitev dosežena (max. izbranih: {n})","Omejitev skupine dosežena (max. izbranih: {n})"]},selectAllText:"Izberi vse",deselectAllText:"PoÄisti izbor",multipleSeparator:", "}}(a)}); \ No newline at end of file Modified: manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-sv_SE.js URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-sv_SE.js?rev=1783804&r1=1783803&r2=1783804&view=diff ============================================================================== --- manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-sv_SE.js (original) +++ manifoldcf/branches/CONNECTORS-1196/framework/crawler-ui/src/main/webapp/bootstrap-select/js/i18n/defaults-sv_SE.js Mon Feb 20 22:25:27 2017 @@ -1,9 +1,26 @@ /*! - * Bootstrap-select v1.6.5 (http://silviomoreto.github.io/bootstrap-select) + * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select) * - * Copyright 2013-2015 bootstrap-select + * Copyright 2013-2017 bootstrap-select * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE) */ + +(function (root, factory) { + if (typeof define === 'function' && define.amd) { + // AMD. Register as an anonymous module unless amdModuleId is set + define(["jquery"], function (a0) { + return (factory(a0)); + }); + } else if (typeof module === 'object' && module.exports) { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory(require("jquery")); + } else { + factory(root["jQuery"]); + } +}(this, function (jQuery) { + (function ($) { $.fn.selectpicker.defaults = { noneSelectedText: 'Inget valt', @@ -22,3 +39,6 @@ multipleSeparator: ', ' }; })(jQuery); + + +}));
