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+ // Greek (el)
3+ return {
4+ errorLoading : function ( ) {
5+ return 'Τα αποτελέσματα δεν μπόρεσαν να φορτώσουν.' ;
6+ } ,
7+ inputTooLong : function ( args ) {
8+ var overChars = args . input . length - args . maximum ;
9+
10+ var message = 'Παρακαλώ διαγράψτε ' + overChars + ' χαρακτήρ' ;
11+
12+ if ( overChars == 1 ) {
13+ message += 'α' ;
14+ }
15+ if ( overChars != 1 ) {
16+ message += 'ες' ;
17+ }
18+
19+ return message ;
20+ } ,
21+ inputTooShort : function ( args ) {
22+ var remainingChars = args . minimum - args . input . length ;
23+
24+ var message = 'Παρακαλώ συμπληρώστε ' + remainingChars +
25+ ' ή περισσότερους χαρακτήρες' ;
26+
27+ return message ;
28+ } ,
29+ loadingMore : function ( ) {
30+ return 'Φόρτωση περισσότερων αποτελεσμάτων…' ;
31+ } ,
32+ maximumSelected : function ( args ) {
33+ var message = 'Μπορείτε να επιλέξετε μόνο ' + args . maximum + ' επιλογ' ;
34+
35+ if ( args . maximum == 1 ) {
36+ message += 'ή' ;
37+ }
38+
39+ if ( args . maximum != 1 ) {
40+ message += 'ές' ;
41+ }
42+
43+ return message ;
44+ } ,
45+ noResults : function ( ) {
46+ return 'Δεν βρέθηκαν αποτελέσματα' ;
47+ } ,
48+ searching : function ( ) {
49+ return 'Αναζήτηση…' ;
50+ }
51+ } ;
52+ } ) ;
You can’t perform that action at this time.
0 commit comments