|
| 1 | +<?php |
| 2 | +return [ |
| 3 | + /* |
| 4 | + |-------------------------------------------------------------------------- |
| 5 | + | Validation Language Lines |
| 6 | + |-------------------------------------------------------------------------- |
| 7 | + | |
| 8 | + | The following language lines contain the default error messages used by |
| 9 | + | the validator class. Some of these rules have multiple versions such |
| 10 | + | as the size rules. Feel free to tweak each of these messages here. |
| 11 | + | |
| 12 | + */ |
| 13 | + 'accepted' => 'O :attribute precisa ser aceito.', |
| 14 | + 'active_url' => 'O :attribute não é uma URL válida.', |
| 15 | + 'after' => 'O :attribute precisa ser uma data após :date.', |
| 16 | + 'alpha' => 'O :attribute só pode conter letras.', |
| 17 | + 'alpha_dash' => 'O :attribute pode apenas conter letras, números, e hífens.', |
| 18 | + 'alpha_num' => 'O :attribute pode apenas conter letras e números.', |
| 19 | + 'array' => 'O :attribute precisa ser uma lista.', |
| 20 | + 'before' => 'O :attribute precisa ser uma data antes de :date.', |
| 21 | + 'between' => [ |
| 22 | + 'numeric' => 'O :attribute precisa estar entre :min e :max.', |
| 23 | + 'file' => 'O :attribute precisa estar entre :min e :max kilobytes.', |
| 24 | + 'string' => 'O :attribute precisa estar entre :min e :max caracteres.', |
| 25 | + 'array' => 'O :attribute precisa estar entre :min e :max itens.', |
| 26 | + ], |
| 27 | + 'boolean' => 'O :attribute precisa ser falso ou verdadeiro.', |
| 28 | + 'confirmed' => 'O :attribute de confirmação não combina.', |
| 29 | + 'date' => 'O :attribute não é uma data válida.', |
| 30 | + 'date_format' => 'O :attribute não combina com o formato :format.', |
| 31 | + 'different' => 'O :attribute e :other precisam ser diferentes.', |
| 32 | + 'digits' => 'O :attribute precisa ter :digits dígitos.', |
| 33 | + 'digits_between' => 'O :attribute precisa estar entre :min e :max dígitos.', |
| 34 | + 'email' => 'O :attribute precisa ser um endereço de email válido.', |
| 35 | + 'exists' => 'O :attribute selecionado é inválido.', |
| 36 | + 'filled' => 'O campo :attribute é obrigatório.', |
| 37 | + 'image' => 'O :attribute precisa ser uma imagem.', |
| 38 | + 'in' => 'O :attribute é inválido.', |
| 39 | + 'integer' => 'O :attribute precisa ser um número inteiro.', |
| 40 | + 'ip' => 'O :attribute precisa ser um endereço IP válido.', |
| 41 | + 'json' => 'O :attribute precia ser um texto JSON válido.', |
| 42 | + 'max' => [ |
| 43 | + 'numeric' => 'O :attribute não pode ser maior que :max.', |
| 44 | + 'file' => 'O :attribute não pode ser maior que :max kilobytes.', |
| 45 | + 'string' => 'O :attribute não pode ter mais do que :max caracteres.', |
| 46 | + 'array' => 'O :attribute não pode ter mais do que :max itens.', |
| 47 | + ], |
| 48 | + 'mimes' => 'O :attribute precisa ser um arquivo do tipo: :values.', |
| 49 | + 'min' => [ |
| 50 | + 'numeric' => 'O :attribute precisa ser ao menos :min.', |
| 51 | + 'file' => 'O :attribute precisa ser ao menos :min kilobytes.', |
| 52 | + 'string' => 'O :attribute precisa ter ao menos :min caracteres.', |
| 53 | + 'array' => 'O :attribute precisa ter ao menos :min itens.', |
| 54 | + ], |
| 55 | + 'not_in' => 'O :attribute selecionado é inválido.', |
| 56 | + 'numeric' => 'O :attribute precisa ser um número.', |
| 57 | + 'regex' => 'O formato de :attribute é inválido.', |
| 58 | + 'required' => 'O campo :attribute é obrigatório.', |
| 59 | + 'required_if' => 'O campo :attribute é obrigatório quando :other é :value.', |
| 60 | + 'required_with' => 'O campo :attribute é obrigatório quando :values está presente.', |
| 61 | + 'required_with_all' => 'O campo :attribute é obrigatório quando :values estão presentes.', |
| 62 | + 'required_without' => 'O campo :attribute é obrigatório quando :values não estão presentes.', |
| 63 | + 'required_without_all' => 'O campo :attribute é obrigatório quando nenhum de :values estão presentes.', |
| 64 | + 'same' => 'O campo :attribute e :other precisam combinar.', |
| 65 | + 'size' => [ |
| 66 | + 'numeric' => 'O :attribute precisa ser :size.', |
| 67 | + 'file' => 'O :attribute precisa ser :size kilobytes.', |
| 68 | + 'string' => 'O :attribute precisa ser :size caracteres.', |
| 69 | + 'array' => 'O :attribute precisa conter :size itens.', |
| 70 | + ], |
| 71 | + 'string' => 'O :attribute precisa ser um texto.', |
| 72 | + 'totp' => 'O token TOTP é inválido. Ele expirou?', |
| 73 | + 'timezone' => 'O :attribute precisa ser um fuso horário válido.', |
| 74 | + 'unique' => 'O :attribute já foi pego.', |
| 75 | + 'url' => 'O formato de :attribute é inválido.', |
| 76 | + /* |
| 77 | + |-------------------------------------------------------------------------- |
| 78 | + | Custom Validation Language Lines |
| 79 | + |-------------------------------------------------------------------------- |
| 80 | + | |
| 81 | + | Here you may specify custom validation messages for attributes using the |
| 82 | + | convention "attribute.rule" to name the lines. This makes it quick to |
| 83 | + | specify a specific custom language line for a given attribute rule. |
| 84 | + | |
| 85 | + */ |
| 86 | + 'custom' => [ |
| 87 | + 'attribute-name' => [ |
| 88 | + 'rule-name' => 'custom-message', |
| 89 | + ], |
| 90 | + ], |
| 91 | + /* |
| 92 | + |-------------------------------------------------------------------------- |
| 93 | + | Custom Validation Attributes |
| 94 | + |-------------------------------------------------------------------------- |
| 95 | + | |
| 96 | + | The following language lines are used to swap attribute place-holders |
| 97 | + | with something more reader friendly such as E-Mail Address instead |
| 98 | + | of "email". This simply helps us make messages a little cleaner. |
| 99 | + | |
| 100 | + */ |
| 101 | + 'attributes' => [], |
| 102 | +]; |
0 commit comments