aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/src
diff options
context:
space:
mode:
authorEduardo Morales <emoral435@gmail.com>2024-02-28 08:33:09 -0600
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2024-03-06 18:41:07 +0100
commitb3ec461fe86258a0a3831dff28e394018d0044c9 (patch)
treebe944d4256ac630b3756f08fa91ea0637669b9d4 /apps/files/src
parentd5e2ca0883124e0cd51500d4cc72db661aa31620 (diff)
downloadnextcloud-server-b3ec461fe86258a0a3831dff28e394018d0044c9.tar.gz
nextcloud-server-b3ec461fe86258a0a3831dff28e394018d0044c9.zip
feat: reconfigured NcActions to use MDI's
Signed-off-by: Eduardo Morales <emoral435@gmail.com>
Diffstat (limited to 'apps/files/src')
-rw-r--r--apps/files/src/actions/moveOrCopyAction.ts2
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) {