File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66
77 $ . fn . select2 . locales [ 'nl' ] = {
88 formatNoMatches : function ( ) { return "Geen resultaten gevonden" ; } ,
9- formatInputTooShort : function ( input , min ) { var n = min - input . length ; return "Vul " + n + " karakter" + ( n == 1 ? "" : "s" ) + " meer in" ; } ,
10- formatInputTooLong : function ( input , max ) { var n = input . length - max ; return "Vul " + n + " karakter" + ( n == 1 ? "" : "s" ) + " minder in " ; } ,
9+ formatInputTooShort : function ( input , min ) { var n = min - input . length ; return "Vul nog " + n + " karakter" + ( n == 1 ? "" : "s" ) + " in" ; } ,
10+ formatInputTooLong : function ( input , max ) { var n = input . length - max ; return "Haal " + n + " karakter" + ( n == 1 ? "" : "s" ) + " weg " ; } ,
1111 formatSelectionTooBig : function ( limit ) { return "Maximaal " + limit + " item" + ( limit == 1 ? "" : "s" ) + " toegestaan" ; } ,
1212 formatLoadMore : function ( pageNumber ) { return "Meer resultaten laden…" ; } ,
1313 formatSearching : function ( ) { return "Zoeken…" ; }
1414 } ;
1515
1616 $ . extend ( $ . fn . select2 . defaults , $ . fn . select2 . locales [ 'nl' ] ) ;
17- } ) ( jQuery ) ;
17+ } ) ( jQuery ) ;
You can’t perform that action at this time.
0 commit comments