diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-09-16 09:21:37 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-09-16 09:21:37 +0200 |
commit | 6c9d957245cf25bd7907c6d85d3bb89e739af0c6 (patch) | |
tree | eb9a3fb7b8afcb05d66f62beb7db7a12fda5c479 | |
parent | c9c4626750bb37c42c3258d3de4ba28faf9fb50a (diff) | |
parent | 59967599acbf2f574b013a9c1fc350e618b1033d (diff) | |
download | nextcloud-server-6c9d957245cf25bd7907c6d85d3bb89e739af0c6.tar.gz nextcloud-server-6c9d957245cf25bd7907c6d85d3bb89e739af0c6.zip |
Merge pull request #19064 from owncloud/fix-parameter-order-in-translation
Fix the parameter order in the translation
-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 |