diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2017-07-24 11:36:20 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2017-08-01 08:20:17 +0200 |
commit | ede15f0988c02cf65f9d1a763d9bb2ea0edde2e9 (patch) | |
tree | 7e2295dd8598ba894b4eaaf7d7d47ff8b4946d7e /apps/updatenotification/lib | |
parent | fd465d4e492bf19812f2c62f06766b3d70f8a270 (diff) | |
download | nextcloud-server-ede15f0988c02cf65f9d1a763d9bb2ea0edde2e9.tar.gz nextcloud-server-ede15f0988c02cf65f9d1a763d9bb2ea0edde2e9.zip |
Fix L10N::t
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/updatenotification/lib')
-rw-r--r-- | apps/updatenotification/lib/Notification/Notifier.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/updatenotification/lib/Notification/Notifier.php b/apps/updatenotification/lib/Notification/Notifier.php index e512825da04..2fc1d36b0cb 100644 --- a/apps/updatenotification/lib/Notification/Notifier.php +++ b/apps/updatenotification/lib/Notification/Notifier.php @@ -117,7 +117,7 @@ class Notifier implements INotifier { } $notification->setParsedSubject($l->t('Update for %1$s to version %2$s is available.', [$appName, $notification->getObjectId()])) - ->setRichSubject($l->t('Update for {app} to version %s is available.', $notification->getObjectId()), [ + ->setRichSubject($l->t('Update for {app} to version %s is available.', [$notification->getObjectId()]), [ 'app' => [ 'type' => 'app', 'id' => $notification->getObjectType(), |