| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- (function (global, factory) {
- if (typeof define === "function" && define.amd) {
- define([], factory);
- } else if (typeof exports !== "undefined") {
- factory();
- } else {
- var mod = {
- exports: {}
- };
- factory();
- global.bootstrapTableEsAR = mod.exports;
- }
- })(this, function () {
- 'use strict';
- /**
- * Bootstrap Table Spanish (Argentina) translation
- * Author: Felix Vera (felix.vera@gmail.com)
- */
- (function ($) {
- $.fn.bootstrapTable.locales['es-AR'] = {
- formatLoadingMessage: function formatLoadingMessage() {
- return 'Cargando, espere por favor...';
- },
- formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return pageNumber + ' registros por p\xE1gina';
- },
- formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
- return 'Mostrando ' + pageFrom + ' a ' + pageTo + ' de ' + totalRows + ' filas';
- },
- formatSearch: function formatSearch() {
- return 'Buscar';
- },
- formatNoMatches: function formatNoMatches() {
- return 'No se encontraron registros';
- },
- formatAllRows: function formatAllRows() {
- return 'Todo';
- }
- };
- $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['es-AR']);
- })(jQuery);
- });
|