corrade-nucleus-nucleons – Blame information for rev 20

Subversion Repositories:
Rev:
Rev Author Line No. Line
20 office 1 /**
2 * Bootstrap Table Spanish (Costa Rica) translation
3 * Author: Dennis Hernández (http://djhvscf.github.io/Blog/)
4 */
5 (function ($) {
6 'use strict';
7  
8 $.fn.bootstrapTable.locales['es-CR'] = {
9 formatLoadingMessage: function () {
10 return 'Cargando, por favor espere...';
11 },
12 formatRecordsPerPage: function (pageNumber) {
13 return pageNumber + ' registros por página';
14 },
15 formatShowingRows: function (pageFrom, pageTo, totalRows) {
16 return 'Mostrando de ' + pageFrom + ' a ' + pageTo + ' registros de ' + totalRows + ' registros en total';
17 },
18 formatSearch: function () {
19 return 'Buscar';
20 },
21 formatNoMatches: function () {
22 return 'No se encontraron registros';
23 },
24 formatRefresh: function () {
25 return 'Refrescar';
26 },
27 formatToggle: function () {
28 return 'Alternar';
29 },
30 formatColumns: function () {
31 return 'Columnas';
32 },
33 formatAllRows: function () {
34 return 'Todo';
35 }
36 };
37  
38 $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['es-CR']);
39  
40 })(jQuery);