File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,18 +7,21 @@ define(function () {
77 inputTooLong : function ( args ) {
88 var overChars = args . input . length - args . maximum ;
99
10- return 'Supprimez ' + overChars + ' caractère' + ( overChars > 1 ) ? 's' : '' ;
10+ return 'Supprimez ' + overChars + ' caractère' +
11+ ( overChars > 1 ) ? 's' : '' ;
1112 } ,
1213 inputTooShort : function ( args ) {
1314 var remainingChars = args . minimum - args . input . length ;
1415
15- return 'Saisissez au moins ' + remainingChars + ' caractère' + ( remainingChars > 1 ) ? 's' : '' ;
16+ return 'Saisissez au moins ' + remainingChars + ' caractère' +
17+ ( remainingChars > 1 ) ? 's' : '' ;
1618 } ,
1719 loadingMore : function ( ) {
1820 return 'Chargement de résultats supplémentaires…' ;
1921 } ,
2022 maximumSelected : function ( args ) {
21- return 'Vous pouvez seulement sélectionner ' + args . maximum + ' élément' + ( args . maximum > 1 ) ? 's' : '' ;
23+ return 'Vous pouvez seulement sélectionner ' + args . maximum +
24+ ' élément' + ( args . maximum > 1 ) ? 's' : '' ;
2225 } ,
2326 noResults : function ( ) {
2427 return 'Aucun résultat trouvé' ;
You can’t perform that action at this time.
0 commit comments