6 |--------------------------------------------------------------------------
7 | Validation Language Lines
8 |--------------------------------------------------------------------------
10 | The following language lines contain the default error messages used by
11 | the validator class. Some of these rules have multiple versions such
12 | as the size rules. Feel free to tweak each of these messages here.
16 'accepted' => 'O :attribute deve ser aceito.',
17 'active_url' => 'O :attribute não é uma URL válida.',
18 'after' => 'O :attribute deve ser uma data posterior à data :date.',
19 'alpha' => 'O :attribute deve conter apenas letras.',
20 'alpha_dash' => 'O :attribute deve conter apenas letras, números e traços.',
21 'alpha_num' => 'O :attribute deve conter apenas letras e números.',
22 'array' => 'O :attribute deve ser uma array.',
23 'before' => 'O :attribute deve ser uma data anterior à data :date.',
25 'numeric' => 'O :attribute deve ter tamanho entre :min e :max.',
26 'file' => 'O :attribute deve ter entre :min e :max kilobytes.',
27 'string' => 'O :attribute deve ter entre :min e :max caracteres.',
28 'array' => 'O :attribute deve ter entre :min e :max itens.',
30 'boolean' => 'O campo :attribute deve ser verdadeiro ou falso.',
31 'confirmed' => 'O campo :attribute de confirmação não é igual.',
32 'date' => 'O campo :attribute não está em um formato de data válido.',
33 'date_format' => 'O campo :attribute não tem a formatação :format.',
34 'different' => 'O campo :attribute e o campo :other devem ser diferentes.',
35 'digits' => 'O campo :attribute deve ter :digits dígitos.',
36 'digits_between' => 'O campo :attribute deve ter entre :min e :max dígitos.',
37 'email' => 'O campo :attribute deve ser um e-mail válido.',
38 'filled' => 'O campo :attribute é requerido.',
39 'exists' => 'O atributo :attribute selecionado não é válido.',
40 'image' => 'O campo :attribute deve ser uma imagem.',
41 'in' => 'The selected :attribute is invalid.',
42 'integer' => 'O campo :attribute deve ser um número inteiro.',
43 'ip' => 'O campo :attribute deve ser um IP válido.',
45 'numeric' => 'O valor para o campo :attribute não deve ser maior que :max.',
46 'file' => 'O valor para o campo :attribute não deve ter tamanho maior que :max kilobytes.',
47 'string' => 'O valor para o campo :attribute não deve ter mais que :max caracteres.',
48 'array' => 'O valor para o campo :attribute não deve ter mais que :max itens.',
50 'mimes' => 'O :attribute deve ser do tipo type: :values.',
52 'numeric' => 'O valor para o campo :attribute não deve ser menor que :min.',
53 'file' => 'O valor para o campo :attribute não deve ter tamanho menor que :min kilobytes.',
54 'string' => 'O valor para o campo :attribute não deve ter menos que :min caracteres.',
55 'array' => 'O valor para o campo :attribute não deve ter menos que :min itens.',
57 'not_in' => 'O campo selecionado :attribute é inválido.',
58 'numeric' => 'O campo :attribute deve ser um número.',
59 'regex' => 'O formato do campo :attribute é inválido.',
60 'required' => 'O campo :attribute é requerido.',
61 'required_if' => 'O campo :attribute é requerido quando o campo :other tem valor :value.',
62 'required_with' => 'O campo :attribute é requerido quando os valores :values estiverem presentes.',
63 'required_with_all' => 'O campo :attribute é requerido quando os valores :values estiverem presentes.',
64 'required_without' => 'O campo :attribute é requerido quando os valores :values não estiverem presentes.',
65 'required_without_all' => 'O campo :attribute é requerido quando nenhum dos valores :values estiverem presentes.',
66 'same' => 'O campo :attribute e o campo :other devem ser iguais.',
68 'numeric' => 'O tamanho do campo :attribute deve ser :size.',
69 'file' => 'O tamanho do arquivo :attribute deve ser de :size kilobytes.',
70 'string' => 'O tamanho do campo :attribute deve ser de :size caracteres.',
71 'array' => 'O campo :attribute deve conter :size itens.',
73 'string' => 'O campo :attribute deve ser uma string.',
74 'timezone' => 'O campo :attribute deve conter uma timezone válida.',
75 'unique' => 'Já existe um campo/dado de nome :attribute.',
76 'url' => 'O formato da URL :attribute é inválido.',
79 |--------------------------------------------------------------------------
80 | Custom Validation Language Lines
81 |--------------------------------------------------------------------------
83 | Here you may specify custom validation messages for attributes using the
84 | convention "attribute.rule" to name the lines. This makes it quick to
85 | specify a specific custom language line for a given attribute rule.
90 'password-confirm' => [
91 'required_with' => 'Confirmação de senha requerida',
96 |--------------------------------------------------------------------------
97 | Custom Validation Attributes
98 |--------------------------------------------------------------------------
100 | The following language lines are used to swap attribute place-holders
101 | with something more reader friendly such as E-Mail Address instead
102 | of "email". This simply helps us make messages a little cleaner.