hyb
2025-05-14 87453ffd761425b9f363a09a0f8fe07d770cb325
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
(function (global, factory) {
    if (typeof define === "function" && define.amd) {
        define('element/locale/pt-br', ['module', 'exports'], factory);
    } else if (typeof exports !== "undefined") {
        factory(module, exports);
    } else {
        var mod = {
            exports: {}
        };
        factory(mod, mod.exports);
        global.ELEMENT.lang = global.ELEMENT.lang || {};
        global.ELEMENT.lang.ptBr = mod.exports;
    }
})(this, function (module, exports) {
    'use strict';
 
    exports.__esModule = true;
    exports.default = {
        el: {
            colorpicker: {
                confirm: 'Confirmar',
                clear: 'Limpar'
            },
            datepicker: {
                now: 'Agora',
                today: 'Hoje',
                cancel: 'Cancelar',
                clear: 'Limpar',
                confirm: 'Confirmar',
                selectDate: 'Selecione a data',
                selectTime: 'Selecione a hora',
                startDate: 'Data inicial',
                startTime: 'Hora inicial',
                endDate: 'Data final',
                endTime: 'Hora final',
                prevYear: 'Ano anterior',
                nextYear: 'Próximo ano',
                prevMonth: 'Mês anterior',
                nextMonth: 'Próximo mês',
                year: '',
                month1: 'Janeiro',
                month2: 'Fevereiro',
                month3: 'Março',
                month4: 'Abril',
                month5: 'Maio',
                month6: 'Junho',
                month7: 'Julho',
                month8: 'Agosto',
                month9: 'Setembro',
                month10: 'Outubro',
                month11: 'Novembro',
                month12: 'Dezembro',
                // week: 'semana',
                weeks: {
                    sun: 'Dom',
                    mon: 'Seg',
                    tue: 'Ter',
                    wed: 'Qua',
                    thu: 'Qui',
                    fri: 'Sex',
                    sat: 'Sab'
                },
                months: {
                    jan: 'Jan',
                    feb: 'Fev',
                    mar: 'Mar',
                    apr: 'Abr',
                    may: 'Mai',
                    jun: 'Jun',
                    jul: 'Jul',
                    aug: 'Ago',
                    sep: 'Set',
                    oct: 'Out',
                    nov: 'Nov',
                    dec: 'Dez'
                }
            },
            select: {
                loading: 'Carregando',
                noMatch: 'Sem resultados',
                noData: 'Sem dados',
                placeholder: 'Selecione'
            },
            cascader: {
                noMatch: 'Sem resultados',
                loading: 'Carregando',
                placeholder: 'Selecione',
                noData: 'Sem dados'
            },
            pagination: {
                goto: 'Ir para',
                pagesize: '/página',
                total: 'Total {total}',
                pageClassifier: ''
            },
            messagebox: {
                title: 'Mensagem',
                confirm: 'Confirmar',
                cancel: 'Cancelar',
                error: 'Erro!'
            },
            upload: {
                deleteTip: 'aperte delete para apagar',
                delete: 'Apagar',
                preview: 'Pré-visualizar',
                continue: 'Continuar'
            },
            table: {
                emptyText: 'Sem dados',
                confirmFilter: 'Confirmar',
                resetFilter: 'Limpar',
                clearFilter: 'Todos',
                sumText: 'Total'
            },
            tree: {
                emptyText: 'Sem dados'
            },
            transfer: {
                noMatch: 'Sem resultados',
                noData: 'Sem dados',
                titles: ['Lista 1', 'Lista 2'],
                filterPlaceholder: 'Digite uma palavra-chave',
                noCheckedFormat: '{total} itens',
                hasCheckedFormat: '{checked}/{total} selecionados'
            },
            image: {
                error: 'Erro ao carregar imagem'
            },
            pageHeader: {
                title: 'Voltar'
            }
        }
    };
    module.exports = exports['default'];
});