aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private
diff options
context:
space:
mode:
authorrakekniven <2069590+rakekniven@users.noreply.github.com>2024-09-06 19:21:07 +0200
committerGitHub <noreply@github.com>2024-09-06 19:21:07 +0200
commitb8774816f6e78de64164f56cfe70afc750351e55 (patch)
treeb926f0399f2c294aa1372f7b8c0a0fd4422aa9c2 /lib/private
parenta05e5428c5dea6f1be4dbca8635b729d49c958a6 (diff)
downloadnextcloud-server-b8774816f6e78de64164f56cfe70afc750351e55.tar.gz
nextcloud-server-b8774816f6e78de64164f56cfe70afc750351e55.zip
chore(i18n): Spelling of ID
Reported at Transifex Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
Diffstat (limited to 'lib/private')
-rw-r--r--lib/private/Share20/Manager.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Share20/Manager.php b/lib/private/Share20/Manager.php
index bb34468db6e..5457e8024a4 100644
--- a/lib/private/Share20/Manager.php
+++ b/lib/private/Share20/Manager.php
@@ -762,7 +762,7 @@ class Manager implements IManager {
try {
$originalShare = $this->getShareById($share->getFullId());
} catch (\UnexpectedValueException $e) {
- throw new \InvalidArgumentException($this->l->t('Share does not have a full id'));
+ throw new \InvalidArgumentException($this->l->t('Share does not have a full ID'));
}
// We cannot change the share type!
@@ -1021,7 +1021,7 @@ class Manager implements IManager {
try {
$share->getFullId();
} catch (\UnexpectedValueException $e) {
- throw new \InvalidArgumentException($this->l->t('Share does not have a full id'));
+ throw new \InvalidArgumentException($this->l->t('Share does not have a full ID'));
}
$this->dispatcher->dispatchTyped(new BeforeShareDeletedEvent($share));