diff options
author | Valdnet <47037905+Valdnet@users.noreply.github.com> | 2021-03-20 15:37:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-20 15:37:32 +0100 |
commit | 4b4b1f6ff1203cbbbc20119a11802d07136fc49f (patch) | |
tree | bde0f58fb20df870617adf53eb63588183fc7b01 /apps/sharebymail | |
parent | 16b1c0284842dec61d5d043ccd523b6f431af12b (diff) | |
download | nextcloud-server-4b4b1f6ff1203cbbbc20119a11802d07136fc49f.tar.gz nextcloud-server-4b4b1f6ff1203cbbbc20119a11802d07136fc49f.zip |
l10n: Add word user in ShareByMailProvider.php
Standardizing text strings with other Nextcloud applications.
Diffstat (limited to 'apps/sharebymail')
-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 2484ccdd720..b82d54ba99d 100644 --- a/apps/sharebymail/lib/ShareByMailProvider.php +++ b/apps/sharebymail/lib/ShareByMailProvider.php @@ -164,7 +164,7 @@ class ShareByMailProvider implements IShareProvider { */ $alreadyShared = $this->getSharedWith($shareWith, IShare::TYPE_EMAIL, $share->getNode(), 1, 0); if (!empty($alreadyShared)) { - $message = 'Sharing %1$s failed, this item is already shared with %2$s'; + $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]); $this->logger->debug(sprintf($message, $share->getNode()->getName(), $shareWith), ['app' => 'Federated File Sharing']); throw new \Exception($message_t); |