Showing
1 changed file
with
17 additions
and
17 deletions
| ... | @@ -28,7 +28,7 @@ return [ | ... | @@ -28,7 +28,7 @@ return [ |
| 28 | 'array' => 'El :attribute debe estar entre :min y :max items.', | 28 | 'array' => 'El :attribute debe estar entre :min y :max items.', |
| 29 | ], | 29 | ], |
| 30 | 'boolean' => 'El campo :attribute debe ser true o false.', | 30 | 'boolean' => 'El campo :attribute debe ser true o false.', |
| 31 | - 'confirmed' => 'El :attribute confirmaciÃn no concuerda.', | 31 | + 'confirmed' => 'La confirmaciÃn de :attribute no concuerda.', |
| 32 | 'date' => 'El :attribute no es una fecha vÃlida.', | 32 | 'date' => 'El :attribute no es una fecha vÃlida.', |
| 33 | 'date_format' => 'El :attribute no coincide con el formato :format.', | 33 | 'date_format' => 'El :attribute no coincide con el formato :format.', |
| 34 | 'different' => ':attribute y :other deben ser diferentes.', | 34 | 'different' => ':attribute y :other deben ser diferentes.', |
| ... | @@ -57,23 +57,23 @@ return [ | ... | @@ -57,23 +57,23 @@ return [ |
| 57 | 'not_in' => ':attribute seleccionado es inválio.', | 57 | 'not_in' => ':attribute seleccionado es inválio.', |
| 58 | 'numeric' => ':attribute debe ser numérico.', | 58 | 'numeric' => ':attribute debe ser numérico.', |
| 59 | 'regex' => ':attribute con formato invÃlido', | 59 | 'regex' => ':attribute con formato invÃlido', |
| 60 | - 'required' => 'The :attribute field is required.', | 60 | + 'required' => ':attribute es requerido.', |
| 61 | - 'required_if' => 'The :attribute field is required when :other is :value.', | 61 | + 'required_if' => ':attribute es requerido cuando :other vale :value.', |
| 62 | - 'required_with' => 'The :attribute field is required when :values is present.', | 62 | + 'required_with' => 'El campo :attribute es requerido cuando se encuentre entre los valores :values.', |
| 63 | - 'required_with_all' => 'The :attribute field is required when :values is present.', | 63 | + 'required_with_all' => 'El campo :attribute es requerido cuando los valores sean :values.', |
| 64 | - 'required_without' => 'The :attribute field is required when :values is not present.', | 64 | + 'required_without' => ':attribute es requerido cuando no se encuentre entre los valores :values.', |
| 65 | - 'required_without_all' => 'The :attribute field is required when none of :values are present.', | 65 | + 'required_without_all' => ':attribute es requerido cuando ninguno de los valores :values estÃn presentes.', |
| 66 | - 'same' => 'The :attribute and :other must match.', | 66 | + 'same' => ':attribute y :other deben coincidir.', |
| 67 | 'size' => [ | 67 | 'size' => [ |
| 68 | - 'numeric' => 'The :attribute must be :size.', | 68 | + 'numeric' => ':attribute debe ser :size.', |
| 69 | - 'file' => 'The :attribute must be :size kilobytes.', | 69 | + 'file' => ':attribute debe ser :size kilobytes.', |
| 70 | - 'string' => 'The :attribute must be :size characters.', | 70 | + 'string' => ':attribute debe ser :size caracteres.', |
| 71 | - 'array' => 'The :attribute must contain :size items.', | 71 | + 'array' => ':attribute debe contener :size items.', |
| 72 | ], | 72 | ], |
| 73 | - 'string' => 'The :attribute must be a string.', | 73 | + 'string' => 'El atributo :attribute debe ser una cadena.', |
| 74 | - 'timezone' => 'The :attribute must be a valid zone.', | 74 | + 'timezone' => 'El atributo :attribute debe ser una zona vÃlida.', |
| 75 | - 'unique' => 'The :attribute has already been taken.', | 75 | + 'unique' => 'El atributo :attribute ya ha sido tomado.', |
| 76 | - 'url' => 'The :attribute format is invalid.', | 76 | + 'url' => 'El atributo :attribute tiene un formato invÃlido¡.', |
| 77 | 77 | ||
| 78 | /* | 78 | /* |
| 79 | |-------------------------------------------------------------------------- | 79 | |-------------------------------------------------------------------------- |
| ... | @@ -88,7 +88,7 @@ return [ | ... | @@ -88,7 +88,7 @@ return [ |
| 88 | 88 | ||
| 89 | 'custom' => [ | 89 | 'custom' => [ |
| 90 | 'password-confirm' => [ | 90 | 'password-confirm' => [ |
| 91 | - 'required_with' => 'Password confirmation required', | 91 | + 'required_with' => 'ConfirmaciÃn de Password requerida', |
| 92 | ], | 92 | ], |
| 93 | ], | 93 | ], |
| 94 | 94 | ... | ... |
-
Please register or sign in to post a comment