From 2fb31e9b5dc3c7ee3220db3e7d5a335155367e40 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Wed, 2 Dec 2020 21:42:32 +0100 Subject: [PATCH] Improve wording Signed-off-by: Morris Jobke --- core/Notification/CoreNotifier.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/Notification/CoreNotifier.php b/core/Notification/CoreNotifier.php index 2e020161b8..709d83ab9c 100644 --- a/core/Notification/CoreNotifier.php +++ b/core/Notification/CoreNotifier.php @@ -80,8 +80,8 @@ class CoreNotifier implements INotifier { if ($notification->getSubject() === 'user_limit_reached') { $notification->setParsedSubject($l->t('The user limit of this instance is reached.')); - $notification->setParsedMessage($l->t('Add a subscription key to increase the user limit of this instance. For more information have a look at the Enterprise subscription page.')); - $notification->setLink('https://nextcloud.com/enterprise/order/'); + $notification->setParsedMessage($l->t('Enter your subscription key to increase the user limit. For more information about Nextcloud Enterprise see our website.')); + $notification->setLink('https://nextcloud.com/enterprise/'); $notification->setIcon($this->url->getAbsoluteURL($this->url->imagePath('core', 'places/contacts.svg'))); return $notification; }