aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/js
diff options
context:
space:
mode:
authorVolkan Gezer <wakeup@users.noreply.github.com>2014-08-12 01:13:30 +0200
committerVolkan Gezer <wakeup@users.noreply.github.com>2014-08-12 01:13:30 +0200
commitf2a775acb809cbf33121dfb159b592c73b00c4d9 (patch)
treed8e99719c1803a9ea2ab5226c75f97688227bfab /apps/files/js
parent44ec8060a8242bd8591496ceb89a32901cb92c8c (diff)
downloadnextcloud-server-f2a775acb809cbf33121dfb159b592c73b00c4d9.tar.gz
nextcloud-server-f2a775acb809cbf33121dfb159b592c73b00c4d9.zip
Fix alert text
Diffstat (limited to 'apps/files/js')
-rw-r--r--apps/files/js/filelist.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index 532ed466968..1bab760a897 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -1320,7 +1320,7 @@
success: function(result) {
var fileInfo;
if (!result || result.status === 'error') {
- OC.dialogs.alert(result.data.message, t('core', 'Could not rename file'));
+ OC.dialogs.alert(result.data.message, t('files', 'Could not rename file'));
fileInfo = oldFileInfo;
}
else {