From 7eab29e271468dc176dd93be0fce1e95e350fd7a Mon Sep 17 00:00:00 2001 From: Harry Date: Thu, 26 May 2016 20:31:45 -0400 Subject: [PATCH] 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 --- src/js/select2/i18n/el.js | 52 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 src/js/select2/i18n/el.js diff --git a/src/js/select2/i18n/el.js b/src/js/select2/i18n/el.js new file mode 100644 index 00000000..9cf8ee48 --- /dev/null +++ b/src/js/select2/i18n/el.js @@ -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 'Αναζήτηση…'; + } + }; +}); \ No newline at end of file