Skip to content

Commit

Permalink
Merge pull request #43 from rakekniven/patch-2
Browse files Browse the repository at this point in the history
l10n: Fixed grammar
  • Loading branch information
m-mohamedin committed Jul 19, 2023
2 parents 76a577f + d756bb0 commit 9c47ffa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Controller/EditorController.php
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ public function savePreview($fileId, $shareToken, $previewContents)

if ($file instanceof Folder || !$writeable)
{
return new DataResponse(['message' => $this->trans->t('You can not write to this path')], Http::STATUS_FORBIDDEN);
return new DataResponse(['message' => $this->trans->t('You cannot write to this path')], Http::STATUS_FORBIDDEN);
}

$prevFolder->newFile($file->getId() . '.png', base64_decode($previewContents));
Expand Down

1 comment on commit 9c47ffa

@davidjgraph
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewed.

Please sign in to comment.