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:
authorrakekniven <mark.ziegler@rakekniven.de>2018-07-31 14:34:14 +0300
committerGitHub <noreply@github.com>2018-07-31 14:34:14 +0300
commited026ce4dfbb64f7dba732776081ab9764990ca1 (patch)
treec64c15e069d9af4e5881fb88355056e731d3ac50 /lib/public/Federation
parentc39bc1638b812ef9660cfdb0ab6ca58d70ad68d8 (diff)
Fixed tiny grammar issue
ID in uppercase. Signed-off-by: Mark Ziegler <mark.ziegler@rakekniven.de>
Diffstat (limited to 'lib/public/Federation')
-rw-r--r--lib/public/Federation/Exceptions/ProviderAlreadyExistsException.php4
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);
}