diff options
Diffstat (limited to 'lib/private/Profile/Actions/TwitterAction.php')
-rw-r--r-- | lib/private/Profile/Actions/TwitterAction.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Profile/Actions/TwitterAction.php b/lib/private/Profile/Actions/TwitterAction.php index 3dcfa8aaf12..204284be1f5 100644 --- a/lib/private/Profile/Actions/TwitterAction.php +++ b/lib/private/Profile/Actions/TwitterAction.php @@ -71,12 +71,12 @@ class TwitterAction implements ILinkAction { } public function getDisplayId(): string { - return $this->l10nFactory->get('core')->t('Twitter'); + return $this->l10nFactory->get('lib')->t('Twitter'); } public function getTitle(): string { $displayUsername = $this->value[0] === '@' ? $this->value : '@' . $this->value; - return $this->l10nFactory->get('core')->t('View %s on Twitter', [$displayUsername]); + return $this->l10nFactory->get('lib')->t('View %s on Twitter', [$displayUsername]); } public function getPriority(): int { |