defaults-fr_FR.js 1006 B

123456789101112131415161718192021222324
  1. /*!
  2. * Bootstrap-select v1.6.3 (http://silviomoreto.github.io/bootstrap-select/)
  3. *
  4. * Copyright 2013-2014 bootstrap-select
  5. * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
  6. */
  7. (function ($) {
  8. $.fn.selectpicker.defaults = {
  9. noneSelectedText: 'Aucune sélection',
  10. noneResultsText: 'Aucun résultat',
  11. countSelectedText: function (numSelected, numTotal) {
  12. return (numSelected > 1) ? "{0} éléments sélectionés" : "{0} élément sélectioné";
  13. },
  14. maxOptionsText: function (numAll, numGroup) {
  15. var arr = [];
  16. arr[0] = (numAll > 1) ? 'Limite atteinte ({n} éléments max)' : 'Limite atteinte ({n} élément max)';
  17. arr[1] = (numGroup > 1) ? 'Limite du groupe atteinte ({n} éléments max)' : 'Limite du groupe atteinte ({n} élément max)';
  18. return arr;
  19. },
  20. multipleSeparator: ', '
  21. };
  22. }(jQuery));