Don't fetch the translation from core but from files

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
Roeland Jago Douma 2017-08-24 14:54:14 +02:00
parent a7f2dc6dd6
commit 5a9a199aaa
No known key found for this signature in database
GPG Key ID: F941078878347C0C
1 changed files with 1 additions and 1 deletions

View File

@ -2720,7 +2720,7 @@
* Shows a "permission denied" notification
*/
_showPermissionDeniedNotification: function() {
var message = t('core', 'You dont have permission to upload or create files here');
var message = t('files', 'You dont have permission to upload or create files here');
OC.Notification.show(message, {type: 'error'});
},