summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2016-11-23 21:43:14 +0100
committerGitHub <noreply@github.com>2016-11-23 21:43:14 +0100
commit1c564fd554f3d6b73681d6b15c80b48e29e8506b (patch)
treeb6c7e8837159e4dcc91ea4754a740bf70cb1a541 /apps/files_sharing
parent7d64d7ac8b0a199a709c748d0101d628b4564265 (diff)
downloadnextcloud-server-1c564fd554f3d6b73681d6b15c80b48e29e8506b.tar.gz
nextcloud-server-1c564fd554f3d6b73681d6b15c80b48e29e8506b.zip
Fix placeholder typo in public link activity
https://www.transifex.com/nextcloud/nextcloud/translate/#152/files_sharing/101548786/
Diffstat (limited to 'apps/files_sharing')
-rw-r--r--apps/files_sharing/lib/Activity/Providers/PublicLinks.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/lib/Activity/Providers/PublicLinks.php b/apps/files_sharing/lib/Activity/Providers/PublicLinks.php
index 1b15520c70d..a1c6333a86b 100644
--- a/apps/files_sharing/lib/Activity/Providers/PublicLinks.php
+++ b/apps/files_sharing/lib/Activity/Providers/PublicLinks.php
@@ -176,7 +176,7 @@ class PublicLinks implements IProvider {
->setRichSubject($this->l->t('{actor} shared {file} as public link'), $parsedParameters)
->setIcon($this->url->getAbsoluteURL($this->url->imagePath('core', 'actions/share.svg')));
} else if ($event->getSubject() === self::SUBJECT_UNSHARED_LINK_BY) {
- $event->setParsedSubject($this->l->t('%1$s removed public link for %1$s', [
+ $event->setParsedSubject($this->l->t('%2$s removed public link for %1$s', [
$parsedParameters['file']['path'],
$parsedParameters['actor']['name'],
]))