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>
This commit is contained in:
parent
a64b5de491
commit
6a6b6dd1a4
|
@ -152,7 +152,7 @@ class Notifier implements INotifier, IDismissableNotifier {
|
||||||
])
|
])
|
||||||
->setParsedSubject(str_replace('{user}', $param['sourceUser'], $l->t('Incoming ownership transfer from {user}')))
|
->setParsedSubject(str_replace('{user}', $param['sourceUser'], $l->t('Incoming ownership transfer from {user}')))
|
||||||
->setRichMessage(
|
->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' => [
|
'path' => [
|
||||||
'type' => 'highlight',
|
'type' => 'highlight',
|
||||||
|
@ -160,7 +160,7 @@ class Notifier implements INotifier, IDismissableNotifier {
|
||||||
'name' => $param['nodeName'],
|
'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;
|
return $notification;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue