From b3ec461fe86258a0a3831dff28e394018d0044c9 Mon Sep 17 00:00:00 2001 From: Eduardo Morales Date: Wed, 28 Feb 2024 08:33:09 -0600 Subject: feat: reconfigured NcActions to use MDI's Signed-off-by: Eduardo Morales --- apps/files/src/actions/moveOrCopyAction.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/files/src') diff --git a/apps/files/src/actions/moveOrCopyAction.ts b/apps/files/src/actions/moveOrCopyAction.ts index 348bb7bb805..69158958aab 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 file is locked')) + throw new Error(t('files', 'The files are locked')) } else if (error?.response?.status === 404) { throw new Error(t('files', 'The file does not exist anymore')) } else if (error.message) { -- cgit v1.2.3