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
path: root/lib
diff options
context:
space:
mode:
authorblizzz <blizzz@arthur-schiwon.de>2022-10-21 14:46:44 +0300
committerCôme Chilliet <come.chilliet@nextcloud.com>2022-10-24 11:06:57 +0300
commit2228a7b37497a7b51c35f55fae494b4e649b5d0f (patch)
tree5da8846b72b64e49a006fe588fe913f624bf7dd1 /lib
parent6bedcfe1f56f9a43386388cdbdbd863902cbc3bc (diff)
extended hint message
Co-authored-by: Simon L. <szaimen@e.mail.de> Signed-off-by: blizzz <blizzz@arthur-schiwon.de>
Diffstat (limited to 'lib')
-rw-r--r--lib/private/Support/Subscription/Assertion.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Support/Subscription/Assertion.php b/lib/private/Support/Subscription/Assertion.php
index 9acd3f878c3..9b77e875944 100644
--- a/lib/private/Support/Subscription/Assertion.php
+++ b/lib/private/Support/Subscription/Assertion.php
@@ -49,7 +49,7 @@ class Assertion implements IAssertion {
public function createUserIsLegit(): void {
if ($this->registry->delegateIsHardUserLimitReached($this->notificationManager)) {
$l = $this->l10nFactory->get('lib');
- throw new HintException($l->t('The user limit has been reached and the user was not created.'));
+ throw new HintException($l->t('The user limit has been reached and the user was not created. Check your notifications to learn more.'));
}
}
}