File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55 "use strict" ;
66
77 $ . extend ( $ . fn . select2 . defaults , {
8+ formatMatches : function ( matches ) { return matches + " résultats sont disponibles, utilisez les flèches haut et bas pour naviguer." ; } ,
89 formatNoMatches : function ( ) { return "Aucun résultat trouvé" ; } ,
9- formatInputTooShort : function ( input , min ) { var n = min - input . length ; return "Merci de saisir " + n + " caractère" + ( n == 1 ? "" : "s" ) + " de plus" ; } ,
10- formatInputTooLong : function ( input , max ) { var n = input . length - max ; return "Merci de supprimer " + n + " caractère" + ( n == 1 ? "" : "s" ) ; } ,
10+ formatInputTooShort : function ( input , min ) { var n = min - input . length ; return "Merci de saisir " + n + " caractère" + ( n == 1 ? "" : "s" ) + " de plus" ; } ,
11+ formatInputTooLong : function ( input , max ) { var n = input . length - max ; return "Merci de supprimer " + n + " caractère" + ( n == 1 ? "" : "s" ) ; } ,
1112 formatSelectionTooBig : function ( limit ) { return "Vous pouvez seulement sélectionner " + limit + " élément" + ( limit == 1 ? "" : "s" ) ; } ,
1213 formatLoadMore : function ( pageNumber ) { return "Chargement de résultats supplémentaires…" ; } ,
1314 formatSearching : function ( ) { return "Recherche en cours…" ; }
You can’t perform that action at this time.
0 commit comments