From 26d4e7161bdcaf2929fa91f1449199cad128a67f Mon Sep 17 00:00:00 2001 From: Anne-Greeth van Herwijnen Date: Thu, 25 Apr 2019 10:23:18 +0200 Subject: [PATCH] Change text when updating the subscriptions --- app/Http/Controllers/SubscribeController.php | 2 +- resources/lang/en/cachet.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Http/Controllers/SubscribeController.php b/app/Http/Controllers/SubscribeController.php index 8fa89587..a2261b20 100644 --- a/app/Http/Controllers/SubscribeController.php +++ b/app/Http/Controllers/SubscribeController.php @@ -213,6 +213,6 @@ class SubscribeController extends Controller } return cachet_redirect('subscribe.manage', $subscriber->verify_code) - ->withSuccess(sprintf('%s %s', trans('dashboard.notifications.awesome'), trans('cachet.subscriber.email.subscribed'))); + ->withSuccess(sprintf('%s %s', trans('dashboard.notifications.awesome'), trans('cachet.subscriber.email.updated-subscribe'))); } } diff --git a/resources/lang/en/cachet.php b/resources/lang/en/cachet.php index 0efae29c..d08577d5 100644 --- a/resources/lang/en/cachet.php +++ b/resources/lang/en/cachet.php @@ -92,6 +92,7 @@ return [ 'email' => [ 'subscribe' => 'Subscribe to email updates.', 'subscribed' => 'You\'ve been subscribed to email notifications, please check your email to confirm your subscription.', + 'updated-subscribe' => 'You\'ve succesfully updated your subscriptions.', 'verified' => 'Your email subscription has been confirmed. Thank you!', 'manage' => 'Manage your subscription', 'unsubscribe' => 'Unsubscribe from email updates.',