6 |--------------------------------------------------------------------------
7 | Validation Language Lines
8 |--------------------------------------------------------------------------
10 | The following language lines contain the default error messages used by
11 | the validator class. Some of these rules have multiple versions such
12 | as the size rules. Feel free to tweak each of these messages here.
16 'accepted' => 'El :attribute debe ser aceptado.',
17 'active_url' => 'El :attribute no es una URl válida.',
18 'after' => 'El :attribute debe ser una fecha posterior :date.',
19 'alpha' => 'El :attribute solo puede contener letras.',
20 'alpha_dash' => 'El :attribute solo puede contener letras, números y guiones.',
21 'alpha_num' => 'El :attribute solo puede contener letras y número.',
22 'array' => 'El :attribute debe de ser un array.',
23 'before' => 'El :attribute debe ser una fecha anterior a :date.',
25 'numeric' => 'El :attribute debe estar entre :min y :max.',
26 'file' => 'El :attribute debe estar entre :min y :max kilobytes.',
27 'string' => 'El :attribute debe estar entre :min y :max carácteres.',
28 'array' => 'El :attribute debe estar entre :min y :max items.',
30 'boolean' => 'El campo :attribute debe ser true o false.',
31 'confirmed' => 'La confirmación de :attribute no concuerda.',
32 'date' => 'El :attribute no es una fecha válida.',
33 'date_format' => 'El :attribute no coincide con el formato :format.',
34 'different' => ':attribute y :other deben ser diferentes.',
35 'digits' => ':attribute debe ser de :digits dígitos.',
36 'digits_between' => ':attribute debe ser un valor entre :min y :max dígios.',
37 'email' => ':attribute debe ser una dirección álida.',
38 'filled' => 'El campo :attribute es requerido.',
39 'exists' => 'El :attribute seleccionado es inválido.',
40 'image' => 'El :attribute debe ser una imagen.',
41 'in' => 'El selected :attribute es inválio.',
42 'integer' => 'El :attribute debe ser un entero.',
43 'ip' => 'El :attribute debe ser una dirección IP álida.',
45 'numeric' => ':attribute no puede ser mayor que :max.',
46 'file' => ':attribute no puede ser mayor que :max kilobytes.',
47 'string' => ':attribute no puede ser mayor que :max carácteres.',
48 'array' => ':attribute no puede contener más de :max items.',
50 'mimes' => ':attribute debe ser un fichero de tipo: :values.',
52 'numeric' => ':attribute debe ser al menos de :min.',
53 'file' => ':attribute debe ser al menos :min kilobytes.',
54 'string' => ':attribute debe ser al menos :min caracteres.',
55 'array' => ':attribute debe tener como mínimo :min items.',
57 'not_in' => ':attribute seleccionado es inválio.',
58 'numeric' => ':attribute debe ser numérico.',
59 'regex' => ':attribute con formato inválido',
60 'required' => ':attribute es requerido.',
61 'required_if' => ':attribute es requerido cuando :other vale :value.',
62 'required_with' => 'El campo :attribute es requerido cuando se encuentre entre los valores :values.',
63 'required_with_all' => 'El campo :attribute es requerido cuando los valores sean :values.',
64 'required_without' => ':attribute es requerido cuando no se encuentre entre los valores :values.',
65 'required_without_all' => ':attribute es requerido cuando ninguno de los valores :values están presentes.',
66 'same' => ':attribute y :other deben coincidir.',
68 'numeric' => ':attribute debe ser :size.',
69 'file' => ':attribute debe ser :size kilobytes.',
70 'string' => ':attribute debe ser :size caracteres.',
71 'array' => ':attribute debe contener :size items.',
73 'string' => 'El atributo :attribute debe ser una cadena.',
74 'timezone' => 'El atributo :attribute debe ser una zona válida.',
75 'unique' => 'El atributo :attribute ya ha sido tomado.',
76 'url' => 'El atributo :attribute tiene un formato inválid.',
79 |--------------------------------------------------------------------------
80 | Custom Validation Language Lines
81 |--------------------------------------------------------------------------
83 | Here you may specify custom validation messages for attributes using the
84 | convention "attribute.rule" to name the lines. This makes it quick to
85 | specify a specific custom language line for a given attribute rule.
90 'password-confirm' => [
91 'required_with' => 'Confirmación de Password requerida',
96 |--------------------------------------------------------------------------
97 | Custom Validation Attributes
98 |--------------------------------------------------------------------------
100 | The following language lines are used to swap attribute place-holders
101 | with something more reader friendly such as E-Mail Address instead
102 | of "email". This simply helps us make messages a little cleaner.