Sha256: 1c0f0a01e782febb2065d80bcf3377ae2a26f4a4617978c2e61230179d78a15f
Contents?: true
Size: 938 Bytes
Versions: 9
Compression:
Stored size: 938 Bytes
Contents
/** * 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);
Version data entries
9 entries across 9 versions & 1 rubygems