109 lines
		
	
	
		
			6.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			109 lines
		
	
	
		
			6.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
| <?php
 | |
| 
 | |
| return [
 | |
| 
 | |
|     /*
 | |
|     |--------------------------------------------------------------------------
 | |
|     | 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
 | |
|     | as the size rules. Feel free to tweak each of these messages here.
 | |
|     |
 | |
|     */
 | |
| 
 | |
|     'accepted'             => 'O :attribute deve ser aceito.',
 | |
|     'active_url'           => 'O :attribute não é uma URL válida.',
 | |
|     'after'                => 'O :attribute deve ser uma data posterior à data :date.',
 | |
|     'alpha'                => 'O :attribute deve conter apenas letras.',
 | |
|     'alpha_dash'           => 'O :attribute deve conter apenas letras, números e traços.',
 | |
|     'alpha_num'            => 'O :attribute deve conter apenas letras e números.',
 | |
|     'array'                => 'O :attribute deve ser uma array.',
 | |
|     'before'               => 'O :attribute deve ser uma data anterior à data :date.',
 | |
|     'between'              => [
 | |
|         'numeric' => 'O :attribute deve ter tamanho entre :min e :max.',
 | |
|         'file'    => 'O :attribute deve ter entre :min e :max kilobytes.',
 | |
|         'string'  => 'O :attribute deve ter entre :min e :max caracteres.',
 | |
|         'array'   => 'O :attribute deve ter entre :min e :max itens.',
 | |
|     ],
 | |
|     'boolean'              => 'O campo :attribute deve ser verdadeiro ou falso.',
 | |
|     'confirmed'            => 'O campo :attribute de confirmação não é igual.',
 | |
|     'date'                 => 'O campo :attribute não está em um formato de data válido.',
 | |
|     'date_format'          => 'O campo :attribute não tem a formatação :format.',
 | |
|     'different'            => 'O campo :attribute e o campo :other devem ser diferentes.',
 | |
|     'digits'               => 'O campo :attribute deve ter :digits dígitos.',
 | |
|     'digits_between'       => 'O campo :attribute deve ter entre :min e :max dígitos.',
 | |
|     'email'                => 'O campo :attribute deve ser um e-mail válido.',
 | |
|     'filled'               => 'O campo :attribute é requerido.',
 | |
|     'exists'               => 'O atributo :attribute selecionado não é válido.',
 | |
|     'image'                => 'O campo :attribute deve ser uma imagem.',
 | |
|     'in'                   => 'The selected :attribute is invalid.',
 | |
|     'integer'              => 'O campo :attribute deve ser um número inteiro.',
 | |
|     'ip'                   => 'O campo :attribute deve ser um IP válido.',
 | |
|     'max'                  => [
 | |
|         'numeric' => 'O valor para o campo :attribute não deve ser maior que :max.',
 | |
|         'file'    => 'O valor para o campo :attribute não deve ter tamanho maior que :max kilobytes.',
 | |
|         'string'  => 'O valor para o campo :attribute não deve ter mais que :max caracteres.',
 | |
|         'array'   => 'O valor para o campo :attribute não deve ter mais que :max itens.',
 | |
|     ],
 | |
|     'mimes'                => 'O :attribute deve ser do tipo type: :values.',
 | |
|     'min'                  => [
 | |
|         'numeric' => 'O valor para o campo :attribute não deve ser menor que :min.',
 | |
|         'file'    => 'O valor para o campo :attribute não deve ter tamanho menor que :min kilobytes.',
 | |
|         'string'  => 'O valor para o campo :attribute não deve ter menos que :min caracteres.',
 | |
|         'array'   => 'O valor para o campo :attribute não deve ter menos que :min itens.',
 | |
|     ],
 | |
|     'not_in'               => 'O campo selecionado :attribute é inválido.',
 | |
|     'numeric'              => 'O campo :attribute deve ser um número.',
 | |
|     'regex'                => 'O formato do campo :attribute é inválido.',
 | |
|     'required'             => 'O campo :attribute é requerido.',
 | |
|     'required_if'          => 'O campo :attribute é requerido quando o campo :other tem valor :value.',
 | |
|     'required_with'        => 'O campo :attribute é requerido quando os valores :values estiverem presentes.',
 | |
|     'required_with_all'    => 'O campo :attribute é requerido quando os valores :values estiverem presentes.',
 | |
|     'required_without'     => 'O campo :attribute é requerido quando os valores :values não estiverem presentes.',
 | |
|     'required_without_all' => 'O campo :attribute é requerido quando nenhum dos valores :values estiverem presentes.',
 | |
|     'same'                 => 'O campo :attribute e o campo :other devem ser iguais.',
 | |
|     'size'                 => [
 | |
|         'numeric' => 'O tamanho do campo :attribute deve ser :size.',
 | |
|         'file'    => 'O tamanho do arquivo :attribute deve ser de :size kilobytes.',
 | |
|         'string'  => 'O tamanho do campo :attribute deve ser de :size caracteres.',
 | |
|         'array'   => 'O campo :attribute deve conter :size itens.',
 | |
|     ],
 | |
|     'string'               => 'O campo :attribute deve ser uma string.',
 | |
|     'timezone'             => 'O campo :attribute deve conter uma timezone válida.',
 | |
|     'unique'               => 'Já existe um campo/dado de nome :attribute.',
 | |
|     'url'                  => 'O formato da URL :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.
 | |
|     |
 | |
|     */
 | |
| 
 | |
|     'custom' => [
 | |
|         'password-confirm' => [
 | |
|             'required_with' => 'Confirmação de senha requerida',
 | |
|         ],
 | |
|     ],
 | |
| 
 | |
|     /*
 | |
|     |--------------------------------------------------------------------------
 | |
|     | 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.
 | |
|     |
 | |
|     */
 | |
| 
 | |
|     'attributes' => [],
 | |
| 
 | |
| ];
 |