diff options
author | Valdnet <47037905+Valdnet@users.noreply.github.com> | 2023-09-06 18:39:53 +0200 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2023-09-08 15:53:23 +0000 |
commit | b34e00beeebd011ae152865801f9c0295986313b (patch) | |
tree | 4d78b213c4bef1cfbfb0d23a67516ced484cacfa /apps/files/src/components/FileEntry.vue | |
parent | 165aeeb7f08ef52c9375aeff67fa00524356bf31 (diff) | |
download | nextcloud-server-b34e00beeebd011ae152865801f9c0295986313b.tar.gz nextcloud-server-b34e00beeebd011ae152865801f9c0295986313b.zip |
Remove quotation marks
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'apps/files/src/components/FileEntry.vue')
-rw-r--r-- | apps/files/src/components/FileEntry.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/src/components/FileEntry.vue b/apps/files/src/components/FileEntry.vue index 98834c3b061..2f03859feb2 100644 --- a/apps/files/src/components/FileEntry.vue +++ b/apps/files/src/components/FileEntry.vue @@ -888,7 +888,7 @@ export default Vue.extend({ showError(this.t('files', 'Could not rename "{oldName}", it does not exist any more', { oldName })) return } else if (error?.response?.status === 412) { - showError(this.t('files', 'The name "{newName}"" is already used in the folder "{dir}". Please choose a different name.', { newName, dir: this.currentDir })) + showError(this.t('files', 'The name "{newName}" is already used in the folder "{dir}". Please choose a different name.', { newName, dir: this.currentDir })) return } |