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/filelist.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/filelist.js')
-rw-r--r-- | apps/files/js/filelist.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 8fb8a021811..154209ca975 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -849,7 +849,7 @@ }; var actions = this.isSelectedMovable() ? OC.dialogs.FILEPICKER_TYPE_COPY_MOVE : OC.dialogs.FILEPICKER_TYPE_COPY; - OC.dialogs.filepicker(t('files', 'Target folder'), function(targetPath, type) { + OC.dialogs.filepicker(t('files', 'Choose target folder'), function(targetPath, type) { self.fileMultiSelectMenu.toggleLoading('copyMove', true); if (type === OC.dialogs.FILEPICKER_TYPE_COPY) { self.copy(files, targetPath, disableLoadingState); |