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.
80 lines
2.8 KiB
JavaScript
80 lines
2.8 KiB
JavaScript
(function (global, factory) {
|
|
if (typeof define === "function" && define.amd) {
|
|
define([], factory);
|
|
} else if (typeof exports !== "undefined") {
|
|
factory();
|
|
} else {
|
|
var mod = {
|
|
exports: {}
|
|
};
|
|
factory();
|
|
global.bootstrapTableEnUS = mod.exports;
|
|
}
|
|
})(this, function () {
|
|
'use strict';
|
|
|
|
/**
|
|
* Bootstrap Table English translation
|
|
* Author: Zhixin Wen<wenzhixin2010@gmail.com>
|
|
*/
|
|
(function ($) {
|
|
$.fn.bootstrapTable.locales['en-US'] = {
|
|
formatLoadingMessage: function formatLoadingMessage() {
|
|
return 'Loading, please wait';
|
|
},
|
|
formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
|
|
return pageNumber + ' rows per page';
|
|
},
|
|
formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
|
|
return 'Showing ' + pageFrom + ' to ' + pageTo + ' of ' + totalRows + ' rows';
|
|
},
|
|
formatDetailPagination: function formatDetailPagination(totalRows) {
|
|
return 'Showing ' + totalRows + ' rows';
|
|
},
|
|
formatSearch: function formatSearch() {
|
|
return 'Search';
|
|
},
|
|
formatNoMatches: function formatNoMatches() {
|
|
return 'No matching records found';
|
|
},
|
|
formatPaginationSwitch: function formatPaginationSwitch() {
|
|
return 'Hide/Show pagination';
|
|
},
|
|
formatRefresh: function formatRefresh() {
|
|
return 'Refresh';
|
|
},
|
|
formatToggle: function formatToggle() {
|
|
return 'Toggle';
|
|
},
|
|
formatColumns: function formatColumns() {
|
|
return 'Columns';
|
|
},
|
|
formatFullscreen: function formatFullscreen() {
|
|
return 'Fullscreen';
|
|
},
|
|
formatAllRows: function formatAllRows() {
|
|
return 'All';
|
|
},
|
|
formatAutoRefresh: function formatAutoRefresh() {
|
|
return 'Auto Refresh';
|
|
},
|
|
formatExport: function formatExport() {
|
|
return 'Export data';
|
|
},
|
|
formatClearFilters: function formatClearFilters() {
|
|
return 'Clear filters';
|
|
},
|
|
formatJumpto: function formatJumpto() {
|
|
return 'GO';
|
|
},
|
|
formatAdvancedSearch: function formatAdvancedSearch() {
|
|
return 'Advanced search';
|
|
},
|
|
formatAdvancedCloseButton: function formatAdvancedCloseButton() {
|
|
return 'Close';
|
|
}
|
|
};
|
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['en-US']);
|
|
})(jQuery);
|
|
}); |