diff options
author | Valdnet <47037905+Valdnet@users.noreply.github.com> | 2021-03-22 09:01:45 +0100 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2021-03-22 10:30:49 +0000 |
commit | 207e8cbf9e8ebf74bc1326e302ff3e8294f20413 (patch) | |
tree | 990c27ef0ba14af35c04201ef764d836aee532de /apps/sharebymail/lib | |
parent | ba1e966439352a563c16251e0c8f3748a588de59 (diff) | |
download | nextcloud-server-207e8cbf9e8ebf74bc1326e302ff3e8294f20413.tar.gz nextcloud-server-207e8cbf9e8ebf74bc1326e302ff3e8294f20413.zip |
l10n: Add changes to text string for user
Diffstat (limited to 'apps/sharebymail/lib')
-rw-r--r-- | apps/sharebymail/lib/ShareByMailProvider.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/sharebymail/lib/ShareByMailProvider.php b/apps/sharebymail/lib/ShareByMailProvider.php index f427a10bbd1..021f96020c5 100644 --- a/apps/sharebymail/lib/ShareByMailProvider.php +++ b/apps/sharebymail/lib/ShareByMailProvider.php @@ -165,7 +165,7 @@ class ShareByMailProvider implements IShareProvider { $alreadyShared = $this->getSharedWith($shareWith, IShare::TYPE_EMAIL, $share->getNode(), 1, 0); if (!empty($alreadyShared)) { $message = 'Sharing %1$s failed, because this item is already shared with user %2$s'; - $message_t = $this->l->t('Sharing %1$s failed, this item is already shared with %2$s', [$share->getNode()->getName(), $shareWith]); + $message_t = $this->l->t('Sharing %1$s failed, because this item is already shared with user %2$s', [$share->getNode()->getName(), $shareWith]); $this->logger->debug(sprintf($message, $share->getNode()->getName(), $shareWith), ['app' => 'Federated File Sharing']); throw new \Exception($message_t); } |