Change text when updating the subscriptions

This commit is contained in:
Anne-Greeth van Herwijnen
2019-04-25 10:23:18 +02:00
parent ef189a4d4f
commit 26d4e7161b
2 changed files with 2 additions and 1 deletions

View File

@@ -213,6 +213,6 @@ class SubscribeController extends Controller
} }
return cachet_redirect('subscribe.manage', $subscriber->verify_code) 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')));
} }
} }

View File

@@ -92,6 +92,7 @@ return [
'email' => [ 'email' => [
'subscribe' => 'Subscribe to email updates.', 'subscribe' => 'Subscribe to email updates.',
'subscribed' => 'You\'ve been subscribed to email notifications, please check your email to confirm your subscription.', '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!', 'verified' => 'Your email subscription has been confirmed. Thank you!',
'manage' => 'Manage your subscription', 'manage' => 'Manage your subscription',
'unsubscribe' => 'Unsubscribe from email updates.', 'unsubscribe' => 'Unsubscribe from email updates.',