diff options
author | Valdnet <47037905+Valdnet@users.noreply.github.com> | 2022-03-18 10:14:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-18 10:14:34 +0100 |
commit | 1e487c2a0951381ab2b27c88d5dd3d6d9dd81a24 (patch) | |
tree | ced251a7c58906313f3071b12fdcbf22a719898d /apps | |
parent | b0fbcccfe66474d79586001ce9509d346919ae74 (diff) | |
download | nextcloud-server-1e487c2a0951381ab2b27c88d5dd3d6d9dd81a24.tar.gz nextcloud-server-1e487c2a0951381ab2b27c88d5dd3d6d9dd81a24.zip |
l10n: Spelling unification in Transifex.
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/lib/Controller/ShareAPIController.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/files_sharing/lib/Controller/ShareAPIController.php b/apps/files_sharing/lib/Controller/ShareAPIController.php index fef71a868d5..6375ee3d703 100644 --- a/apps/files_sharing/lib/Controller/ShareAPIController.php +++ b/apps/files_sharing/lib/Controller/ShareAPIController.php @@ -471,7 +471,7 @@ class ShareAPIController extends OCSController { try { $path = $userFolder->get($path); } catch (NotFoundException $e) { - throw new OCSNotFoundException($this->l->t('Wrong path, file/folder doesn\'t exist')); + throw new OCSNotFoundException($this->l->t('Wrong path, file/folder does not exist')); } $share->setNode($path); @@ -808,7 +808,7 @@ class ShareAPIController extends OCSController { $this->lock($node); } catch (NotFoundException $e) { throw new OCSNotFoundException( - $this->l->t('Wrong path, file/folder doesn\'t exist') + $this->l->t('Wrong path, file/folder does not exist') ); } catch (LockedException $e) { throw new OCSNotFoundException($this->l->t('Could not lock node')); @@ -940,7 +940,7 @@ class ShareAPIController extends OCSController { $node = $userFolder->get($path); $this->lock($node); } catch (\OCP\Files\NotFoundException $e) { - throw new OCSNotFoundException($this->l->t('Wrong path, file/folder doesn\'t exist')); + throw new OCSNotFoundException($this->l->t('Wrong path, file/folder does not exist')); } catch (LockedException $e) { throw new OCSNotFoundException($this->l->t('Could not lock path')); } |