Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/richdocuments.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorValdnet <47037905+Valdnet@users.noreply.github.com>2021-04-12 15:24:49 +0300
committerGitHub <noreply@github.com>2021-04-12 15:24:49 +0300
commit9cbc840266ccd1e56b711876944c6e6efdce80ef (patch)
tree1456ab449f79e38e3107679eaa57b18630b6973d /lib
parent2599fd2fc59ff20b58dd5a7aee5f73bb36d35581 (diff)
l10n: Unify spelling
Spelling unification in Nextcloud applications.
Diffstat (limited to 'lib')
-rw-r--r--lib/Controller/DocumentController.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Controller/DocumentController.php b/lib/Controller/DocumentController.php
index 8235da68..7f40a601 100644
--- a/lib/Controller/DocumentController.php
+++ b/lib/Controller/DocumentController.php
@@ -521,14 +521,14 @@ class DocumentController extends Controller {
} catch (NotFoundException $e) {
return new JSONResponse([
'status' => 'error',
- 'message' => $this->l10n->t('Can\'t create document')
+ 'message' => $this->l10n->t('Cannot create document')
], Http::STATUS_BAD_REQUEST);
}
if (!($folder instanceof Folder)) {
return new JSONResponse([
'status' => 'error',
- 'message' => $this->l10n->t('Can\'t create document')
+ 'message' => $this->l10n->t('Cannot create document')
], Http::STATUS_BAD_REQUEST);
}
@@ -597,7 +597,7 @@ class DocumentController extends Controller {
return new JSONResponse([
'status' => 'error',
- 'message' => $this->l10n->t('Can\'t create document')
+ 'message' => $this->l10n->t('Cannot create document')
]);
}
}