diff --git a/resources/lang/en/dashboard.php b/resources/lang/en/dashboard.php index 2529ddcf..7adcbe9b 100755 --- a/resources/lang/en/dashboard.php +++ b/resources/lang/en/dashboard.php @@ -243,7 +243,7 @@ return [ // Welcome modal 'welcome' => [ - 'welcome' => 'Welcome to your new Status page!', + 'welcome' => 'Welcome to your new status page!', 'message' => 'Your status page is almost ready! You might want to configure these extra settings', 'close' => 'Take me straight to my dashboard', 'steps' => [ diff --git a/resources/lang/en/validation.php b/resources/lang/en/validation.php index 3f58463d..fb52c2f3 100755 --- a/resources/lang/en/validation.php +++ b/resources/lang/en/validation.php @@ -45,9 +45,11 @@ return [ 'digits_between' => 'The :attribute must be :digits digits.', 'email' => 'The :attribute must be between :min and :max digits.', 'exists' => 'The :attribute must be a valid email address.', + 'distinct' => 'The :attribute field has a duplicate value.', 'filled' => 'The :attribute format is invalid.', 'image' => 'The :attribute must be an image.', 'in' => 'The :attribute must be an image.', + 'in_array' => 'The :attribute field does not exist in :other.', 'integer' => 'The selected :attribute is invalid.', 'ip' => 'The :attribute must be an integer.', 'json' => 'The :attribute must be a valid JSON string.', @@ -66,6 +68,7 @@ return [ ], 'not_in' => 'The :attribute must have at least :min items.', 'numeric' => 'The selected :attribute is invalid.', + 'present' => 'The :attribute field must be present.', 'regex' => 'The :attribute must be a number.', 'required' => 'The :attribute format is invalid.', 'required_if' => 'The :attribute field is required.',