diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-07-11 15:16:26 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-07-14 21:11:50 +0200 |
commit | 7159d6118e04ba543b8e6e3347438b31fd87ecc8 (patch) | |
tree | 6efd0e4787bd54acf347b26006d50656aa7c0b7d /apps/files_sharing/js/share.js | |
parent | 9ee1c7ff7143c9d75a5f5a9f9477cc73f5d97717 (diff) | |
download | nextcloud-server-7159d6118e04ba543b8e6e3347438b31fd87ecc8.tar.gz nextcloud-server-7159d6118e04ba543b8e6e3347438b31fd87ecc8.zip |
reduce share action text to the user name only
Diffstat (limited to 'apps/files_sharing/js/share.js')
-rw-r--r-- | apps/files_sharing/js/share.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index e46be4ada46..eccd21c9248 100644 --- a/apps/files_sharing/js/share.js +++ b/apps/files_sharing/js/share.js @@ -143,7 +143,7 @@ ' data-action="Share-Notification" href="#" original-title="">' + ' <img class="svg" src="' + OC.imagePath('core', 'actions/share') + '"></img>'; $tr.find('.fileactions').append(function() { - var shareBy = t('files_sharing', 'Shared by {owner}', {owner: escapeHTML($tr.attr('data-share-owner'))}); + var shareBy = escapeHTML($tr.attr('data-share-owner')); var $result = $(shareNotification + '<span> ' + shareBy + '</span></span>'); $result.on('click', function() { return false; |