diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2017-08-24 14:54:14 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2017-08-24 14:54:14 +0200 |
commit | 5a9a199aaaaaa561a10d6a34f58d7498424d2c60 (patch) | |
tree | 34adb9c4e41833c64ea78cc889e888560f942dd6 /apps/files/js | |
parent | a7f2dc6dd660179682f7d03ac8e07649b59cdd6f (diff) | |
download | nextcloud-server-5a9a199aaaaaa561a10d6a34f58d7498424d2c60.tar.gz nextcloud-server-5a9a199aaaaaa561a10d6a34f58d7498424d2c60.zip |
Don't fetch the translation from core but from files
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/files/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 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'}); }, |