summaryrefslogtreecommitdiffstats
path: root/apps/files_external/3rdparty/select2/select2_locale_eu.js
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_external/3rdparty/select2/select2_locale_eu.js')
-rw-r--r--apps/files_external/3rdparty/select2/select2_locale_eu.js43
1 files changed, 43 insertions, 0 deletions
diff --git a/apps/files_external/3rdparty/select2/select2_locale_eu.js b/apps/files_external/3rdparty/select2/select2_locale_eu.js
new file mode 100644
index 00000000000..1da1a709481
--- /dev/null
+++ b/apps/files_external/3rdparty/select2/select2_locale_eu.js
@@ -0,0 +1,43 @@
+/**
+ * Select2 Basque translation.
+ *
+ * Author: Julen Ruiz Aizpuru <julenx at gmail dot com>
+ */
+(function ($) {
+ "use strict";
+
+ $.extend($.fn.select2.defaults, {
+ formatNoMatches: function () {
+ return "Ez da bat datorrenik aurkitu";
+ },
+ formatInputTooShort: function (input, min) {
+ var n = min - input.length;
+ if (n === 1) {
+ return "Idatzi karaktere bat gehiago";
+ } else {
+ return "Idatzi " + n + " karaktere gehiago";
+ }
+ },
+ formatInputTooLong: function (input, max) {
+ var n = input.length - max;
+ if (n === 1) {
+ return "Idatzi karaktere bat gutxiago";
+ } else {
+ return "Idatzi " + n + " karaktere gutxiago";
+ }
+ },
+ formatSelectionTooBig: function (limit) {
+ if (limit === 1 ) {
+ return "Elementu bakarra hauta dezakezu";
+ } else {
+ return limit + " elementu hauta ditzakezu soilik";
+ }
+ },
+ formatLoadMore: function (pageNumber) {
+ return "Emaitza gehiago kargatzen…";
+ },
+ formatSearching: function () {
+ return "Bilatzen…";
+ }
+ });
+})(jQuery);