From dbd2e71939a2fb223fb909f0beab5b4d51e743ee Mon Sep 17 00:00:00 2001 From: Patrick Adan Date: Fri, 19 Mar 2021 22:22:40 -0400 Subject: [PATCH] Update pt_BR.ts (#233) Update the name of the days of the week and months for Brazilian Portuguese, as names in English are currently being displayed --- src/locale/pt_BR.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/locale/pt_BR.ts b/src/locale/pt_BR.ts index 55de9610fc3d..a6839ba1ddba 100644 --- a/src/locale/pt_BR.ts +++ b/src/locale/pt_BR.ts @@ -27,6 +27,21 @@ const locale: Locale = { nextDecade: 'Próxima década', previousCentury: 'Século anterior', nextCentury: 'Próximo século', + shortWeekDays: ['Dom', 'Seg', 'Ter', 'Qua', 'Qui', 'Sex', 'Sáb'], + shortMonths: [ + 'Jan', + 'Fev', + 'Mar', + 'Abr', + 'Mai', + 'Jun', + 'Jul', + 'Ago', + 'Set', + 'Out', + 'Nov', + 'Dez', + ], }; export default locale;