all
This commit is contained in:
32
Productivite/Snipe-IT/public/js/locale/bootstrap-table-es-MX.js
vendored
Normal file
32
Productivite/Snipe-IT/public/js/locale/bootstrap-table-es-MX.js
vendored
Normal file
@ -0,0 +1,32 @@
|
||||
/**
|
||||
* Bootstrap Table Spanish (México) translation (Obtenido de traducción de Argentina)
|
||||
* Author: Felix Vera (felix.vera@gmail.com)
|
||||
* Copiado: Mauricio Vera (mauricioa.vera@gmail.com)
|
||||
*/
|
||||
(function ($) {
|
||||
'use strict';
|
||||
|
||||
$.fn.bootstrapTable.locales['es-MX'] = {
|
||||
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-MX']);
|
||||
|
||||
})(jQuery);
|
Reference in New Issue
Block a user