|
|
@@ -0,0 +1,25 @@
|
|
|
+/**
|
|
|
+ * Bootstrap Table Brazilian Portuguese Translation
|
|
|
+ * Author: Eduardo Cerqueira<egcerqueira@gmail.com>
|
|
|
+ */
|
|
|
+(function ($) {
|
|
|
+ 'use strict';
|
|
|
+
|
|
|
+ $.extend($.fn.bootstrapTable.defaults, {
|
|
|
+ formatLoadingMessage: function() {
|
|
|
+ return 'Carregando, aguarde…';
|
|
|
+ },
|
|
|
+ formatRecordsPerPage: function(pageNumber) {
|
|
|
+ return pageNumber + ' registros por página';
|
|
|
+ },
|
|
|
+ formatShowingRows: function(pageFrom, pageTo, totalRows) {
|
|
|
+ return 'Exibindo ' + pageFrom + ' até ' + pageTo + ' de ' + totalRows + ' linhas';
|
|
|
+ },
|
|
|
+ formatSearch: function() {
|
|
|
+ return 'Busca'
|
|
|
+ },
|
|
|
+ formatNoMatches: function() {
|
|
|
+ return 'Nenhum registro encontrado';
|
|
|
+ }
|
|
|
+ });
|
|
|
+})(jQuery);
|