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

github.com/nextcloud/circles.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2022-07-01 14:52:58 +0300
committerGitHub <noreply@github.com>2022-07-01 14:52:58 +0300
commit86f6bbd796295798fa5fefc50a4bf997183044d4 (patch)
tree5d0494f93685825d15bd55d8cde8f49798a39247
parent4d7af617482eb108cde8eaf7367017a16b8a9249 (diff)
Update ShareWrapper.phpArtificialOwl-patch-1
-rw-r--r--lib/Model/ShareWrapper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Model/ShareWrapper.php b/lib/Model/ShareWrapper.php
index b16c9e12..9d458228 100644
--- a/lib/Model/ShareWrapper.php
+++ b/lib/Model/ShareWrapper.php
@@ -404,7 +404,7 @@ class ShareWrapper extends ManagedModel implements IDeserializable, IQueryRow, J
$display = $circle->getDisplayName();
if ($circle->getSource() === Member::TYPE_CIRCLE) {
- $l10n = \OCP\Server::get(IFactory::class)->get('circle');
+ $l10n = \OCP\Server::get(IFactory::class)->get('circles');
$display = $l10n->t('%1 (Circle owned by %2)', [$display, $circle->getOwner()->getDisplayName()]);
} else {
$display .= ' (' . Circle::$DEF_SOURCE[$circle->getSource()] . ')';