defaults-fr_FR.js 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*!
  2. * Bootstrap-select v1.7.3 (http://silviomoreto.github.io/bootstrap-select)
  3. *
  4. * Copyright 2013-2015 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 () {
  22. (function ($) {
  23. $.fn.selectpicker.defaults = {
  24. noneSelectedText: 'Aucune sélection',
  25. noneResultsText: 'Aucun résultat pour {0}',
  26. countSelectedText: function (numSelected, numTotal) {
  27. return (numSelected > 1) ? "{0} éléments sélectionnés" : "{0} élément sélectionné";
  28. },
  29. maxOptionsText: function (numAll, numGroup) {
  30. return [
  31. (numAll > 1) ? 'Limite atteinte ({n} éléments max)' : 'Limite atteinte ({n} élément max)',
  32. (numGroup > 1) ? 'Limite du groupe atteinte ({n} éléments max)' : 'Limite du groupe atteinte ({n} élément max)'
  33. ];
  34. },
  35. multipleSeparator: ', '
  36. };
  37. })(jQuery);
  38. }));