Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-08-03 12:23:53 +0300
committerJoas Schilling <coding@schilljs.com>2020-08-03 12:23:53 +0300
commit79027c8eff1a2b4c88924e6d34343581b7e10605 (patch)
treed2d25adb43991c01279c30438725d9f0f3b991d6 /apps/federatedfilesharing/lib
parentac3d8d1e43766c1912f95cf0638548cdba1a6ab2 (diff)
Fix missing placeholders in translations
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/federatedfilesharing/lib')
-rw-r--r--apps/federatedfilesharing/lib/Notifier.php18
1 files changed, 11 insertions, 7 deletions
diff --git a/apps/federatedfilesharing/lib/Notifier.php b/apps/federatedfilesharing/lib/Notifier.php
index 42a07abb38a..0098d82d5c4 100644
--- a/apps/federatedfilesharing/lib/Notifier.php
+++ b/apps/federatedfilesharing/lib/Notifier.php
@@ -102,13 +102,15 @@ class Notifier implements INotifier {
$params = $notification->getSubjectParameters();
if ($params[0] !== $params[1] && $params[1] !== null) {
+ $remoteInitiator = $this->createRemoteUser($params[0]);
+ $remoteOwner = $this->createRemoteUser($params[1]);
+ $params[3] = $remoteInitiator['name'] . '@' . $remoteInitiator['server'];
+ $params[4] = $remoteOwner['name'] . '@' . $remoteOwner['server'];
+
$notification->setParsedSubject(
$l->t('You received "%3$s" as a remote share from %4$s (%1$s) (on behalf of %5$s (%2$s))', $params)
);
- $initiator = $params[0];
- $owner = $params[1];
-
$notification->setRichSubject(
$l->t('You received {share} as a remote share from {user} (on behalf of {behalf})'),
[
@@ -117,16 +119,18 @@ class Notifier implements INotifier {
'id' => $notification->getObjectId(),
'name' => $params[2],
],
- 'user' => $this->createRemoteUser($initiator),
- 'behalf' => $this->createRemoteUser($owner),
+ 'user' => $remoteInitiator,
+ 'behalf' => $remoteOwner,
]
);
} else {
+ $remoteOwner = $this->createRemoteUser($params[0]);
+ $params[3] = $remoteOwner['name'] . '@' . $remoteOwner['server'];
+
$notification->setParsedSubject(
$l->t('You received "%3$s" as a remote share from %4$s (%1$s)', $params)
);
- $owner = $params[0];
$notification->setRichSubject(
$l->t('You received {share} as a remote share from {user}'),
@@ -136,7 +140,7 @@ class Notifier implements INotifier {
'id' => $notification->getObjectId(),
'name' => $params[2],
],
- 'user' => $this->createRemoteUser($owner),
+ 'user' => $remoteOwner,
]
);
}