diff --git a/resources/lang/pt-BR/validation.php b/resources/lang/pt-BR/validation.php index c94b7a3a..01313bfe 100644 --- a/resources/lang/pt-BR/validation.php +++ b/resources/lang/pt-BR/validation.php @@ -31,19 +31,19 @@ return [ 'array' => 'O campo :attribute deve ser um vetor.', 'before' => 'O campo :attribute deverá conter uma data anterior a :date.', 'between' => [ - 'numeric' => 'The :attribute must be between :min and :max.', - 'file' => 'The :attribute must be between :min and :max kilobytes.', - 'string' => 'The :attribute must be between :min and :max characters.', + 'numeric' => 'O campo :attribute deverá ter um valor entre :min - :max.', + 'file' => 'O campo :attribute deve estar entre :min e :max kilobytes.', + 'string' => 'O campo :attribute deve ter entre :min e :max caracteres.', 'array' => 'O campo :attribute deve ter entre :min e :max itens.', ], - 'boolean' => 'The :attribute field must be true or false.', - 'confirmed' => 'The :attribute confirmation does not match.', - 'date' => 'The :attribute is not a valid date.', - 'date_format' => 'The :attribute does not match the format :format.', - 'different' => 'The :attribute and :other must be different.', - 'digits' => 'The :attribute must be :digits digits.', - 'digits_between' => 'The :attribute must be between :min and :max digits.', - 'email' => 'The :attribute must be a valid email address.', + 'boolean' => 'O campo :attribute deve ser verdadeiro ou falso.', + 'confirmed' => 'A confirmação do campo :attribute não corresponde.', + 'date' => 'O campo :attribute não é uma data válida.', + 'date_format' => 'O campo :attribute não corresponde ao formato :format.', + 'different' => 'O campo :attribute e :other devem ser diferentes.', + 'digits' => 'O campo :attribute deve ter :digits dígitos.', + 'digits_between' => 'O campo :attribute deve ter entre :min e :max dígitos.', + 'email' => 'O campo :attribute deve ser um endereço de email válido.', 'exists' => 'The selected :attribute is invalid.', 'distinct' => 'O campo :attribute tem um valor duplicado.', 'filled' => 'The :attribute field is required.', @@ -84,7 +84,7 @@ return [ 'string' => 'O :attribute deve ter :size caracteres.', 'array' => 'The :attribute must contain :size items.', ], - 'string' => 'The :attribute must be a string.', + 'string' => 'O campo :attribute deve ser uma string.', 'timezone' => 'O :attribute deve ser uma zona válida.', 'unique' => 'O :attribute já existe.', 'url' => 'O formato de :attribute é inválido.',