diff --git a/app/Http/Controllers/SignupController.php b/app/Http/Controllers/SignupController.php index b865a1b9..d471bf33 100644 --- a/app/Http/Controllers/SignupController.php +++ b/app/Http/Controllers/SignupController.php @@ -92,6 +92,6 @@ class SignupController extends Controller $this->dispatch(new ClaimInviteCommand($invite)); return Redirect::route('status-page') - ->withSuccess(sprintf('%s %s', trans('dashboard.notifications.awesome'), trans('cachet.signup.unsubscribed'))); + ->withSuccess(sprintf('%s %s', trans('dashboard.notifications.awesome'), trans('cachet.signup.success'))); } } diff --git a/resources/lang/en/cachet.php b/resources/lang/en/cachet.php index 73028119..566444a5 100755 --- a/resources/lang/en/cachet.php +++ b/resources/lang/en/cachet.php @@ -87,6 +87,16 @@ return [ ], ], + 'users' => [ + 'email' => [ + 'invite' => [ + 'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name", + 'html-preheader' => 'You have been invited to the team :app_name.', + 'html' => '
You have been invited to the team :app_name status page, to sign up follow the next link.
Thank you, :app_name
', + ], + ], + ], + 'signup' => [ 'title' => 'Sign Up', 'username' => 'Username',