diff options
author | rakekniven <mark.ziegler@rakekniven.de> | 2018-07-31 13:34:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-31 13:34:14 +0200 |
commit | ed026ce4dfbb64f7dba732776081ab9764990ca1 (patch) | |
tree | c64c15e069d9af4e5881fb88355056e731d3ac50 /lib/public | |
parent | c39bc1638b812ef9660cfdb0ab6ca58d70ad68d8 (diff) | |
download | nextcloud-server-ed026ce4dfbb64f7dba732776081ab9764990ca1.tar.gz nextcloud-server-ed026ce4dfbb64f7dba732776081ab9764990ca1.zip |
Fixed tiny grammar issue
ID in uppercase.
Signed-off-by: Mark Ziegler <mark.ziegler@rakekniven.de>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Federation/Exceptions/ProviderAlreadyExistsException.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/Federation/Exceptions/ProviderAlreadyExistsException.php b/lib/public/Federation/Exceptions/ProviderAlreadyExistsException.php index e5022500d1c..844d33453f9 100644 --- a/lib/public/Federation/Exceptions/ProviderAlreadyExistsException.php +++ b/lib/public/Federation/Exceptions/ProviderAlreadyExistsException.php @@ -42,8 +42,8 @@ class ProviderAlreadyExistsException extends HintException { */ public function __construct($newProviderId, $existingProviderName) { $l = \OC::$server->getL10N('federation'); - $message = 'Id "' . $newProviderId . '" already used by cloud federation provider "' . $existingProviderName . '"'; - $hint = $l->t('Id "%s" already used by cloud federation provider "%s"', [$newProviderId, $existingProviderName]); + $message = 'ID "' . $newProviderId . '" already used by cloud federation provider "' . $existingProviderName . '"'; + $hint = $l->t('ID "%s" already used by cloud federation provider "%s"', [$newProviderId, $existingProviderName]); parent::__construct($message, $hint); } |