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
|
/* Portuguese translation for Intimidatetime */
(function($) {
$.intimidatetime.i18n['pt'] = {
format: 'dd/MM/yyyy HH:mm',
units: {
year: {
format: 'yyyy',
label: 'Ano'
},
month: {
format: 'MMM',
label: 'Mês',
names: ['Janeiro','Fevereiro','Março','Abril','Maio','Junho','Julho','Agosto','Setembro','Outubro','Novembro','Dezembro'],
namesAbbr: ['Jan','Fev','Mar','Abr','Mai','Jun','Jul','Ago','Set','Out','Nov','Dez']
},
day: {
format: 'd',
label: 'Dia',
names: ['Domingo','Segunda-feira','Terça-feira','Quarta-feira','Quinta-feira','Sexta-feira','Sábado'],
namesAbbr: ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb'],
namesHead: ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb']
},
hour: {
format: 'HH',
label: 'Horas',
am: ['a.m.','AM','A'],
pm: ['p.m.','PM','P']
},
minute: {
format: 'mm',
label: 'Minutos'
},
second: {
format: 'ss',
label: 'Segundos'
},
millisecond: {
format: 'l',
label: 'Milissegundos'
},
microsecond: {
format: 'c',
label: 'Microssegundos'
},
timezone: {
format: 'z',
label: 'Fuso horário'
}
},
rtl: false
};
$.intimidatetime.setDefaults($.intimidatetime.i18n['pt']);
})(window.jQuery || window.Zepto || window.$);
|