diff --git a/app/Notifications/SolutionSubmittedForReview.php b/app/Notifications/SolutionSubmittedForReview.php index b2f1770e..e5332ec8 100644 --- a/app/Notifications/SolutionSubmittedForReview.php +++ b/app/Notifications/SolutionSubmittedForReview.php @@ -34,7 +34,7 @@ public function via(object $notifiable): array { */ public function toMail(object $notifiable): MailMessage { return (new MailMessage) - ->subject('Crowdsourcing Platform | ' . __('notifications.solution_submitted') . ': ' . $this->solution->defaultTranslation->title) + ->subject('Crowdsourcing Platform | ' . __('notifications.solution_submitted_for_review') . ': ' . $this->solution->defaultTranslation->title) ->line(__('notifications.new_solution_submitted')) ->line('
') ->greeting(__('notifications.hello') . ' ' . $notifiable->nickname . '!') diff --git a/resources/lang/en/notifications.php b/resources/lang/en/notifications.php index 0b1dd95a..78fddf53 100644 --- a/resources/lang/en/notifications.php +++ b/resources/lang/en/notifications.php @@ -32,6 +32,7 @@ 'agree_privacy_policy' => 'I agree to the privacy policy.', 'ok' => 'OK', 'solution_submitted' => 'Solution Submitted', + 'solution_submitted_for_review' => 'Solution submitted for review', 'thanks_for_proposing_solution' => 'Thank you for proposing a solution! It will soon be reviewed by our team, and you will be notified when it is approved. Once approved, other users will be able to vote on it!', 'new_solution_submitted' => 'A new solution has been submitted.', 'a_user_has_proposed_solution' => 'A user has proposed a solution.',