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.3 KiB
Plaintext
44 lines
1.3 KiB
Plaintext
/**
|
|
* Bootstrap Table Spanish Spain translation
|
|
* Author: Marc Pina<iwalkalone69@gmail.com>
|
|
*/
|
|
(function ($) {
|
|
'use strict';
|
|
|
|
$.fn.bootstrapTable.locales['es-ES'] = {
|
|
formatLoadingMessage: function () {
|
|
return 'Por favor espere...';
|
|
},
|
|
formatRecordsPerPage: function (pageNumber) {
|
|
return pageNumber + ' resultados por página';
|
|
},
|
|
formatShowingRows: function (pageFrom, pageTo, totalRows) {
|
|
return 'Mostrando desde ' + pageFrom + ' hasta ' + pageTo + ' - En total ' + totalRows + ' resultados';
|
|
},
|
|
formatSearch: function () {
|
|
return 'Buscar';
|
|
},
|
|
formatNoMatches: function () {
|
|
return 'No se encontraron resultados';
|
|
},
|
|
formatPaginationSwitch: function () {
|
|
return 'Ocultar/Mostrar paginación';
|
|
},
|
|
formatRefresh: function () {
|
|
return 'Refrescar';
|
|
},
|
|
formatToggle: function () {
|
|
return 'Ocultar/Mostrar';
|
|
},
|
|
formatColumns: function () {
|
|
return 'Columnas';
|
|
},
|
|
formatAllRows: function () {
|
|
return 'Todos';
|
|
}
|
|
};
|
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['es-ES']);
|
|
|
|
})(jQuery);
|