Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | espaco | 1 | /** |
| 2 | * Select2 German translation |
||
| 3 | */ |
||
| 4 | (function ($) { |
||
| 5 | "use strict"; |
||
| 6 | |||
| 7 | $.fn.select2.locales['de'] = { |
||
| 8 | formatNoMatches: function () { return "Keine Übereinstimmungen gefunden"; }, |
||
| 9 | formatInputTooShort: function (input, min) { var n = min - input.length; return "Bitte " + n + " Zeichen mehr eingeben"; }, |
||
| 10 | formatInputTooLong: function (input, max) { var n = input.length - max; return "Bitte " + n + " Zeichen weniger eingeben"; }, |
||
| 11 | formatSelectionTooBig: function (limit) { return "Sie können nur " + limit + " Eintr" + (limit === 1 ? "ag" : "äge") + " auswählen"; }, |
||
| 12 | formatLoadMore: function (pageNumber) { return "Lade mehr Ergebnisse…"; }, |
||
| 13 | formatSearching: function () { return "Suche…"; }, |
||
| 14 | formatMatches: function (matches) { return matches + " Ergebnis " + (matches > 1 ? "se" : "") + " verfügbar, zum Navigieren die Hoch-/Runter-Pfeiltasten verwenden."; } |
||
| 15 | }; |
||
| 16 | |||
| 17 | $.extend($.fn.select2.defaults, $.fn.select2.locales['de']); |
||
| 18 | })(jQuery); |