Skip to content

Commit

Permalink
Make ResetPassword Notification translateable
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitri-koenig committed Jun 9, 2018
1 parent 47ded05 commit 8a40975
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Illuminate/Auth/Notifications/ResetPassword.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ public function toMail($notifiable)
}

return (new MailMessage)
->line('You are receiving this email because we received a password reset request for your account.')
->action('Reset Password', url(config('app.url').route('password.reset', $this->token, false)))
->line('If you did not request a password reset, no further action is required.');
->line(__('You are receiving this email because we received a password reset request for your account.'))
->action(__('Reset Password'), url(config('app.url').route('password.reset', $this->token, false)))
->line(__('If you did not request a password reset, no further action is required.'));
}

/**
Expand Down

0 comments on commit 8a40975

Please sign in to comment.