Correção de Tradução

This commit is contained in:
Lucas 2024-08-02 12:26:24 -03:00
parent 9f18ed1de9
commit ae4684ed75
2 changed files with 5 additions and 5 deletions

View File

@ -964,8 +964,8 @@ final kTranslationsMap = <Map<String, Map<String, String>>>[
'en': 'E-mail is required', 'en': 'E-mail is required',
}, },
'vobnktrz': { 'vobnktrz': {
'pt': 'Insira um email valido.', 'pt': 'E-mail Inválido.',
'en': '', 'en': 'Invalid E-mail',
}, },
'z0bv6wi2': { 'z0bv6wi2': {
'pt': 'Please choose an option from the dropdown', 'pt': 'Please choose an option from the dropdown',
@ -976,8 +976,8 @@ final kTranslationsMap = <Map<String, Map<String, String>>>[
'en': 'Password is required', 'en': 'Password is required',
}, },
'duq5gpp6': { 'duq5gpp6': {
'pt': 'A senha deve ter pelo menos 8 caracteres.', 'pt': 'Mínimo 8 caracteres.',
'en': '', 'en': 'Minimum 8 characters.',
}, },
'rcikqhf1': { 'rcikqhf1': {
'pt': 'Please choose an option from the dropdown', 'pt': 'Please choose an option from the dropdown',

View File

@ -8,7 +8,7 @@ class ValidatorUtil {
} }
static bool isValidPassword(String password) { static bool isValidPassword(String password) {
if (password.length > 7) { if (password.length >= 8) {
return true; return true;
} else { } else {
return false; return false;