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.
31 lines
938 B
Plaintext
31 lines
938 B
Plaintext
/**
|
|
* Bootstrap Table Spanish (Argentina) translation
|
|
* Author: Felix Vera (felix.vera@gmail.com)
|
|
*/
|
|
(function ($) {
|
|
'use strict';
|
|
|
|
$.fn.bootstrapTable.locales['es-AR'] = {
|
|
formatLoadingMessage: function () {
|
|
return 'Cargando, espere por favor...';
|
|
},
|
|
formatRecordsPerPage: function (pageNumber) {
|
|
return pageNumber + ' registros por página';
|
|
},
|
|
formatShowingRows: function (pageFrom, pageTo, totalRows) {
|
|
return 'Mostrando ' + pageFrom + ' a ' + pageTo + ' de ' + totalRows + ' filas';
|
|
},
|
|
formatSearch: function () {
|
|
return 'Buscar';
|
|
},
|
|
formatNoMatches: function () {
|
|
return 'No se encontraron registros';
|
|
},
|
|
formatAllRows: function () {
|
|
return 'Todo';
|
|
}
|
|
};
|
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['es-AR']);
|
|
|
|
})(jQuery); |