JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "el.js"
Full Path: /var/www/html/ctctaxi/public/assets/vendor_components/select2/src/js/select2/i18n/el.js
File size: 1.38 KB
MIME-type: text/plain
Charset: utf-8
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 'Αναζήτηση…';
}
};
});