From 29c3bcf183b4e0137799febf3958ed4264df94f8 Mon Sep 17 00:00:00 2001 From: Joseph Cohen Date: Sun, 8 Nov 2015 20:21:23 -0600 Subject: [PATCH] Add email strings --- app/Http/Controllers/SignupController.php | 2 +- resources/lang/en/cachet.php | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) 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.

:link

Thank you, :app_name

', + ], + ], + ], + 'signup' => [ 'title' => 'Sign Up', 'username' => 'Username',