From e02669ce492f22fbf6ea7a1961054e6a568fdd2e Mon Sep 17 00:00:00 2001 From: Jean-Marie de Boer Date: Wed, 17 Apr 2019 14:06:56 +0200 Subject: [PATCH] Wrong translation file referenced for accept & decline share --- apps/files_sharing/js/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files_sharing/js/app.js b/apps/files_sharing/js/app.js index 7499399a7fb3..f128ed3cc0f4 100644 --- a/apps/files_sharing/js/app.js +++ b/apps/files_sharing/js/app.js @@ -257,7 +257,7 @@ OCA.Sharing.App = { fileActions.registerAction({ name: 'Accept', type: OCA.Files.FileActions.TYPE_INLINE, - displayName: t('files', 'Accept Share'), + displayName: t('files_sharing', 'Accept Share'), mime: 'all', iconClass: 'icon-checkmark', permissions: OC.PERMISSION_READ, @@ -268,7 +268,7 @@ OCA.Sharing.App = { fileActions.registerAction({ name: 'Reject', type: OCA.Files.FileActions.TYPE_INLINE, - displayName: t('files', 'Decline Share'), + displayName: t('files_sharing', 'Decline Share'), iconClass: 'icon-close', mime: 'all', permissions: OC.PERMISSION_READ,