all
This commit is contained in:
43
Productivite/Snipe-IT/public/js/locale/bootstrap-table-es-ES.js
vendored
Normal file
43
Productivite/Snipe-IT/public/js/locale/bootstrap-table-es-ES.js
vendored
Normal file
@ -0,0 +1,43 @@
|
||||
/**
|
||||
* 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);
|
Reference in New Issue
Block a user