defaults-fr_FR.js 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*!
  2. * Bootstrap-select v1.13.18 (https://developer.snapappointments.com/bootstrap-select)
  3. *
  4. * Copyright 2012-2020 SnapAppointments, LLC
  5. * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE)
  6. */
  7. (function (root, factory) {
  8. if (root === undefined && window !== undefined) root = window;
  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. (function ($) {
  24. $.fn.selectpicker.defaults = {
  25. noneSelectedText: 'Aucune sélection',
  26. noneResultsText: 'Aucun résultat pour {0}',
  27. countSelectedText: function (numSelected, numTotal) {
  28. return (numSelected > 1) ? '{0} éléments sélectionnés' : '{0} élément sélectionné';
  29. },
  30. maxOptionsText: function (numAll, numGroup) {
  31. return [
  32. (numAll > 1) ? 'Limite atteinte ({n} éléments max)' : 'Limite atteinte ({n} élément max)',
  33. (numGroup > 1) ? 'Limite du groupe atteinte ({n} éléments max)' : 'Limite du groupe atteinte ({n} élément max)'
  34. ];
  35. },
  36. multipleSeparator: ', ',
  37. selectAllText: 'Tout sélectionner',
  38. deselectAllText: 'Tout désélectionner'
  39. };
  40. })(jQuery);
  41. }));
  42. //# sourceMappingURL=defaults-fr_FR.js.map