Skip to content

Commit 27356e4

Browse files
authored
Merge pull request #1 from andremoser/andremoser-locale-ptBR
Create pt-BR.js
2 parents 309a473 + 5ead2db commit 27356e4

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

packages/src/locale/lang/pt-BR.js

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
(function (global, factory) {
2+
if (typeof define === "function" && define.amd) {
3+
define("VETable/lang/ptBR", ["exports"], factory);
4+
} else if (typeof exports !== "undefined") {
5+
factory(exports);
6+
} else {
7+
var mod = {
8+
exports: {}
9+
};
10+
factory(mod.exports);
11+
global.VETable = global.VETable || {};
12+
global.VETable.lang = global.VETable.lang || {};
13+
global.VETable.lang.enUS = mod.exports.default;
14+
}
15+
})(typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : this, function (_exports) {
16+
"use strict";
17+
18+
Object.defineProperty(_exports, "__esModule", {
19+
value: true
20+
});
21+
_exports.default = void 0;
22+
var _default = {
23+
pagination: {
24+
goto: "ir para",
25+
page: "página",
26+
itemsPerPage: " / página",
27+
total: function total(_total) {
28+
return "Total " + _total;
29+
},
30+
prev5: "5 Páginas Anteriores",
31+
next5: "Próximas 5 Páginas"
32+
},
33+
table: {
34+
confirmFilter: "Confirmar",
35+
resetFilter: "Limpar",
36+
insertRowAbove: "inserir linha acima",
37+
insertRowBelow: "inserir linha abaixo",
38+
removeRow: "remover linhas",
39+
hideColumn: "ocultar coluna"
40+
}
41+
};
42+
_exports.default = _default;
43+
});

0 commit comments

Comments
 (0)