From 159afa1b00de479dcc6e90b2a3d98641e8e16b83 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..4ecb90a1dd9 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.',