Fix the parameter order in the translation
This commit is contained in:
parent
2fc19635f6
commit
59967599ac
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue