From 7338f7aa217710f67d4a0a375eee99387079b908 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 45591e5b7a0..9fecef9f97b 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -2715,7 +2715,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'}); },