ajout app
This commit is contained in:
43
SNIPE-IT/public/js/locale/bootstrap-table-en-US.js
vendored
Normal file
43
SNIPE-IT/public/js/locale/bootstrap-table-en-US.js
vendored
Normal file
@ -0,0 +1,43 @@
|
||||
/**
|
||||
* Bootstrap Table English translation
|
||||
* Author: Zhixin Wen<wenzhixin2010@gmail.com>
|
||||
*/
|
||||
(function ($) {
|
||||
'use strict';
|
||||
|
||||
$.fn.bootstrapTable.locales['en-US'] = {
|
||||
formatLoadingMessage: function () {
|
||||
return 'Loading, please wait...';
|
||||
},
|
||||
formatRecordsPerPage: function (pageNumber) {
|
||||
return pageNumber + ' rows per page';
|
||||
},
|
||||
formatShowingRows: function (pageFrom, pageTo, totalRows) {
|
||||
return 'Showing ' + pageFrom + ' to ' + pageTo + ' of ' + totalRows + ' rows';
|
||||
},
|
||||
formatSearch: function () {
|
||||
return 'Search';
|
||||
},
|
||||
formatNoMatches: function () {
|
||||
return 'No matching records found';
|
||||
},
|
||||
formatPaginationSwitch: function () {
|
||||
return 'Hide/Show pagination';
|
||||
},
|
||||
formatRefresh: function () {
|
||||
return 'Refresh';
|
||||
},
|
||||
formatToggle: function () {
|
||||
return 'Toggle';
|
||||
},
|
||||
formatColumns: function () {
|
||||
return 'Columns';
|
||||
},
|
||||
formatAllRows: function () {
|
||||
return 'All';
|
||||
}
|
||||
};
|
||||
|
||||
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['en-US']);
|
||||
|
||||
})(jQuery);
|
Reference in New Issue
Block a user