diff options
author | Sascha Wiswedel <sascha.wiswedel@nextcloud.com> | 2019-12-09 12:18:06 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-12-17 10:38:14 +0100 |
commit | 6a6b6dd1a4910531a3d9bbc21d41a8b5029bf356 (patch) | |
tree | 07731fda43ca8fc1098bd3e711830a9fda297ef4 /apps/files/lib/Notification | |
parent | a64b5de491ce7ed7da99cf630dcc52524dd1f89a (diff) | |
download | nextcloud-server-6a6b6dd1a4910531a3d9bbc21d41a8b5029bf356.tar.gz nextcloud-server-6a6b6dd1a4910531a3d9bbc21d41a8b5029bf356.zip |
added patience note for sharee
note about incoming transfer taken out by background job
resolves #18272
Signed-off-by: Sascha Wiswedel <sascha.wiswedel@nextcloud.com>
Diffstat (limited to 'apps/files/lib/Notification')
-rw-r--r-- | apps/files/lib/Notification/Notifier.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/lib/Notification/Notifier.php b/apps/files/lib/Notification/Notifier.php index f349f73c53e..b8c7d172154 100644 --- a/apps/files/lib/Notification/Notifier.php +++ b/apps/files/lib/Notification/Notifier.php @@ -152,7 +152,7 @@ class Notifier implements INotifier, IDismissableNotifier { ]) ->setParsedSubject(str_replace('{user}', $param['sourceUser'], $l->t('Incoming ownership transfer from {user}'))) ->setRichMessage( - $l->t('Do you want to accept {path}?'), + $l->t('Do you want to accept {path}? Note: The transfer process after accepting may take up to 1 hour.'), [ 'path' => [ 'type' => 'highlight', @@ -160,7 +160,7 @@ class Notifier implements INotifier, IDismissableNotifier { 'name' => $param['nodeName'], ] ]) - ->setParsedMessage(str_replace('{path}', $param['nodeName'], $l->t('Do you want to accept {path}?'))); + ->setParsedMessage(str_replace('{path}', $param['nodeName'], $l->t('Do you want to accept {path}? Note: The transfer process after accepting may take up to 1 hour.'))); return $notification; } |