Correção de Tradução
This commit is contained in:
parent
9f18ed1de9
commit
ae4684ed75
|
@ -964,8 +964,8 @@ final kTranslationsMap = <Map<String, Map<String, String>>>[
|
|||
'en': 'E-mail is required',
|
||||
},
|
||||
'vobnktrz': {
|
||||
'pt': 'Insira um email valido.',
|
||||
'en': '',
|
||||
'pt': 'E-mail Inválido.',
|
||||
'en': 'Invalid E-mail',
|
||||
},
|
||||
'z0bv6wi2': {
|
||||
'pt': 'Please choose an option from the dropdown',
|
||||
|
@ -976,8 +976,8 @@ final kTranslationsMap = <Map<String, Map<String, String>>>[
|
|||
'en': 'Password is required',
|
||||
},
|
||||
'duq5gpp6': {
|
||||
'pt': 'A senha deve ter pelo menos 8 caracteres.',
|
||||
'en': '',
|
||||
'pt': 'Mínimo 8 caracteres.',
|
||||
'en': 'Minimum 8 characters.',
|
||||
},
|
||||
'rcikqhf1': {
|
||||
'pt': 'Please choose an option from the dropdown',
|
||||
|
|
|
@ -8,7 +8,7 @@ class ValidatorUtil {
|
|||
}
|
||||
|
||||
static bool isValidPassword(String password) {
|
||||
if (password.length > 7) {
|
||||
if (password.length >= 8) {
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
|
|
Loading…
Reference in New Issue