File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3256,7 +3256,7 @@ the specific language governing permissions and limitations under the Apache Lic
32563256 formatResultCssClass : function ( data ) { return data . css ; } ,
32573257 formatSelectionCssClass : function ( data , container ) { return undefined ; } ,
32583258 formatNoMatches : function ( ) { return "No matches found" ; } ,
3259- formatInputTooShort : function ( input , min ) { var n = min - input . length ; return "Please enter " + n + " more character" + ( n == 1 ? "" : "s" ) ; } ,
3259+ formatInputTooShort : function ( input , min ) { var n = min - input . length ; return "Please enter " + n + " or more character" + ( n == 1 ? "" : "s" ) ; } ,
32603260 formatInputTooLong : function ( input , max ) { var n = input . length - max ; return "Please delete " + n + " character" + ( n == 1 ? "" : "s" ) ; } ,
32613261 formatSelectionTooBig : function ( limit ) { return "You can only select " + limit + " item" + ( limit == 1 ? "" : "s" ) ; } ,
32623262 formatLoadMore : function ( pageNumber ) { return "Loading more results…" ; } ,
You can’t perform that action at this time.
0 commit comments