diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-12-02 21:42:32 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2020-12-02 21:42:32 +0100 |
commit | 2fb31e9b5dc3c7ee3220db3e7d5a335155367e40 (patch) | |
tree | 365cab3cbdfdd6fa6ed4d1a7f760348cb0bfd42c /core/Notification | |
parent | bd0a77269f475236695623f20ec2fc71753ded4d (diff) | |
download | nextcloud-server-2fb31e9b5dc3c7ee3220db3e7d5a335155367e40.tar.gz nextcloud-server-2fb31e9b5dc3c7ee3220db3e7d5a335155367e40.zip |
Improve wording
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'core/Notification')
-rw-r--r-- | core/Notification/CoreNotifier.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Notification/CoreNotifier.php b/core/Notification/CoreNotifier.php index 2e020161b8e..709d83ab9c3 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; } |