40 lines
1.5 KiB
PHP
40 lines
1.5 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Default Laravel Validation Language Lines
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The following language lines contain the default error messages used by
|
|
| the Laravel validator class. Some of these rules have multiple versions such
|
|
| as the size rules. Feel free to tweak each of these messages here.
|
|
|
|
|
*/
|
|
'file' => 'El campo :attribute debe ser un archivo.',
|
|
'image' => 'El campo :attribute debe ser una imagen.',
|
|
'required' => 'El campo :attribute es obligatorio.',
|
|
'max' => [
|
|
'array' => 'El campo :attribute no debe tener más de :max elementos.',
|
|
'file' => 'El campo :attribute no debe ser mayor que :max kilobytes.',
|
|
'numeric' => 'El campo :attribute no debe ser mayor que :max.',
|
|
'string' => 'El campo :attribute no debe tener más de :max caracteres.',
|
|
],
|
|
'mimes' => 'El campo :attribute debe ser un archivo de tipo: :values.',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| 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' => [],
|
|
|
|
];
|