Merge pull request #3563 from MinThaMie/3561-update-subscription-message

Change text when updating the subscriptions
This commit is contained in:
James Brooks
2019-04-25 13:10:29 +01:00
committed by GitHub
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.',