File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44( function ( $ ) {
55 "use strict" ;
66 $ . extend ( $ . fn . select2 . defaults , {
7- formatNoMatches : function ( ) { return "沒有找到匹配項 " ; } ,
8- formatInputTooShort : function ( input , min ) { var n = min - input . length ; return "請再輸入" + n + "個字符 " ; } ,
9- formatInputTooLong : function ( input , max ) { var n = input . length - max ; return "請刪掉" + n + "個字符 " ; } ,
7+ formatNoMatches : function ( ) { return "沒有找到相符的項目 " ; } ,
8+ formatInputTooShort : function ( input , min ) { var n = min - input . length ; return "請再輸入" + n + "個字元 " ; } ,
9+ formatInputTooLong : function ( input , max ) { var n = input . length - max ; return "請刪掉" + n + "個字元 " ; } ,
1010 formatSelectionTooBig : function ( limit ) { return "你只能選擇最多" + limit + "項" ; } ,
11- formatLoadMore : function ( pageNumber ) { return "加載結果中 ..." ; } ,
11+ formatLoadMore : function ( pageNumber ) { return "載入中 ..." ; } ,
1212 formatSearching : function ( ) { return "搜尋中..." ; }
1313 } ) ;
1414} ) ( jQuery ) ;
You can’t perform that action at this time.
0 commit comments