defaults-pt_PT.js 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. /*!
  2. * Bootstrap-select v1.11.2 (http://silviomoreto.github.io/bootstrap-select)
  3. *
  4. * Copyright 2013-2016 bootstrap-select
  5. * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
  6. */
  7. (function (root, factory) {
  8. if (typeof define === 'function' && define.amd) {
  9. // AMD. Register as an anonymous module unless amdModuleId is set
  10. define(["jquery"], function (a0) {
  11. return (factory(a0));
  12. });
  13. } else if (typeof exports === 'object') {
  14. // Node. Does not work with strict CommonJS, but
  15. // only CommonJS-like environments that support module.exports,
  16. // like Node.
  17. module.exports = factory(require("jquery"));
  18. } else {
  19. factory(jQuery);
  20. }
  21. }(this, function (jQuery) {
  22. (function ($) {
  23. $.fn.selectpicker.defaults = {
  24. noneSelectedText: 'Nenhum seleccionado',
  25. noneResultsText: 'Sem resultados contendo {0}',
  26. countSelectedText: 'Selecionado {0} de {1}',
  27. maxOptionsText: ['Limite ultrapassado (máx. {n} {var})', 'Limite de seleções ultrapassado (máx. {n} {var})', ['itens', 'item']],
  28. multipleSeparator: ', '
  29. };
  30. })(jQuery);
  31. }));