酒店预订平台
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
 

24 rader
862 B

  1. /*
  2. * Translated default messages for bootstrap-select.
  3. * Locale: FR (French; Français)
  4. * Region: FR (France)
  5. */
  6. (function ($) {
  7. $.fn.selectpicker.defaults = {
  8. noneSelectedText: 'Aucune sélection',
  9. noneResultsText: 'Aucun résultat pour {0}',
  10. countSelectedText: function (numSelected, numTotal) {
  11. return (numSelected > 1) ? "{0} éléments sélectionnés" : "{0} élément sélectionné";
  12. },
  13. maxOptionsText: function (numAll, numGroup) {
  14. return [
  15. (numAll > 1) ? 'Limite atteinte ({n} éléments max)' : 'Limite atteinte ({n} élément max)',
  16. (numGroup > 1) ? 'Limite du groupe atteinte ({n} éléments max)' : 'Limite du groupe atteinte ({n} élément max)'
  17. ];
  18. },
  19. multipleSeparator: ', ',
  20. selectAllText: 'Tout Sélectionner',
  21. deselectAllText: 'Tout Dé-selectionner',
  22. };
  23. })(jQuery);