1
0
mirror of synced 2024-11-22 04:56:08 +03:00

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:
Harry 2016-05-26 20:31:45 -04:00 committed by Kevin Brown
parent 7505347a69
commit 7eab29e271

52
src/js/select2/i18n/el.js vendored Normal file
View 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 'Αναζήτηση…';
}
};
});