From 4df965219ea4c39147fde9335bc260840465933a Mon Sep 17 00:00:00 2001 From: niki7har Date: Wed, 7 Dec 2016 12:41:15 +0100 Subject: [PATCH] Update de.js The german errorLoading message was missing. This closes https://github.com/select2/select2/pull/4711. This closes https://github.com/select2/select2/pull/4591. --- src/js/select2/i18n/de.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/js/select2/i18n/de.js b/src/js/select2/i18n/de.js index 482a2e76..c804fed9 100644 --- a/src/js/select2/i18n/de.js +++ b/src/js/select2/i18n/de.js @@ -1,6 +1,9 @@ define(function () { // German return { + errorLoading: function () { + return 'Die Ergebnisse konnten nicht geladen werden.'; + }, inputTooLong: function (args) { var overChars = args.input.length - args.maximum;