File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change
1
+ /**
2
+ * Bootstrap Table Portuguese Portugal Translation
3
+ * Author: Burnspirit<burnspirit@gmail.com>
4
+ */
5
+ ( function ( $ ) {
6
+ 'use strict' ;
7
+ $ . fn . bootstrapTable . locales [ 'pt-BR' ] = {
8
+ formatLoadingMessage : function ( ) {
9
+ return 'A carregar, aguarde...' ;
10
+ } ,
11
+ formatRecordsPerPage : function ( pageNumber ) {
12
+ return pageNumber + ' registos por página' ;
13
+ } ,
14
+ formatShowingRows : function ( pageFrom , pageTo , totalRows ) {
15
+ return 'A mostrar ' + pageFrom + ' até ' + pageTo + ' de ' + totalRows + ' linhas' ;
16
+ } ,
17
+ formatSearch : function ( ) {
18
+ return 'Pesquisa' ;
19
+ } ,
20
+ formatNoMatches : function ( ) {
21
+ return 'Nenhum registo encontrado' ;
22
+ }
23
+ } ;
24
+ $ . extend ( $ . fn . bootstrapTable . defaults , $ . fn . bootstrapTable . locales [ 'pt-PT' ] ) ;
25
+ } ) ( jQuery ) ;
You can’t perform that action at this time.
0 commit comments