Skip to content

Commit 765cdbf

Browse files
committed
Merge pull request select2#2346 from sroe/patch-1
formatMatches translation added
2 parents c864392 + 7bf2f2e commit 765cdbf

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

select2_locale_de.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
formatInputTooLong: function (input, max) { var n = input.length - max; return "Bitte " + n + " Zeichen weniger eingeben"; },
1111
formatSelectionTooBig: function (limit) { return "Sie können nur " + limit + " Eintr" + (limit === 1 ? "ag" : "äge") + " auswählen"; },
1212
formatLoadMore: function (pageNumber) { return "Lade mehr Ergebnisse…"; },
13-
formatSearching: function () { return "Suche…"; }
13+
formatSearching: function () { return "Suche…"; },
14+
formatMatches: function (matches) { return matches + " Ergebnis " + (matches > 1 ? "se" : "") + " verfügbar, zum Navigieren die Hoch-/Runter-Pfeiltasten verwenden."; }
1415
});
15-
})(jQuery);
16+
})(jQuery);

0 commit comments

Comments
 (0)