You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
/**
|
|
* Bootstrap Table German translation
|
|
* Author: Paul Mohr - Sopamo<p.mohr@sopamo.de>
|
|
*/
|
|
(function ($) {
|
|
'use strict';
|
|
|
|
$.fn.bootstrapTable.locales['de-DE'] = {
|
|
formatLoadingMessage: function () {
|
|
return 'Lade, bitte warten...';
|
|
},
|
|
formatRecordsPerPage: function (pageNumber) {
|
|
return pageNumber + ' Einträge pro Seite.';
|
|
},
|
|
formatShowingRows: function (pageFrom, pageTo, totalRows) {
|
|
return 'Zeige Zeile ' + pageFrom + ' bis ' + pageTo + ' von ' + totalRows + ' Zeile' + ((totalRows > 1) ? "n" : "")+".";
|
|
},
|
|
formatDetailPagination: function (totalRows) {
|
|
return 'Zeige ' + totalRows + ' Zeile' + ((totalRows > 1) ? "n" : "")+".";
|
|
},
|
|
formatSearch: function () {
|
|
return 'Suchen ...';
|
|
},
|
|
formatNoMatches: function () {
|
|
return 'Keine passenden Ergebnisse gefunden.';
|
|
},
|
|
formatRefresh: function () {
|
|
return 'Neu laden';
|
|
},
|
|
formatToggle: function () {
|
|
return 'Umschalten';
|
|
},
|
|
formatColumns: function () {
|
|
return 'Spalten';
|
|
},
|
|
formatAllRows: function () {
|
|
return 'Alle';
|
|
}
|
|
};
|
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['de-DE']);
|
|
|
|
})(jQuery);
|