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+ // Catalan
3+ return {
4+ errorLoading : function ( ) {
5+ return 'La càrrega ha fallat' ;
6+ } ,
7+ inputTooLong : function ( args ) {
8+ var remainingChars = args . input . length - args . maximum ;
9+
10+ var message = 'Si us plau, elimina ' + remainingChars + ' car' ;
11+
12+ if ( remainingChars == 1 ) {
13+ message += 'àcter' ;
14+ } else {
15+ message += 'àcters' ;
16+ }
17+
18+ return message ;
19+ } ,
20+ inputTooShort : function ( args ) {
21+ var remaningChars = args . minimum - args . input . length ;
22+
23+ var message = 'Si us plau, introdueix ' + remainingChars + ' car' ;
24+
25+ if ( remainingChars == 1 ) {
26+ message += 'àcter' ;
27+ } else {
28+ message += 'àcters' ;
29+ }
30+
31+ return message ;
32+ } ,
33+ loadingMore : function ( ) {
34+ return 'Carregant més resultats…' ;
35+ } ,
36+ maximumSelection : function ( args ) {
37+ var message = 'Només es pot seleccionar ' + args . maximum + ' element' ;
38+
39+ if ( args . maximum != 1 ) {
40+ message += 's' ;
41+ }
42+
43+ return message ;
44+ } ,
45+ noResults : function ( ) {
46+ return 'No s\'han trobat resultats' ;
47+ } ,
48+ searching : function ( ) {
49+ return 'Cercant…' ;
50+ }
51+ } ;
52+ } ) ;
You can’t perform that action at this time.
0 commit comments