i4way-dash/.svn/pristine/f4/f4abfe513cad998af8c6ec69f2b...

52 lines
1.4 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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 'Αναζήτηση…';
}
};
});