diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-10-01 20:32:37 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-10-01 20:32:37 +0200 |
commit | 86d5bfd81d0d15203b3dbab3d8a6dcc0d1fc6a99 (patch) | |
tree | 248f657aa0efc99097e1474e69343aae5813c254 /apps/files/js/fileactions.js | |
parent | 53656829b94ad99bce8b44ce23f59889eb25370f (diff) | |
download | nextcloud-server-86d5bfd81d0d15203b3dbab3d8a6dcc0d1fc6a99.tar.gz nextcloud-server-86d5bfd81d0d15203b3dbab3d8a6dcc0d1fc6a99.zip |
Refine wording from 'Target folder' to 'Choose target folder'
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps/files/js/fileactions.js')
-rw-r--r-- | apps/files/js/fileactions.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index 8ce8eddb0b0..4fcb290ca8b 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -662,7 +662,7 @@ if (permissions & OC.PERMISSION_UPDATE) { actions = OC.dialogs.FILEPICKER_TYPE_COPY_MOVE; } - OC.dialogs.filepicker(t('files', 'Target folder'), function(targetPath, type) { + OC.dialogs.filepicker(t('files', 'Choose target folder'), function(targetPath, type) { if (type === OC.dialogs.FILEPICKER_TYPE_COPY) { context.fileList.copy(filename, targetPath, false, context.dir); } |