We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8578546 commit 1ac9e1eCopy full SHA for 1ac9e1e
src/locale/pt.js
@@ -3,9 +3,19 @@ import dayjs from 'dayjs'
3
const locale = {
4
name: 'pt',
5
weekdays: 'Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado'.split('_'),
6
+ weekdaysShort: 'Dom_Seg_Ter_Qua_Qui_Sex_Sab'.split('_'),
7
months: 'Janeiro_Fevereiro_Março_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro'.split('_'),
8
+ monthsShort: 'Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez'.split('_'),
9
ordinal: n => `${n}º`,
10
weekStart: 1,
11
+ formats: {
12
+ LT: 'HH:mm',
13
+ LTS: 'HH:mm:ss',
14
+ L: 'DD/MM/YYYY',
15
+ LL: 'D [de] MMMM [de] YYYY',
16
+ LLL: 'D [de] MMMM [de] YYYY [às] HH:mm',
17
+ LLLL: 'dddd, D [de] MMMM [de] YYYY [às] HH:mm'
18
+ },
19
relativeTime: {
20
future: 'em %s',
21
past: 'há %s',
0 commit comments