2016-03-25 01:18:05 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return array(
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Validation Language Lines
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| The following language lines contain the default error messages used by
|
|
|
|
| the validator class. Some of these rules have multiple versions such
|
|
|
|
| such as the size rules. Feel free to tweak each of these messages.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2017-09-06 18:05:32 -07:00
|
|
|
'accepted' => 'O :attribute dever ser aceito.',
|
|
|
|
'active_url' => 'O :attribute não é uma URL válida.',
|
|
|
|
'after' => 'O :attribute deve ser uma data após :date.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'after_or_equal' => 'O atributo: deve ser uma data após ou igual a: data.',
|
2017-09-06 18:05:32 -07:00
|
|
|
'alpha' => 'O :attribute pode apenas conter letras.',
|
|
|
|
'alpha_dash' => 'O :attribute pode apenas conter letras, números, e traços.',
|
|
|
|
'alpha_num' => 'O :attribute pode apenas conter letras e números.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'array' => 'O atributo: deve ser uma matriz.',
|
2017-09-06 18:05:32 -07:00
|
|
|
'before' => 'O :attribute deve ser uma data antes de :date.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'before_or_equal' => 'O atributo: deve ser uma data anterior ou igual a: data.',
|
2017-09-06 18:05:32 -07:00
|
|
|
'between' => [
|
|
|
|
'numeric' => 'O :attribute deve estar entre :min - :max.',
|
|
|
|
'file' => 'O :attribute deve estar entre :min - :max kilobytes.',
|
|
|
|
'string' => 'O :attribute deve estar entre :min - :max caracteres.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'array' => 'O atributo deve ter entre: min e: itens máximos.',
|
2017-09-06 18:05:32 -07:00
|
|
|
],
|
|
|
|
'boolean' => 'O :atributo têm que ser verdadeiro ou falso.',
|
|
|
|
'confirmed' => 'A confirmação do :attribute não corresponde.',
|
|
|
|
'date' => 'O :attribute não é uma data válida.',
|
|
|
|
'date_format' => 'O :attribute não corresponde ao formato :format.',
|
|
|
|
'different' => 'O :attribute e :other devem ser diferentes.',
|
|
|
|
'digits' => 'O :attribute deve ter :digits dígitos.',
|
|
|
|
'digits_between' => 'O :attribute deve ter entre :min e :max dígitos.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'dimensions' => 'O atributo: tem dimensões de imagem inválidas.',
|
|
|
|
'distinct' => 'O campo: atributo tem um valor duplicado.',
|
2017-09-06 18:05:32 -07:00
|
|
|
'email' => 'O formato de :attribute é inválido.',
|
|
|
|
'exists' => 'O :attribute selecionado é inválido.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'file' => 'O atributo: deve ser um arquivo.',
|
|
|
|
'filled' => 'O campo: atributo deve ter um valor.',
|
2017-09-06 18:05:32 -07:00
|
|
|
'image' => 'O :attribute deve ser uma imagem.',
|
|
|
|
'in' => 'O :attribute selecionado é inválido.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'in_array' => 'O campo: atributo não existe em: outro.',
|
2017-09-06 18:05:32 -07:00
|
|
|
'integer' => 'O :attribute deve ser um número inteiro.',
|
|
|
|
'ip' => 'O :attribute deve ser um endereço de IP válido.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'ipv4' => 'O atributo: deve ser um endereço IPv4 válido.',
|
|
|
|
'ipv6' => 'O atributo deve ser um endereço IPv6 válido.',
|
|
|
|
'json' => 'O atributo: deve ser uma string JSON válida.',
|
2017-09-06 18:05:32 -07:00
|
|
|
'max' => [
|
|
|
|
'numeric' => 'O :attribute não pode ser maior do que :max.',
|
|
|
|
'file' => 'O :attribute não pode ser maior do que :max kilobytes.',
|
|
|
|
'string' => 'O :attribute não pode ser maior do que :max caracteres.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'array' => 'O atributo: pode não ter mais do que: itens máximos.',
|
2017-09-06 18:05:32 -07:00
|
|
|
],
|
|
|
|
'mimes' => 'O :attribute deve ser um arquivo do tipo: :values.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'mimetypes' => 'O: atributo deve ser um arquivo de tipo:: valores.',
|
2017-09-06 18:05:32 -07:00
|
|
|
'min' => [
|
|
|
|
'numeric' => 'O :attribute deve ter pelo menos :min.',
|
|
|
|
'file' => 'O :attribute deve ter pelo menos :min kilobytes.',
|
|
|
|
'string' => 'O :attribute deve ter pelo menos :min caracteres.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'array' => 'O atributo deve ter pelo menos: itens mínimos.',
|
2017-09-06 18:05:32 -07:00
|
|
|
],
|
|
|
|
'not_in' => 'O :attribute selecionado é inválido.',
|
|
|
|
'numeric' => 'O :attribute deve ser um número.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'present' => 'O campo: atributo deve estar presente.',
|
2017-09-06 18:05:32 -07:00
|
|
|
'regex' => 'O formato de :attribute é inválido.',
|
|
|
|
'required' => 'O campo de :attribute é requerido.',
|
|
|
|
'required_if' => 'O campo de :attribute é requerido quando :other é :value.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'required_unless' => 'O campo: atributo é necessário a menos que: outro esteja em: valores.',
|
2017-09-06 18:05:32 -07:00
|
|
|
'required_with' => 'O campo de :attribute é requerido quando :values está presente.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'required_with_all' => 'O campo: atributo é obrigatório quando: os valores estão presentes.',
|
2017-09-06 18:05:32 -07:00
|
|
|
'required_without' => 'O campo de :attribute é requerido quando :values não está presente.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'required_without_all' => 'O campo: atributo é obrigatório quando nenhum de: valores estão presentes.',
|
2017-09-06 18:05:32 -07:00
|
|
|
'same' => 'O :attribute e :other devem corresponderem.',
|
|
|
|
'size' => [
|
|
|
|
'numeric' => 'O :attribute deve ser :size.',
|
|
|
|
'file' => 'O :attribute deve ter :size kilobytes.',
|
|
|
|
'string' => 'O :attribute deve ter :size caracteres.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'array' => 'O atributo: deve conter: itens de tamanho.',
|
2017-09-06 18:05:32 -07:00
|
|
|
],
|
2017-10-17 18:52:20 -07:00
|
|
|
'string' => 'O atributo deve ser uma string.',
|
|
|
|
'timezone' => 'O atributo: deve ser uma zona válida.',
|
2017-09-06 18:05:32 -07:00
|
|
|
'unique' => 'O :attribute já foi tomado.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'uploaded' => 'O atributo: não foi possível carregar.',
|
2017-09-06 18:05:32 -07:00
|
|
|
'url' => 'O formato de :attribute é inválido.',
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Custom Validation Language Lines
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Here you may specify custom validation messages for attributes using the
|
|
|
|
| convention "attribute.rule" to name the lines. This makes it quick to
|
|
|
|
| specify a specific custom language line for a given attribute rule.
|
|
|
|
|
|
|
|
|
*/
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Custom Validation Language Lines
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Here you may specify custom validation messages for attributes using the
|
|
|
|
| convention "attribute.rule" to name the lines. This makes it quick to
|
|
|
|
| specify a specific custom language line for a given attribute rule.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2017-09-06 18:05:32 -07:00
|
|
|
'custom' => [
|
2017-10-17 18:52:20 -07:00
|
|
|
'alpha_space' => "O campo: atributo contém um caractere que não é permitido.",
|
|
|
|
"email_array" => "Um ou mais endereços de e-mail são inválidos.",
|
|
|
|
"hashed_pass" => "Sua senha atual está incorreta",
|
|
|
|
'dumbpwd' => 'Essa senha é muito comum.',
|
|
|
|
"statuslabel_type" => "Você deve selecionar um tipo de etiqueta de status válido",
|
|
|
|
"unique_undeleted" => "O atributo deve ser exclusivo.",
|
2017-09-06 18:05:32 -07:00
|
|
|
],
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Custom Validation Attributes
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| The following language lines are used to swap attribute place-holders
|
|
|
|
| with something more reader friendly such as E-Mail Address instead
|
|
|
|
| of "email". This simply helps us make messages a little cleaner.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2017-09-06 18:05:32 -07:00
|
|
|
'attributes' => [],
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
);
|