File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ define ( function ( ) {
2+ // English
3+ return {
4+ errorLoading : function ( ) {
5+ return 'Die resultate kon nie gelaai word nie.' ;
6+ } ,
7+ inputTooLong : function ( args ) {
8+ var overChars = args . input . length - args . maximum ;
9+
10+ var message = 'Verwyders asseblief ' + overChars + ' character' ;
11+
12+ if ( overChars != 1 ) {
13+ message += 's' ;
14+ }
15+
16+ return message ;
17+ } ,
18+ inputTooShort : function ( args ) {
19+ var remainingChars = args . minimum - args . input . length ;
20+
21+ var message = 'Voer asseblief ' + remainingChars + ' of meer karakters' ;
22+
23+ return message ;
24+ } ,
25+ loadingMore : function ( ) {
26+ return 'Meer resultate word gelaai…' ;
27+ } ,
28+ maximumSelected : function ( args ) {
29+ var message = 'Kies asseblief net ' + args . maximum + ' item' ;
30+
31+ if ( args . maximum != 1 ) {
32+ message += 's' ;
33+ }
34+
35+ return message ;
36+ } ,
37+ noResults : function ( ) {
38+ return 'Geen resultate gevind' ;
39+ } ,
40+ searching : function ( ) {
41+ return 'Besig…' ;
42+ }
43+ } ;
44+ } ) ;
You can’t perform that action at this time.
0 commit comments