Ver código fonte

l10n: Spelling unification in Transifex.

Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
tags/v24.0.0beta1
Valdnet 2 anos atrás
pai
commit
1e487c2a09
Nenhuma conta vinculada ao e-mail do autor do commit

+ 3
- 3
apps/files_sharing/lib/Controller/ShareAPIController.php Ver arquivo

@@ -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'));
}

Carregando…
Cancelar
Salvar