From 74dfb6cec4d2c1f6d7e1a1e29e4bc9d610dc7031 Mon Sep 17 00:00:00 2001 From: kichetof Date: Wed, 3 Aug 2022 15:42:10 +0200 Subject: [PATCH] Validation added `doesnt_end_with` translation (#5962) * Validation added doesnt_end_with translation * fix order --- lang/en/validation.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lang/en/validation.php b/lang/en/validation.php index cef02f58..6d9e6d54 100644 --- a/lang/en/validation.php +++ b/lang/en/validation.php @@ -43,6 +43,7 @@ 'digits_between' => 'The :attribute must be between :min and :max digits.', 'dimensions' => 'The :attribute has invalid image dimensions.', 'distinct' => 'The :attribute field has a duplicate value.', + 'doesnt_end_with' => 'The :attribute may not end with one of the following: :values.', 'doesnt_start_with' => 'The :attribute may not start with one of the following: :values.', 'email' => 'The :attribute must be a valid email address.', 'ends_with' => 'The :attribute must end with one of the following: :values.',