diff --git a/apps/files/lib/Notification/Notifier.php b/apps/files/lib/Notification/Notifier.php index f349f73c53..b8c7d17215 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; }