diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2015-09-15 23:23:00 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2015-09-16 06:47:40 +0200 |
commit | 59967599acbf2f574b013a9c1fc350e618b1033d (patch) | |
tree | 30b2053b8a6471a1b7e6d0179649e0ddc4b9ccbd /apps/files_sharing | |
parent | 2fc19635f6a98c0acbd223b3f9d0028ff2755585 (diff) | |
download | nextcloud-server-59967599acbf2f574b013a9c1fc350e618b1033d.tar.gz nextcloud-server-59967599acbf2f574b013a9c1fc350e618b1033d.zip |
Fix the parameter order in the translation
Diffstat (limited to 'apps/files_sharing')
-rw-r--r-- | apps/files_sharing/lib/notifier.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/lib/notifier.php b/apps/files_sharing/lib/notifier.php index cc2deb3f439..02765fcfd1c 100644 --- a/apps/files_sharing/lib/notifier.php +++ b/apps/files_sharing/lib/notifier.php @@ -55,7 +55,7 @@ class Notifier implements INotifier { case 'remote_share': $params = $notification->getSubjectParameters(); $notification->setParsedSubject( - (string) $l->t('You received %s as a remote share from %s', $params) + (string) $l->t('You received %2$s as a remote share from %1$s', $params) ); // Deal with the actions for a known subject |