|
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 = { |
| 1 | +export default { |
23 | 2 | 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" |
| 3 | + goto: "Ir para", |
| 4 | + page: "", |
| 5 | + itemsPerPage: " / página", |
| 6 | + total: (total) => `Total ${total}`, |
| 7 | + prev5: "Retornar 5 páginas", |
| 8 | + next5: "Avançar 5 páginas", |
32 | 9 | }, |
33 | 10 | 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 | | -}); |
| 11 | + confirmFilter: "Confirmar", |
| 12 | + resetFilter: "Limpar", |
| 13 | + // contextmenu event |
| 14 | + insertRowAbove: "inserir linha acima", |
| 15 | + insertRowBelow: "inserir linha abaixo", |
| 16 | + removeRow: "remover linha", |
| 17 | + hideColumn: "ocultar coluna", |
| 18 | + }, |
| 19 | +}; |
0 commit comments