From 566e118a192d3cdd7cad903c6d696b06554e06d9 Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 20 Aug 2022 08:01:52 -0700 Subject: [PATCH] Added pt-BR translation locale to mobile app --- mobile/lib/constants/locales.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mobile/lib/constants/locales.dart b/mobile/lib/constants/locales.dart index 8aa642a353..1dd988f1d0 100644 --- a/mobile/lib/constants/locales.dart +++ b/mobile/lib/constants/locales.dart @@ -11,7 +11,8 @@ const List locales = [ Locale('fr', 'FR'), Locale('it', 'IT'), Locale('ja', 'JP'), - Locale('pl', 'PL') + Locale('pl', 'PL'), + Locale('pt', 'PR') ]; const String translationsPath = 'assets/i18n';