summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2020-12-02 21:42:32 +0100
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2020-12-03 09:00:56 +0000
commit4c5662a65801007c34b8f40563016973accf23a9 (patch)
tree3b22d751318dbfc7941c397fba5512d2920b4a9c /core
parent3d132f293ff36ff1b63a321f7a625657aeabc01b (diff)
downloadnextcloud-server-4c5662a65801007c34b8f40563016973accf23a9.tar.gz
nextcloud-server-4c5662a65801007c34b8f40563016973accf23a9.zip
Improve wording
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'core')
-rw-r--r--core/Notification/CoreNotifier.php4
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;
}