From 5a9a199aaaaaa561a10d6a34f58d7498424d2c60 Mon Sep 17 00:00:00 2001 From: Roeland Jago Douma Date: Thu, 24 Aug 2017 14:54:14 +0200 Subject: [PATCH] Don't fetch the translation from core but from files Signed-off-by: Roeland Jago Douma --- apps/files/js/filelist.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 6cf12571ca..9bf25c5904 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'}); },