summaryrefslogtreecommitdiffstats
path: root/apps/files_external/3rdparty/select2/select2_locale_de.js
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_external/3rdparty/select2/select2_locale_de.js')
-rw-r--r--apps/files_external/3rdparty/select2/select2_locale_de.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/apps/files_external/3rdparty/select2/select2_locale_de.js b/apps/files_external/3rdparty/select2/select2_locale_de.js
new file mode 100644
index 00000000000..93b18e81f85
--- /dev/null
+++ b/apps/files_external/3rdparty/select2/select2_locale_de.js
@@ -0,0 +1,15 @@
+/**
+ * Select2 German translation
+ */
+(function ($) {
+ "use strict";
+
+ $.extend($.fn.select2.defaults, {
+ formatNoMatches: function () { return "Keine Übereinstimmungen gefunden"; },
+ formatInputTooShort: function (input, min) { var n = min - input.length; return "Bitte " + n + " Zeichen mehr eingeben"; },
+ formatInputTooLong: function (input, max) { var n = input.length - max; return "Bitte " + n + " Zeichen weniger eingeben"; },
+ formatSelectionTooBig: function (limit) { return "Sie können nur " + limit + " Eintr" + (limit === 1 ? "ag" : "äge") + " auswählen"; },
+ formatLoadMore: function (pageNumber) { return "Lade mehr Ergebnisse…"; },
+ formatSearching: function () { return "Suche…"; }
+ });
+})(jQuery); \ No newline at end of file