| 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
136
137
138
139
140
141
142
 | | (function (global, factory) { |  |   if (typeof define === "function" && define.amd) { |  |     define('element/locale/pt', ['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.pt = 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 de inicio', |  |         startTime: 'Hora de inicio', |  |         endDate: 'Data de fim', |  |         endTime: 'Hora de fim', |  |         prevYear: 'Previous Year', // to be translated |  |         nextYear: 'Next Year', // to be translated |  |         prevMonth: 'Previous Month', // to be translated |  |         nextMonth: 'Next Month', // to be translated |  |         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: 'A carregar', |  |         noMatch: 'Sem correspondência', |  |         noData: 'Sem dados', |  |         placeholder: 'Selecione' |  |       }, |  |       cascader: { |  |         noMatch: 'Sem correspondência', |  |         loading: 'A carregar', |  |         placeholder: 'Selecione', |  |         noData: 'Sem dados' |  |       }, |  |       pagination: { |  |         goto: 'Ir para', |  |         pagesize: '/pagina', |  |         total: 'Total {total}', |  |         pageClassifier: '' |  |       }, |  |       messagebox: { |  |         title: 'Mensagem', |  |         confirm: 'Confirmar', |  |         cancel: 'Cancelar', |  |         error: 'Erro!' |  |       }, |  |       upload: { |  |         deleteTip: 'press delete to remove', // to be translated |  |         delete: 'Apagar', |  |         preview: 'Previsualizar', |  |         continue: 'Continuar' |  |       }, |  |       table: { |  |         emptyText: 'Sem dados', |  |         confirmFilter: 'Confirmar', |  |         resetFilter: 'Limpar', |  |         clearFilter: 'Todos', |  |         sumText: 'Sum' // to be translated |  |       }, |  |       tree: { |  |         emptyText: 'Sem dados' |  |       }, |  |       transfer: { |  |         noMatch: 'Sem correspondência', |  |         noData: 'Sem dados', |  |         titles: ['List 1', 'List 2'], // to be translated |  |         filterPlaceholder: 'Enter keyword', // to be translated |  |         noCheckedFormat: '{total} items', // to be translated |  |         hasCheckedFormat: '{checked}/{total} checked' // to be translated |  |       }, |  |       image: { |  |         error: 'FAILED' // to be translated |  |       }, |  |       pageHeader: { |  |         title: 'Back' // to be translated |  |       }, |  |       popconfirm: { |  |         confirmButtonText: 'Yes', // to be translated |  |         cancelButtonText: 'No' // to be translated |  |       }, |  |       empty: { |  |         description: 'Sem dados' |  |       } |  |     } |  |   }; |  |   module.exports = exports['default']; |  | }); | 
 |