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+ // Italian
3+ return {
4+ errorLoading : function ( ) {
5+ return 'I risultati non possono essere caricati.' ;
6+ } ,
7+ inputTooLong : function ( args ) {
8+ var overChars = args . input . length - args . maximum ;
9+
10+ var message = 'Per favore cancella ' + overChars + ' caratter' ;
11+
12+ if ( overChars !== 1 ) {
13+ message += 'i' ;
14+ } else {
15+ message += 'e' ;
16+ }
17+
18+ return message ;
19+ } ,
20+ inputTooShort : function ( args ) {
21+ var remainingChars = args . minimum - args . input . length ;
22+
23+ var message = 'Per favore inserisci ' + remainingChars + ' o più caratteri' ;
24+
25+ return message ;
26+ } ,
27+ loadingMore : function ( ) {
28+ return 'Caricando più risultati…' ;
29+ } ,
30+ maximumSelected : function ( args ) {
31+ var message = 'Puoi selezionare solo ' + args . maximum + ' element' ;
32+
33+ if ( args . maximum !== 1 ) {
34+ message += 'i' ;
35+ } else {
36+ message += 'o' ;
37+ }
38+
39+ return message ;
40+ } ,
41+ noResults : function ( ) {
42+ return 'Nessun risultato trovato' ;
43+ } ,
44+ searching : function ( ) {
45+ return 'Sto cercando…' ;
46+ }
47+ } ;
48+ } ) ;
You can’t perform that action at this time.
0 commit comments