From a8b09c860e9a9357aeb42b1c8eeb35f4614dcf79 Mon Sep 17 00:00:00 2001 From: Jos Poortvliet Date: Thu, 13 Apr 2017 11:30:35 +0200 Subject: [PATCH] Explain local link The local link is a clever thing and the clients should support this imho but it might not be clear to all users. For one, the term 'local link' is a bit odd. Local with respect to what? It links directly to the file or folder, so direct link seems to make more sense to me. And we should explain the difference with a public link. So this PR: * renames local link to direct link * adds a short explanation, noting it only works for users who have access to this file/folder. As other links are called public link you could also consider calling this 'private link', I suppose. But the links we sent by mail to ppl could also be called 'private link' (they are for one user, who git it by email) so I think it might be confusing. What do @nextcloud/designers think? Signed-off-by: Morris Jobke --- apps/files/js/mainfileinfodetailview.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/js/mainfileinfodetailview.js b/apps/files/js/mainfileinfodetailview.js index e815fa70ec..f5f9e926f6 100644 --- a/apps/files/js/mainfileinfodetailview.js +++ b/apps/files/js/mainfileinfodetailview.js @@ -169,7 +169,7 @@ starAltText: isFavorite ? t('files', 'Favorited') : t('files', 'Favorite'), starClass: isFavorite ? 'icon-starred' : 'icon-star', permalink: this._makePermalink(this.model.get('id')), - permalinkTitle: t('files', 'Copy local link') + permalinkTitle: t('files', 'Copy direct link (only works for users who have access to this file/folder)') })); // TODO: we really need OC.Previews