add missing localizations

This commit is contained in:
Salvatore Giordano
2022-03-08 10:44:52 +01:00
parent 357357cdff
commit f8c0f808d8
3 changed files with 13 additions and 0 deletions
@@ -526,6 +526,7 @@ class _MessageListViewState extends State<MessageListView> {
return ((index + 2) * 2) - 1;
}
}
return null;
},
// Item Count -> 8 (1 parent, 2 header+footer, 2 top+bottom, 3 messages)
@@ -75,6 +75,7 @@ GlobalStreamChatLocalizations? getStreamChatTranslation(Locale locale) {
case 'pt':
return const StreamChatLocalizationsPt();
}
return null;
}
/// Implementation of localized strings for the stream chat widgets
@@ -371,4 +371,15 @@ Não é possível adicionar mais de $limit arquivos de uma vez
@override
String get slowModeOnLabel => 'Modo lento ativado';
@override
String get linkDisabledDetails =>
'O envio de links não é permitido nesta conversa.';
@override
String get linkDisabledError => 'Os links estão desativados';
@override
String get sendMessagePermissionError =>
'Você não tem permissão para enviar mensagens';
}