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+ /**
2+ * Select2 Basque translation.
3+ *
4+ * Author: Julen Ruiz Aizpuru <julenx at gmail dot com>
5+ */
6+ ( function ( $ ) {
7+ "use strict" ;
8+
9+ $ . extend ( $ . fn . select2 . defaults , {
10+ formatNoMatches : function ( ) {
11+ return "Ez da bat datorrenik aurkitu" ;
12+ } ,
13+ formatInputTooShort : function ( input , min ) {
14+ var n = min - input . length ;
15+ if ( n === 1 ) {
16+ return "Idatzi karaktere bat gehiago" ;
17+ } else {
18+ return "Idatzi " + n + " karaktere gehiago" ;
19+ }
20+ } ,
21+ formatInputTooLong : function ( input , max ) {
22+ var n = input . length - max ;
23+ if ( n === 1 ) {
24+ return "Idatzi karaktere bat gutxiago" ;
25+ } else {
26+ return "Idatzi " + n + " karaktere gutxiago" ;
27+ }
28+ } ,
29+ formatSelectionTooBig : function ( limit ) {
30+ if ( limit === 1 ) {
31+ return "Elementu bakarra hauta dezakezu" ;
32+ } else {
33+ return limit + " elementu hauta ditzakezu soilik" ;
34+ }
35+ } ,
36+ formatLoadMore : function ( pageNumber ) {
37+ return "Emaitza gehiago kargatzen..." ;
38+ } ,
39+ formatSearching : function ( ) {
40+ return "Bilatzen..." ;
41+ }
42+ } ) ;
43+ } ) ( jQuery ) ;
You can’t perform that action at this time.
0 commit comments