Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2020-12-02 23:42:32 +0300
committerMorris Jobke <hey@morrisjobke.de>2020-12-02 23:42:32 +0300
commit2fb31e9b5dc3c7ee3220db3e7d5a335155367e40 (patch)
tree365cab3cbdfdd6fa6ed4d1a7f760348cb0bfd42c /core/Notification
parentbd0a77269f475236695623f20ec2fc71753ded4d (diff)
Improve wording
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'core/Notification')
-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;
}