From e9daa1cbbae69b91f5623bd0755dceac1b071406 Mon Sep 17 00:00:00 2001 From: rakekniven <2069590+rakekniven@users.noreply.github.com> Date: Thu, 28 Sep 2023 22:39:28 +0200 Subject: [PATCH] fix(i18n): Corrected grammar Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com> --- apps/files/src/actions/moveOrCopyAction.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/src/actions/moveOrCopyAction.ts b/apps/files/src/actions/moveOrCopyAction.ts index 0249c27208c..348bb7bb805 100644 --- a/apps/files/src/actions/moveOrCopyAction.ts +++ b/apps/files/src/actions/moveOrCopyAction.ts @@ -166,7 +166,7 @@ export const handleCopyMoveNodeTo = async (node: Node, destination: Folder, meth if (error?.response?.status === 412) { throw new Error(t('files', 'A file or folder with that name already exists in this folder')) } else if (error?.response?.status === 423) { - throw new Error(t('files', 'The files is locked')) + throw new Error(t('files', 'The file is locked')) } else if (error?.response?.status === 404) { throw new Error(t('files', 'The file does not exist anymore')) } else if (error.message) { -- 2.39.5