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+ // Swedish
3+ return {
4+ errorLoading : function ( ) {
5+ return 'Resultat kunde inte laddas.' ;
6+ } ,
7+ inputTooLong : function ( args ) {
8+ var overChars = args . input . length - args . maximum ;
9+
10+ var message = 'Vänligen sudda ut ' + overChars + ' tecken' ;
11+
12+ return message ;
13+ } ,
14+ inputTooShort : function ( args ) {
15+ var remainingChars = args . minimum - args . input . length ;
16+
17+ var message = 'Vänligen skriv in ' + remainingChars +
18+ ' eller fler tecken' ;
19+
20+ return message ;
21+ } ,
22+ loadingMore : function ( ) {
23+ return 'Laddar fler resultat…' ;
24+ } ,
25+ maximumSelected : function ( args ) {
26+ var message = 'Du kan max välja ' + args . maximum + ' element' ;
27+
28+ return message ;
29+ } ,
30+ noResults : function ( ) {
31+ return 'Inga träffar' ;
32+ } ,
33+ searching : function ( ) {
34+ return 'Söker…' ;
35+ }
36+ } ;
37+ } ) ;
You can’t perform that action at this time.
0 commit comments