Fix the parameter order in the translation

This commit is contained in:
Joas Schilling 2015-09-15 23:23:00 +02:00
parent 2fc19635f6
commit 59967599ac
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ class Notifier implements INotifier {
case 'remote_share': case 'remote_share':
$params = $notification->getSubjectParameters(); $params = $notification->getSubjectParameters();
$notification->setParsedSubject( $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 // Deal with the actions for a known subject