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+ // Brazilian Portuguese
3+ return {
4+ errorLoading : function ( ) {
5+ return 'Os resultados não puderam ser carregados.' ;
6+ } ,
7+ inputTooLong : function ( args ) {
8+ var overChars = args . input . length - args . maximum ;
9+
10+ var message = 'Apague ' + overChars + ' caracter' ;
11+
12+ if ( overChars != 1 ) {
13+ message += 'es' ;
14+ }
15+
16+ return message ;
17+ } ,
18+ inputTooShort : function ( args ) {
19+ var remainingChars = args . minimum - args . input . length ;
20+
21+ var message = 'Digite ' + remainingChars + ' ou mais caracteres' ;
22+
23+ return message ;
24+ } ,
25+ loadingMore : function ( ) {
26+ return 'Carregando mais resultados…' ;
27+ } ,
28+ maximumSelected : function ( args ) {
29+ var message = 'Você só pode selecionar ' + args . maximum + ' ite' ;
30+
31+ if ( args . maximum == 1 ) {
32+ message += 'm' ;
33+ } else {
34+ message += 'ns' ;
35+ }
36+
37+ return message ;
38+ } ,
39+ noResults : function ( ) {
40+ return 'Nenhum resultado encontrado' ;
41+ } ,
42+ searching : function ( ) {
43+ return 'Buscando…' ;
44+ }
45+ } ;
46+ } ) ;
You can’t perform that action at this time.
0 commit comments