bootstrap4-select-rails 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/CHANGELOG.md +9 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE +46 -0
  6. data/README.md +40 -0
  7. data/Rakefile +32 -0
  8. data/bootstrap4-select-rails.gemspec +23 -0
  9. data/lib/bootstrap4-select-rails.rb +14 -0
  10. data/lib/bootstrap4-select-rails/engine.rb +8 -0
  11. data/lib/bootstrap4-select-rails/railtie.rb +7 -0
  12. data/lib/bootstrap4-select-rails/version.rb +7 -0
  13. data/vendor/assets/javascripts/.jshintrc +15 -0
  14. data/vendor/assets/javascripts/bootstrap-select.js +1860 -0
  15. data/vendor/assets/javascripts/bootstrap-select.min.js +7 -0
  16. data/vendor/assets/javascripts/i18n/defaults-ar_AR.js +49 -0
  17. data/vendor/assets/javascripts/i18n/defaults-ar_AR.min.js +12 -0
  18. data/vendor/assets/javascripts/i18n/defaults-bg_BG.js +44 -0
  19. data/vendor/assets/javascripts/i18n/defaults-bg_BG.min.js +7 -0
  20. data/vendor/assets/javascripts/i18n/defaults-cro_CRO.js +44 -0
  21. data/vendor/assets/javascripts/i18n/defaults-cro_CRO.min.js +7 -0
  22. data/vendor/assets/javascripts/i18n/defaults-cs_CZ.js +35 -0
  23. data/vendor/assets/javascripts/i18n/defaults-cs_CZ.min.js +7 -0
  24. data/vendor/assets/javascripts/i18n/defaults-da_DK.js +44 -0
  25. data/vendor/assets/javascripts/i18n/defaults-da_DK.min.js +7 -0
  26. data/vendor/assets/javascripts/i18n/defaults-de_DE.js +44 -0
  27. data/vendor/assets/javascripts/i18n/defaults-de_DE.min.js +7 -0
  28. data/vendor/assets/javascripts/i18n/defaults-en_US.js +44 -0
  29. data/vendor/assets/javascripts/i18n/defaults-en_US.min.js +7 -0
  30. data/vendor/assets/javascripts/i18n/defaults-es_CL.js +37 -0
  31. data/vendor/assets/javascripts/i18n/defaults-es_CL.min.js +7 -0
  32. data/vendor/assets/javascripts/i18n/defaults-es_ES.js +37 -0
  33. data/vendor/assets/javascripts/i18n/defaults-es_ES.min.js +7 -0
  34. data/vendor/assets/javascripts/i18n/defaults-et_EE.js +23 -0
  35. data/vendor/assets/javascripts/i18n/defaults-eu.js +35 -0
  36. data/vendor/assets/javascripts/i18n/defaults-eu.min.js +7 -0
  37. data/vendor/assets/javascripts/i18n/defaults-fa_IR.js +37 -0
  38. data/vendor/assets/javascripts/i18n/defaults-fa_IR.min.js +7 -0
  39. data/vendor/assets/javascripts/i18n/defaults-fi_FI.js +44 -0
  40. data/vendor/assets/javascripts/i18n/defaults-fi_FI.min.js +7 -0
  41. data/vendor/assets/javascripts/i18n/defaults-fr_FR.js +44 -0
  42. data/vendor/assets/javascripts/i18n/defaults-fr_FR.min.js +7 -0
  43. data/vendor/assets/javascripts/i18n/defaults-hu_HU.js +44 -0
  44. data/vendor/assets/javascripts/i18n/defaults-hu_HU.min.js +7 -0
  45. data/vendor/assets/javascripts/i18n/defaults-id_ID.js +37 -0
  46. data/vendor/assets/javascripts/i18n/defaults-id_ID.min.js +7 -0
  47. data/vendor/assets/javascripts/i18n/defaults-it_IT.js +39 -0
  48. data/vendor/assets/javascripts/i18n/defaults-it_IT.min.js +7 -0
  49. data/vendor/assets/javascripts/i18n/defaults-ko_KR.js +44 -0
  50. data/vendor/assets/javascripts/i18n/defaults-ko_KR.min.js +7 -0
  51. data/vendor/assets/javascripts/i18n/defaults-lt_LT.js +44 -0
  52. data/vendor/assets/javascripts/i18n/defaults-lt_LT.min.js +7 -0
  53. data/vendor/assets/javascripts/i18n/defaults-nb_NO.js +44 -0
  54. data/vendor/assets/javascripts/i18n/defaults-nb_NO.min.js +7 -0
  55. data/vendor/assets/javascripts/i18n/defaults-nl_NL.js +37 -0
  56. data/vendor/assets/javascripts/i18n/defaults-nl_NL.min.js +7 -0
  57. data/vendor/assets/javascripts/i18n/defaults-pl_PL.js +37 -0
  58. data/vendor/assets/javascripts/i18n/defaults-pl_PL.min.js +7 -0
  59. data/vendor/assets/javascripts/i18n/defaults-pt_BR.js +35 -0
  60. data/vendor/assets/javascripts/i18n/defaults-pt_BR.min.js +7 -0
  61. data/vendor/assets/javascripts/i18n/defaults-pt_PT.js +35 -0
  62. data/vendor/assets/javascripts/i18n/defaults-pt_PT.min.js +7 -0
  63. data/vendor/assets/javascripts/i18n/defaults-ro_RO.js +35 -0
  64. data/vendor/assets/javascripts/i18n/defaults-ro_RO.min.js +7 -0
  65. data/vendor/assets/javascripts/i18n/defaults-ru_RU.js +38 -0
  66. data/vendor/assets/javascripts/i18n/defaults-ru_RU.min.js +7 -0
  67. data/vendor/assets/javascripts/i18n/defaults-sk_SK.js +37 -0
  68. data/vendor/assets/javascripts/i18n/defaults-sk_SK.min.js +7 -0
  69. data/vendor/assets/javascripts/i18n/defaults-sl_SI.js +44 -0
  70. data/vendor/assets/javascripts/i18n/defaults-sl_SI.min.js +7 -0
  71. data/vendor/assets/javascripts/i18n/defaults-sv_SE.js +44 -0
  72. data/vendor/assets/javascripts/i18n/defaults-sv_SE.min.js +7 -0
  73. data/vendor/assets/javascripts/i18n/defaults-tr_TR.js +44 -0
  74. data/vendor/assets/javascripts/i18n/defaults-tr_TR.min.js +7 -0
  75. data/vendor/assets/javascripts/i18n/defaults-ua_UA.js +35 -0
  76. data/vendor/assets/javascripts/i18n/defaults-ua_UA.min.js +7 -0
  77. data/vendor/assets/javascripts/i18n/defaults-zh_CN.js +35 -0
  78. data/vendor/assets/javascripts/i18n/defaults-zh_CN.min.js +7 -0
  79. data/vendor/assets/javascripts/i18n/defaults-zh_TW.js +37 -0
  80. data/vendor/assets/javascripts/i18n/defaults-zh_TW.min.js +7 -0
  81. data/vendor/assets/stylesheets/bootstrap-select.css.map +7 -0
  82. data/vendor/assets/stylesheets/bootstrap-select.scss +421 -0
  83. data/vendor/assets/stylesheets/variables.scss +9 -0
  84. data/version.txt +1 -0
  85. metadata +155 -0
@@ -0,0 +1,7 @@
1
+ /*!
2
+ * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
3
+ *
4
+ * Copyright 2013-2017 bootstrap-select
5
+ * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6
+ */
7
+ !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)});
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Translated default messages for bootstrap-select.
3
+ * Locale: ET (Eesti keel)
4
+ * Region: EE (Estonia)
5
+ */
6
+ (function ($) {
7
+ $.fn.selectpicker.defaults = {
8
+ noneSelectedText: 'Valikut pole tehtud',
9
+ noneResultsText: 'Otsingule {0} ei ole vasteid',
10
+ countSelectedText: function (numSelected, numTotal) {
11
+ return (numSelected == 1) ? "{0} item selected" : "{0} items selected";
12
+ },
13
+ maxOptionsText: function (numAll, numGroup) {
14
+ return [
15
+ 'Limiit on {n} max',
16
+ 'Globaalne limiit on {n} max'
17
+ ];
18
+ },
19
+ selectAllText: 'Vali kõik',
20
+ deselectAllText: 'Tühista kõik',
21
+ multipleSeparator: ', '
22
+ };
23
+ })(jQuery);
@@ -0,0 +1,35 @@
1
+ /*!
2
+ * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
3
+ *
4
+ * Copyright 2013-2017 bootstrap-select
5
+ * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6
+ */
7
+
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) {
12
+ return (factory(a0));
13
+ });
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,
17
+ // like Node.
18
+ module.exports = factory(require("jquery"));
19
+ } else {
20
+ factory(root["jQuery"]);
21
+ }
22
+ }(this, function (jQuery) {
23
+
24
+ (function ($) {
25
+ $.fn.selectpicker.defaults = {
26
+ noneSelectedText: 'Hautapenik ez',
27
+ noneResultsText: 'Emaitzarik ez {0}',
28
+ countSelectedText: '{1}(e)tik {0} hautatuta',
29
+ maxOptionsText: ['Mugara iritsita ({n} {var} gehienez)', 'Taldearen mugara iritsita ({n} {var} gehienez)', ['elementu', 'elementu']],
30
+ multipleSeparator: ', '
31
+ };
32
+ })(jQuery);
33
+
34
+
35
+ }));
@@ -0,0 +1,7 @@
1
+ /*!
2
+ * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
3
+ *
4
+ * Copyright 2013-2017 bootstrap-select
5
+ * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6
+ */
7
+ !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)});
@@ -0,0 +1,37 @@
1
+ /*!
2
+ * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
3
+ *
4
+ * Copyright 2013-2017 bootstrap-select
5
+ * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6
+ */
7
+
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) {
12
+ return (factory(a0));
13
+ });
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,
17
+ // like Node.
18
+ module.exports = factory(require("jquery"));
19
+ } else {
20
+ factory(root["jQuery"]);
21
+ }
22
+ }(this, function (jQuery) {
23
+
24
+ (function ($) {
25
+ $.fn.selectpicker.defaults = {
26
+ noneSelectedText: 'چیزی انتخاب نشده است',
27
+ noneResultsText: 'هیج مشابهی برای {0} پیدا نشد',
28
+ countSelectedText: "{0} از {1} مورد انتخاب شده",
29
+ maxOptionsText: ['بیشتر ممکن نیست {حداکثر {n} عدد}', 'بیشتر ممکن نیست {حداکثر {n} عدد}'],
30
+ selectAllText: 'انتخاب همه',
31
+ deselectAllText: 'انتخاب هیچ کدام',
32
+ multipleSeparator: ', '
33
+ };
34
+ })(jQuery);
35
+
36
+
37
+ }));
@@ -0,0 +1,7 @@
1
+ /*!
2
+ * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
3
+ *
4
+ * Copyright 2013-2017 bootstrap-select
5
+ * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6
+ */
7
+ !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)});
@@ -0,0 +1,44 @@
1
+ /*!
2
+ * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
3
+ *
4
+ * Copyright 2013-2017 bootstrap-select
5
+ * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6
+ */
7
+
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) {
12
+ return (factory(a0));
13
+ });
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,
17
+ // like Node.
18
+ module.exports = factory(require("jquery"));
19
+ } else {
20
+ factory(root["jQuery"]);
21
+ }
22
+ }(this, function (jQuery) {
23
+
24
+ (function ($) {
25
+ $.fn.selectpicker.defaults = {
26
+ noneSelectedText: 'Ei valintoja',
27
+ noneResultsText: 'Ei hakutuloksia {0}',
28
+ countSelectedText: function (numSelected, numTotal) {
29
+ return (numSelected == 1) ? "{0} valittu" : "{0} valitut";
30
+ },
31
+ maxOptionsText: function (numAll, numGroup) {
32
+ return [
33
+ (numAll == 1) ? 'Valintojen maksimimäärä ({n} saavutettu)' : 'Valintojen maksimimäärä ({n} saavutettu)',
34
+ (numGroup == 1) ? 'Ryhmän maksimimäärä ({n} saavutettu)' : 'Ryhmän maksimimäärä ({n} saavutettu)'
35
+ ];
36
+ },
37
+ selectAllText: 'Valitse kaikki',
38
+ deselectAllText: 'Poista kaikki',
39
+ multipleSeparator: ', '
40
+ };
41
+ })(jQuery);
42
+
43
+
44
+ }));
@@ -0,0 +1,7 @@
1
+ /*!
2
+ * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
3
+ *
4
+ * Copyright 2013-2017 bootstrap-select
5
+ * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6
+ */
7
+ !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)});
@@ -0,0 +1,44 @@
1
+ /*!
2
+ * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
3
+ *
4
+ * Copyright 2013-2017 bootstrap-select
5
+ * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6
+ */
7
+
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) {
12
+ return (factory(a0));
13
+ });
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,
17
+ // like Node.
18
+ module.exports = factory(require("jquery"));
19
+ } else {
20
+ factory(root["jQuery"]);
21
+ }
22
+ }(this, function (jQuery) {
23
+
24
+ (function ($) {
25
+ $.fn.selectpicker.defaults = {
26
+ noneSelectedText: 'Aucune sélection',
27
+ noneResultsText: 'Aucun résultat pour {0}',
28
+ countSelectedText: function (numSelected, numTotal) {
29
+ return (numSelected > 1) ? "{0} éléments sélectionnés" : "{0} élément sélectionné";
30
+ },
31
+ maxOptionsText: function (numAll, numGroup) {
32
+ return [
33
+ (numAll > 1) ? 'Limite atteinte ({n} éléments max)' : 'Limite atteinte ({n} élément max)',
34
+ (numGroup > 1) ? 'Limite du groupe atteinte ({n} éléments max)' : 'Limite du groupe atteinte ({n} élément max)'
35
+ ];
36
+ },
37
+ multipleSeparator: ', ',
38
+ selectAllText: 'Tout Sélectionner',
39
+ deselectAllText: 'Tout Dé-selectionner',
40
+ };
41
+ })(jQuery);
42
+
43
+
44
+ }));
@@ -0,0 +1,7 @@
1
+ /*!
2
+ * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
3
+ *
4
+ * Copyright 2013-2017 bootstrap-select
5
+ * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6
+ */
7
+ !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)});
@@ -0,0 +1,44 @@
1
+ /*!
2
+ * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
3
+ *
4
+ * Copyright 2013-2017 bootstrap-select
5
+ * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6
+ */
7
+
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) {
12
+ return (factory(a0));
13
+ });
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,
17
+ // like Node.
18
+ module.exports = factory(require("jquery"));
19
+ } else {
20
+ factory(root["jQuery"]);
21
+ }
22
+ }(this, function (jQuery) {
23
+
24
+ (function ($) {
25
+ $.fn.selectpicker.defaults = {
26
+ noneSelectedText: 'Válasszon!',
27
+ noneResultsText: 'Nincs találat {0}',
28
+ countSelectedText: function (numSelected, numTotal) {
29
+ return '{0} elem kiválasztva';
30
+ },
31
+ maxOptionsText: function (numAll, numGroup) {
32
+ return [
33
+ 'Legfeljebb {n} elem választható',
34
+ 'A csoportban legfeljebb {n} elem választható'
35
+ ];
36
+ },
37
+ selectAllText: 'Mind',
38
+ deselectAllText: 'Egyik sem',
39
+ multipleSeparator: ', '
40
+ };
41
+ })(jQuery);
42
+
43
+
44
+ }));
@@ -0,0 +1,7 @@
1
+ /*!
2
+ * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
3
+ *
4
+ * Copyright 2013-2017 bootstrap-select
5
+ * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6
+ */
7
+ !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)});
@@ -0,0 +1,37 @@
1
+ /*!
2
+ * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
3
+ *
4
+ * Copyright 2013-2017 bootstrap-select
5
+ * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6
+ */
7
+
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) {
12
+ return (factory(a0));
13
+ });
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,
17
+ // like Node.
18
+ module.exports = factory(require("jquery"));
19
+ } else {
20
+ factory(root["jQuery"]);
21
+ }
22
+ }(this, function (jQuery) {
23
+
24
+ (function ($) {
25
+ $.fn.selectpicker.defaults = {
26
+ noneSelectedText: 'Tidak ada yang dipilih',
27
+ noneResultsText: 'Tidak ada yang cocok {0}',
28
+ countSelectedText: '{0} terpilih',
29
+ maxOptionsText: ['Mencapai batas (maksimum {n})', 'Mencapai batas grup (maksimum {n})'],
30
+ selectAllText: 'Pilih Semua',
31
+ deselectAllText: 'Hapus Semua',
32
+ multipleSeparator: ', '
33
+ };
34
+ })(jQuery);
35
+
36
+
37
+ }));
@@ -0,0 +1,7 @@
1
+ /*!
2
+ * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
3
+ *
4
+ * Copyright 2013-2017 bootstrap-select
5
+ * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6
+ */
7
+ !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)});
@@ -0,0 +1,39 @@
1
+ /*!
2
+ * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
3
+ *
4
+ * Copyright 2013-2017 bootstrap-select
5
+ * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6
+ */
7
+
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) {
12
+ return (factory(a0));
13
+ });
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,
17
+ // like Node.
18
+ module.exports = factory(require("jquery"));
19
+ } else {
20
+ factory(root["jQuery"]);
21
+ }
22
+ }(this, function (jQuery) {
23
+
24
+ (function ($) {
25
+ $.fn.selectpicker.defaults = {
26
+ noneSelectedText: 'Nessuna selezione',
27
+ noneResultsText: 'Nessun risultato per {0}',
28
+ countSelectedText: function (numSelected, numTotal){
29
+ return (numSelected == 1) ? 'Selezionato {0} di {1}' : 'Selezionati {0} di {1}';
30
+ },
31
+ maxOptionsText: ['Limite raggiunto ({n} {var} max)', 'Limite del gruppo raggiunto ({n} {var} max)', ['elementi', 'elemento']],
32
+ multipleSeparator: ', ',
33
+ selectAllText: 'Seleziona Tutto',
34
+ deselectAllText: 'Deseleziona Tutto'
35
+ };
36
+ })(jQuery);
37
+
38
+
39
+ }));
@@ -0,0 +1,7 @@
1
+ /*!
2
+ * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
3
+ *
4
+ * Copyright 2013-2017 bootstrap-select
5
+ * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6
+ */
7
+ !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)});
@@ -0,0 +1,44 @@
1
+ /*!
2
+ * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
3
+ *
4
+ * Copyright 2013-2017 bootstrap-select
5
+ * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6
+ */
7
+
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) {
12
+ return (factory(a0));
13
+ });
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,
17
+ // like Node.
18
+ module.exports = factory(require("jquery"));
19
+ } else {
20
+ factory(root["jQuery"]);
21
+ }
22
+ }(this, function (jQuery) {
23
+
24
+ (function ($) {
25
+ $.fn.selectpicker.defaults = {
26
+ noneSelectedText: '항목을 선택해주세요',
27
+ noneResultsText: '{0} 검색 결과가 없습니다',
28
+ countSelectedText: function (numSelected, numTotal) {
29
+ return "{0}개를 선택하였습니다";
30
+ },
31
+ maxOptionsText: function (numAll, numGroup) {
32
+ return [
33
+ '{n}개까지 선택 가능합니다',
34
+ '해당 그룹은 {n}개까지 선택 가능합니다'
35
+ ];
36
+ },
37
+ selectAllText: '전체선택',
38
+ deselectAllText: '전체해제',
39
+ multipleSeparator: ', '
40
+ };
41
+ })(jQuery);
42
+
43
+
44
+ }));
@@ -0,0 +1,7 @@
1
+ /*!
2
+ * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
3
+ *
4
+ * Copyright 2013-2017 bootstrap-select
5
+ * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6
+ */
7
+ !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)});
@@ -0,0 +1,44 @@
1
+ /*!
2
+ * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
3
+ *
4
+ * Copyright 2013-2017 bootstrap-select
5
+ * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6
+ */
7
+
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) {
12
+ return (factory(a0));
13
+ });
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,
17
+ // like Node.
18
+ module.exports = factory(require("jquery"));
19
+ } else {
20
+ factory(root["jQuery"]);
21
+ }
22
+ }(this, function (jQuery) {
23
+
24
+ (function ($) {
25
+ $.fn.selectpicker.defaults = {
26
+ noneSelectedText: 'Niekas nepasirinkta',
27
+ noneResultsText: 'Niekas nesutapo su {0}',
28
+ countSelectedText: function (numSelected, numTotal) {
29
+ return (numSelected == 1) ? "{0} elementas pasirinktas" : "{0} elementai(-ų) pasirinkta";
30
+ },
31
+ maxOptionsText: function (numAll, numGroup) {
32
+ return [
33
+ (numAll == 1) ? 'Pasiekta riba ({n} elementas daugiausiai)' : 'Riba pasiekta ({n} elementai(-ų) daugiausiai)',
34
+ (numGroup == 1) ? 'Grupės riba pasiekta ({n} elementas daugiausiai)' : 'Grupės riba pasiekta ({n} elementai(-ų) daugiausiai)'
35
+ ];
36
+ },
37
+ selectAllText: 'Pasirinkti visus',
38
+ deselectAllText: 'Atmesti visus',
39
+ multipleSeparator: ', '
40
+ };
41
+ })(jQuery);
42
+
43
+
44
+ }));