Update validation.php

This commit is contained in:
Thiago Coutinho 2014-03-20 13:12:53 -03:00
parent 2ca7259840
commit 33e69f132a

View File

@ -25,52 +25,52 @@ return array(
"numeric" => ":attribute deve ser entre :min - :max.", "numeric" => ":attribute deve ser entre :min - :max.",
"file" => ":attribute deve ser entre :min - :max kilobytes.", "file" => ":attribute deve ser entre :min - :max kilobytes.",
"string" => ":attribute deve ser entre :min - :max caracteres.", "string" => ":attribute deve ser entre :min - :max caracteres.",
"array" => ":attribute deve ser entre :min - :max itens.", "array" => ":attribute deve conter entre :min - :max itens.",
), ),
"confirmed" => ":attribute confirmação não correponde.", "confirmed" => ":attribute confirmação não correponde.",
"date" => ":attribute não é uma data válida.", "date" => ":attribute não é uma data válida.",
"date_format" => ":attribute não satisfaz o formato :format.", "date_format" => ":attribute não satisfaz o formato :format.",
"different" => ":attribute e :other devem ser diferentes.", "different" => ":attribute e :other devem ser diferentes.",
"digits" => ":attribute deve conter :digits dígitos.", "digits" => ":attribute deve conter :digits dígitos.",
"digits_between" => "The :attribute must be between :min and :max digits.", "digits_between" => ":attribute deve conter entre :min e :max dígitos.",
"email" => "The :attribute format is invalid.", "email" => ":attribute está em um formato inválido.",
"exists" => "The selected :attribute is invalid.", "exists" => "A opção selecionada :attribute é inválida.",
"image" => "The :attribute must be an image.", "image" => ":attribute deve ser uma imagem.",
"in" => "The selected :attribute is invalid.", "in" => "A opção selecionada :attribute é inválida.",
"integer" => "The :attribute must be an integer.", "integer" => ":attribute deve ser um número inteiro.",
"ip" => "The :attribute must be a valid IP address.", "ip" => ":attribute deve ser um endereço IP válido.",
"max" => array( "max" => array(
"numeric" => "The :attribute may not be greater than :max.", "numeric" => ":attribute não pode ser maior que :max.",
"file" => "The :attribute may not be greater than :max kilobytes.", "file" => ":attribute não pode ser maior que :max kilobytes.",
"string" => "The :attribute may not be greater than :max characters.", "string" => ":attribute não pode ser maior que :max caracteres.",
"array" => "The :attribute may not have more than :max items.", "array" => ":attribute não pode conter mais que :max itens.",
), ),
"mimes" => "The :attribute must be a file of type: :values.", "mimes" => ":attribute deve ser um arquivo do tipo: :values.",
"min" => array( "min" => array(
"numeric" => "The :attribute must be at least :min.", "numeric" => ":attribute não deve ser menor que :min.",
"file" => "The :attribute must be at least :min kilobytes.", "file" => ":attribute deve ter no mínimo :min kilobytes.",
"string" => "The :attribute must be at least :min characters.", "string" => ":attribute deve conter no mínimo :min caracteres.",
"array" => "The :attribute must have at least :min items.", "array" => ":attribute deve conter ao menos :min itens.",
), ),
"not_in" => "The selected :attribute is invalid.", "not_in" => "A opção selecionada :attribute é inválida.",
"numeric" => "The :attribute must be a number.", "numeric" => ":attribute deve ser um número.",
"regex" => "The :attribute format is invalid.", "regex" => ":attribute está em um formato inválido.",
"required" => "The :attribute field is required.", "required" => ":attribute é um campo obrigatório.",
"required_if" => "The :attribute field is required when :other is :value.", "required_if" => ":attribute é necessário quando :other é :value.",
"required_with" => "The :attribute field is required when :values is present.", "required_with" => ":attribute é obrigatório quando :values está presente.",
"required_without" => "The :attribute field is required when :values is not present.", "required_without" => ":attribute é obrigatório quando :values não está presente.",
"same" => "The :attribute and :other must match.", "same" => ":attribute e :other devem corresponder.",
"size" => array( "size" => array(
"numeric" => "The :attribute must be :size.", "numeric" => ":attribute deve ter :size.",
"file" => "The :attribute must be :size kilobytes.", "file" => ":attribute deve ter :size kilobytes.",
"string" => "The :attribute must be :size characters.", "string" => ":attribute deve conter :size caracteres.",
"array" => "The :attribute must contain :size items.", "array" => ":attribute deve conter :size itens.",
), ),
"unique" => "The :attribute has already been taken.", "unique" => ":attribute já está sendo utilizado.",
"url" => "The :attribute format is invalid.", "url" => ":attribute está num formato inválido.",
"positive" => "The :attribute must be greater than zero.", "positive" => ":attribute deve ser maior que zero.",
"has_credit" => "The client does not have enough credit.", "has_credit" => "O cliente não possui crédito suficiente.",
/* /*