corrade-nucleus-nucleons – Blame information for rev 20

Subversion Repositories:
Rev:
Rev Author Line No. Line
20 office 1 /**
2 * Bootstrap Table Spanish (Argentina) translation
3 * Author: Felix Vera (felix.vera@gmail.com)
4 */
5 (function ($) {
6 'use strict';
7  
8 $.fn.bootstrapTable.locales['es-AR'] = {
9 formatLoadingMessage: function () {
10 return 'Cargando, espere por favor...';
11 },
12 formatRecordsPerPage: function (pageNumber) {
13 return pageNumber + ' registros por página';
14 },
15 formatShowingRows: function (pageFrom, pageTo, totalRows) {
16 return 'Mostrando ' + pageFrom + ' a ' + pageTo + ' de ' + totalRows + ' filas';
17 },
18 formatSearch: function () {
19 return 'Buscar';
20 },
21 formatNoMatches: function () {
22 return 'No se encontraron registros';
23 },
24 formatAllRows: function () {
25 return 'Todo';
26 }
27 };
28  
29 $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['es-AR']);
30  
31 })(jQuery);