|
22 | 22 | 'alpha_dash' => 'O campo :attribute só pode conter letras, números e traços.', |
23 | 23 | 'alpha_num' => 'O campo :attribute só pode conter letras e números.', |
24 | 24 | 'array' => 'O campo :attribute deve ser uma matriz.', |
| 25 | + 'ascii' => 'The :attribute field must only contain single-byte alphanumeric characters and symbols.', // TODO |
25 | 26 | 'before' => 'O campo :attribute deve ser uma data anterior :date.', |
26 | 27 | 'before_or_equal' => 'O campo :attribute deve ser uma data anterior ou igual a :date.', |
27 | 28 | 'between' => [ |
|
31 | 32 | 'array' => 'O campo :attribute deve ter entre :min e :max itens.', |
32 | 33 | ], |
33 | 34 | 'boolean' => 'O campo :attribute deve ser verdadeiro ou falso.', |
| 35 | + 'can' => 'The :attribute field contains an unauthorized value.', // TODO |
34 | 36 | 'confirmed' => 'O campo :attribute de confirmação não confere.', |
35 | 37 | 'current_password' => 'A senha está incorreta.', |
36 | 38 | 'date' => 'O campo :attribute não é uma data válida.', |
37 | 39 | 'date_equals' => 'O campo :attribute deve ser uma data igual a :date.', |
38 | 40 | 'date_format' => 'O campo :attribute não corresponde ao formato :format.', |
| 41 | + 'decimal' => 'The :attribute field must have :decimal decimal places.', // TODO |
39 | 42 | 'declined' => 'O :attribute deve ser recusado.', |
40 | 43 | 'declined_if' => 'O :attribute deve ser recusado quando :other for :value.', |
41 | 44 | 'different' => 'Os campos :attribute e :other devem ser diferentes.', |
|
71 | 74 | 'ipv4' => 'O campo :attribute deve ser um endereço IPv4 válido.', |
72 | 75 | 'ipv6' => 'O campo :attribute deve ser um endereço IPv6 válido.', |
73 | 76 | 'json' => 'O campo :attribute deve ser uma string JSON válida.', |
| 77 | + 'lowercase' => 'The :attribute field must be lowercase.', // TODO |
74 | 78 | 'lt' => [ |
75 | 79 | 'numeric' => 'O campo :attribute deve ser menor que :value.', |
76 | 80 | 'file' => 'O campo :attribute deve ser menor que :value kilobytes.', |
|
83 | 87 | 'string' => 'O campo :attribute deve ser menor ou igual a :value caracteres.', |
84 | 88 | 'array' => 'O campo :attribute não deve conter mais que :value itens.', |
85 | 89 | ], |
| 90 | + 'mac_address' => 'The :attribute field must be a valid MAC address.', // TODO |
86 | 91 | 'max' => [ |
87 | 92 | 'numeric' => 'O campo :attribute não pode ser superior a :max.', |
88 | 93 | 'file' => 'O campo :attribute não pode ser superior a :max kilobytes.', |
|
98 | 103 | 'string' => 'O campo :attribute deve ter pelo menos :min caracteres.', |
99 | 104 | 'array' => 'O campo :attribute deve ter pelo menos :min itens.', |
100 | 105 | ], |
101 | | - 'missing_with' => 'O campo :attribute não deve estar presente quando houver :values.', |
102 | 106 | 'min_digits' => 'O campo :attribute deve ter pelo menos :min dígitos', |
103 | | - 'not_in' => 'O campo :attribute selecionado é inválido.', |
| 107 | + 'missing' => 'The :attribute field must be missing.', // TODO |
| 108 | + 'missing_if' => 'The :attribute field must be missing when :other is :value.', // TODO |
| 109 | + 'missing_unless' => 'The :attribute field must be missing unless :other is :value.', // TODO |
| 110 | + 'missing_with' => 'O campo :attribute não deve estar presente quando houver :values.', |
| 111 | + 'missing_with_all' => 'The :attribute field must be missing when :values are present.', // TODO |
104 | 112 | 'multiple_of' => 'O campo :attribute deve ser um múltiplo de :value.', |
| 113 | + 'not_in' => 'O campo :attribute selecionado é inválido.', |
105 | 114 | 'not_regex' => 'O campo :attribute possui um formato inválido.', |
106 | 115 | 'numeric' => 'O campo :attribute deve ser um número.', |
107 | 116 | 'password' => [ |
|
112 | 121 | 'uncompromised' => 'A senha que você inseriu em :attribute está em um vazamento de dados. Por favor escolha uma senha diferente.', |
113 | 122 | ], |
114 | 123 | 'present' => 'O campo :attribute deve estar presente.', |
| 124 | + 'prohibited' => 'O campo :attribute é proibido.', |
| 125 | + 'prohibited_if' => 'O campo :attribute é proibido quando :other for :value.', |
| 126 | + 'prohibited_unless' => 'O campo :attribute é proibido exceto quando :other for :values.', |
| 127 | + 'prohibits' => 'O campo :attribute proíbe :other de estar presente.', |
115 | 128 | 'regex' => 'O campo :attribute tem um formato inválido.', |
116 | 129 | 'required' => 'O campo :attribute é obrigatório.', |
117 | 130 | 'required_array_keys' => 'O campo :attribute deve conter entradas para: :values.', |
118 | 131 | 'required_if' => 'O campo :attribute é obrigatório quando :other for :value.', |
| 132 | + 'required_if_accepted' => 'The :attribute field is required when :other is accepted.', // TODO |
119 | 133 | 'required_unless' => 'O campo :attribute é obrigatório exceto quando :other for :values.', |
120 | 134 | 'required_with' => 'O campo :attribute é obrigatório quando :values está presente.', |
121 | 135 | 'required_with_all' => 'O campo :attribute é obrigatório quando :values está presente.', |
122 | 136 | 'required_without' => 'O campo :attribute é obrigatório quando :values não está presente.', |
123 | 137 | 'required_without_all' => 'O campo :attribute é obrigatório quando nenhum dos :values estão presentes.', |
124 | | - 'prohibited' => 'O campo :attribute é proibido.', |
125 | | - 'prohibited_if' => 'O campo :attribute é proibido quando :other for :value.', |
126 | | - 'prohibited_unless' => 'O campo :attribute é proibido exceto quando :other for :values.', |
127 | | - 'prohibits' => 'O campo :attribute proíbe :other de estar presente.', |
128 | 138 | 'same' => 'Os campos :attribute e :other devem corresponder.', |
129 | 139 | 'size' => [ |
130 | 140 | 'numeric' => 'O campo :attribute deve ser :size.', |
|
137 | 147 | 'timezone' => 'O campo :attribute deve ser uma zona válida.', |
138 | 148 | 'unique' => 'O campo :attribute já está sendo utilizado.', |
139 | 149 | 'uploaded' => 'Ocorreu uma falha no upload do campo :attribute.', |
| 150 | + 'uppercase' => 'The :attribute field must be uppercase.', // TODO |
140 | 151 | 'url' => 'O campo :attribute tem um formato inválido.', |
| 152 | + 'ulid' => 'The :attribute field must be a valid ULID.', // TODO |
141 | 153 | 'uuid' => 'O campo :attribute deve ser um UUID válido.', |
142 | 154 |
|
143 | 155 | /* |
|
0 commit comments