Added Greek (el) translation
Translated English (en) language file to Greek (el). This closes https://github.com/select2/select2/pull/4139 This closes https://github.com/select2/select2/pull/4146
This commit is contained in:
parent
7505347a69
commit
7eab29e271
52
src/js/select2/i18n/el.js
vendored
Normal file
52
src/js/select2/i18n/el.js
vendored
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
define(function () {
|
||||||
|
// Greek (el)
|
||||||
|
return {
|
||||||
|
errorLoading: function () {
|
||||||
|
return 'Τα αποτελέσματα δεν μπόρεσαν να φορτώσουν.';
|
||||||
|
},
|
||||||
|
inputTooLong: function (args) {
|
||||||
|
var overChars = args.input.length - args.maximum;
|
||||||
|
|
||||||
|
var message = 'Παρακαλώ διαγράψτε ' + overChars + ' χαρακτήρ';
|
||||||
|
|
||||||
|
if (overChars == 1) {
|
||||||
|
message += 'α';
|
||||||
|
}
|
||||||
|
if (overChars != 1) {
|
||||||
|
message += 'ες';
|
||||||
|
}
|
||||||
|
|
||||||
|
return message;
|
||||||
|
},
|
||||||
|
inputTooShort: function (args) {
|
||||||
|
var remainingChars = args.minimum - args.input.length;
|
||||||
|
|
||||||
|
var message = 'Παρακαλώ συμπληρώστε ' + remainingChars +
|
||||||
|
' ή περισσότερους χαρακτήρες';
|
||||||
|
|
||||||
|
return message;
|
||||||
|
},
|
||||||
|
loadingMore: function () {
|
||||||
|
return 'Φόρτωση περισσότερων αποτελεσμάτων…';
|
||||||
|
},
|
||||||
|
maximumSelected: function (args) {
|
||||||
|
var message = 'Μπορείτε να επιλέξετε μόνο ' + args.maximum + ' επιλογ';
|
||||||
|
|
||||||
|
if (args.maximum == 1) {
|
||||||
|
message += 'ή';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (args.maximum != 1) {
|
||||||
|
message += 'ές';
|
||||||
|
}
|
||||||
|
|
||||||
|
return message;
|
||||||
|
},
|
||||||
|
noResults: function () {
|
||||||
|
return 'Δεν βρέθηκαν αποτελέσματα';
|
||||||
|
},
|
||||||
|
searching: function () {
|
||||||
|
return 'Αναζήτηση…';
|
||||||
|
}
|
||||||
|
};
|
||||||
|
});
|
Loading…
Reference in New Issue
Block a user