aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2018-08-01 12:12:47 +0200
committerGitHub <noreply@github.com>2018-08-01 12:12:47 +0200
commit90fe6bffd658986b6d11dcbaa0fe6ea32254e8ea (patch)
treecb0034a11e954b6b3fb92c192f00d91883cab211
parent27d4ff8b4eb9c4c480faf0f112fc931dc7fdc343 (diff)
parented026ce4dfbb64f7dba732776081ab9764990ca1 (diff)
downloadnextcloud-server-90fe6bffd658986b6d11dcbaa0fe6ea32254e8ea.tar.gz
nextcloud-server-90fe6bffd658986b6d11dcbaa0fe6ea32254e8ea.zip
Merge pull request #10466 from nextcloud/rakekniven-patch-1
Fixed tiny grammar issue
-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);
}