Apply Laravel coding style
Shift automatically applies the Laravel coding style - which uses the PSR-12 coding style as a base with some minor additions. You may customize the code style applied by configuring [Pint](https://laravel.com/docs/pint), [PHP CS Fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer), or [PHP CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) for your project root. For more information on customizing the code style applied by Shift, [watch this short video](https://laravelshift.com/videos/shift-code-style).
This commit is contained in:
@@ -27,65 +27,65 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'accepted' => 'El atributo: debe ser acceptado.',
|
||||
'accepted' => 'El atributo: debe ser acceptado.',
|
||||
'active_url' => 'El atributo: no es un atributo valid URL.',
|
||||
'after' => 'El atributo: debe ser a date after :date.',
|
||||
'alpha' => 'El atributo: sólo puede contener letters.',
|
||||
'after' => 'El atributo: debe ser a date after :date.',
|
||||
'alpha' => 'El atributo: sólo puede contener letters.',
|
||||
'alpha_dash' => 'El atributo: sólo puede contener letters, numbers, and dashes.',
|
||||
'alpha_num' => 'El atributo: sólo puede contener letters and numbers.',
|
||||
'array' => 'El atributo: debe ser an array.',
|
||||
'before' => 'El atributo: debe ser a date before :date.',
|
||||
'between' => [
|
||||
'alpha_num' => 'El atributo: sólo puede contener letters and numbers.',
|
||||
'array' => 'El atributo: debe ser an array.',
|
||||
'before' => 'El atributo: debe ser a date before :date.',
|
||||
'between' => [
|
||||
'numeric' => 'El atributo: debe ser between :min and :max.',
|
||||
'file' => 'El atributo: debe ser between :min and :max kilobytes.',
|
||||
'string' => 'El atributo: debe ser between :min and :max characters.',
|
||||
'array' => 'El atributo: must have between :min and :max items.',
|
||||
'file' => 'El atributo: debe ser between :min and :max kilobytes.',
|
||||
'string' => 'El atributo: debe ser between :min and :max characters.',
|
||||
'array' => 'El atributo: must have between :min and :max items.',
|
||||
],
|
||||
'boolean' => 'El atributo: field must be true or false.',
|
||||
'confirmed' => 'El atributo: confirmation does not match.',
|
||||
'date' => 'El atributo: no es un atributo valid date.',
|
||||
'date_format' => 'El atributo: does not match the format :format.',
|
||||
'different' => 'El atributo: and :other must be different.',
|
||||
'digits' => 'El atributo: debe ser :digits digits.',
|
||||
'boolean' => 'El atributo: field must be true or false.',
|
||||
'confirmed' => 'El atributo: confirmation does not match.',
|
||||
'date' => 'El atributo: no es un atributo valid date.',
|
||||
'date_format' => 'El atributo: does not match the format :format.',
|
||||
'different' => 'El atributo: and :other must be different.',
|
||||
'digits' => 'El atributo: debe ser :digits digits.',
|
||||
'digits_between' => 'El atributo: debe ser between :min and :max digits.',
|
||||
'email' => 'El atributo: debe ser a valid email address.',
|
||||
'filled' => 'Se requiere el campo de atributo:.',
|
||||
'exists' => 'The selected :attribute es inválido.',
|
||||
'image' => 'El atributo: debe ser an image.',
|
||||
'in' => 'The selected :attribute es inválido.',
|
||||
'integer' => 'El atributo: debe ser an integer.',
|
||||
'ip' => 'El atributo: debe ser a valid IP address.',
|
||||
'max' => [
|
||||
'email' => 'El atributo: debe ser a valid email address.',
|
||||
'filled' => 'Se requiere el campo de atributo:.',
|
||||
'exists' => 'The selected :attribute es inválido.',
|
||||
'image' => 'El atributo: debe ser an image.',
|
||||
'in' => 'The selected :attribute es inválido.',
|
||||
'integer' => 'El atributo: debe ser an integer.',
|
||||
'ip' => 'El atributo: debe ser a valid IP address.',
|
||||
'max' => [
|
||||
'numeric' => 'El atributo: no puede ser mayor que :max.',
|
||||
'file' => 'El atributo: no puede ser mayor que :max kilobytes.',
|
||||
'string' => 'El atributo: no puede ser mayor que :max characters.',
|
||||
'array' => 'El atributo: no puede tener más de :max items.',
|
||||
'file' => 'El atributo: no puede ser mayor que :max kilobytes.',
|
||||
'string' => 'El atributo: no puede ser mayor que :max characters.',
|
||||
'array' => 'El atributo: no puede tener más de :max items.',
|
||||
],
|
||||
'mimes' => 'El atributo: debe ser a file of type: :values.',
|
||||
'min' => [
|
||||
'min' => [
|
||||
'numeric' => 'El atributo: debe ser at least :min.',
|
||||
'file' => 'El atributo: debe ser at least :min kilobytes.',
|
||||
'string' => 'El atributo: debe ser at least :min characters.',
|
||||
'array' => 'El atributo: must have at least :min items.',
|
||||
'file' => 'El atributo: debe ser at least :min kilobytes.',
|
||||
'string' => 'El atributo: debe ser at least :min characters.',
|
||||
'array' => 'El atributo: must have at least :min items.',
|
||||
],
|
||||
'not_in' => 'The selected :attribute es inválido.',
|
||||
'numeric' => 'El atributo: debe ser a number.',
|
||||
'regex' => 'El atributo: format es inválido.',
|
||||
'required' => 'Se requiere el campo de atributo:.',
|
||||
'required_if' => 'Se requiere el campo de atributo: when :other is :value.',
|
||||
'required_with' => 'Se requiere el campo de atributo: Cuando: valores están presentes.',
|
||||
'required_with_all' => 'Se requiere el campo de atributo: Cuando: valores están presentes.',
|
||||
'required_without' => 'Se requiere el campo de atributo: when :values is not present.',
|
||||
'not_in' => 'The selected :attribute es inválido.',
|
||||
'numeric' => 'El atributo: debe ser a number.',
|
||||
'regex' => 'El atributo: format es inválido.',
|
||||
'required' => 'Se requiere el campo de atributo:.',
|
||||
'required_if' => 'Se requiere el campo de atributo: when :other is :value.',
|
||||
'required_with' => 'Se requiere el campo de atributo: Cuando: valores están presentes.',
|
||||
'required_with_all' => 'Se requiere el campo de atributo: Cuando: valores están presentes.',
|
||||
'required_without' => 'Se requiere el campo de atributo: when :values is not present.',
|
||||
'required_without_all' => 'Se requiere el campo de atributo: when none of :values are present.',
|
||||
'same' => 'El atributo: and :other must match.',
|
||||
'size' => [
|
||||
'same' => 'El atributo: and :other must match.',
|
||||
'size' => [
|
||||
'numeric' => 'El atributo: debe ser :size.',
|
||||
'file' => 'El atributo: debe ser :size kilobytes.',
|
||||
'string' => 'El atributo: debe ser :size characters.',
|
||||
'array' => 'El atributo: must contain :size items.',
|
||||
'file' => 'El atributo: debe ser :size kilobytes.',
|
||||
'string' => 'El atributo: debe ser :size characters.',
|
||||
'array' => 'El atributo: must contain :size items.',
|
||||
],
|
||||
'unique' => 'El atributo: has already been taken.',
|
||||
'url' => 'El atributo: format es inválido.',
|
||||
'unique' => 'El atributo: has already been taken.',
|
||||
'url' => 'El atributo: format es inválido.',
|
||||
'timezone' => 'El atributo: debe ser una zona válida.',
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
Reference in New Issue
Block a user