summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2017-08-24 19:24:07 +0200
committerGitHub <noreply@github.com>2017-08-24 19:24:07 +0200
commitf99527ab8b8ab83a57b55c55b2c8eb10fa069169 (patch)
tree683eae07c2cb9f10c262e72e73fe55da0dd31dd2
parent60ee4508092e822a537c0551204ecda550b3ae78 (diff)
parent5a9a199aaaaaa561a10d6a34f58d7498424d2c60 (diff)
downloadnextcloud-server-f99527ab8b8ab83a57b55c55b2c8eb10fa069169.tar.gz
nextcloud-server-f99527ab8b8ab83a57b55c55b2c8eb10fa069169.zip
Merge pull request #6251 from nextcloud/get_right_translation
Don't fetch the translation from core but from files
-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 6cf12571ca0..9bf25c5904d 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -2720,7 +2720,7 @@
* Shows a "permission denied" notification
*/
_showPermissionDeniedNotification: function() {
- var message = t('core', 'You don’t have permission to upload or create files here');
+ var message = t('files', 'You don’t have permission to upload or create files here');
OC.Notification.show(message, {type: 'error'});
},