From 9440ebca02b40470c358d460e9249c4d7c36ebe0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20Gonz=C3=A1lez?= Date: Fri, 16 Oct 2020 11:59:27 -0500 Subject: [PATCH] [es] Add field to validation.php Add `multiple_of` Spanish translation to validation.php https://github.com/laravel/laravel/pull/5449 --- src/es/validation.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/es/validation.php b/src/es/validation.php index 511d63f9245..6d968d6eb1a 100644 --- a/src/es/validation.php +++ b/src/es/validation.php @@ -89,6 +89,7 @@ 'string' => ':attribute debe contener al menos :min caracteres.', 'array' => ':attribute debe tener al menos :min elementos.', ], + 'multiple_of' => 'El campo :attribute debe ser múltiplo de :value', 'not_in' => ':attribute es inválido.', 'not_regex' => 'El formato del campo :attribute no es válido.', 'numeric' => ':attribute debe ser numérico.',