diff options
Diffstat (limited to 'apps/files/src')
-rw-r--r-- | apps/files/src/actions/moveOrCopyAction.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |