diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-07-31 15:19:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-31 15:19:22 +0200 |
commit | 3ae66a76e10737575b4e78abd406aab3a1d0151d (patch) | |
tree | e7ab4d5331cfb5fc13921df599ae78c067911008 | |
parent | c39bc1638b812ef9660cfdb0ab6ca58d70ad68d8 (diff) | |
parent | bc8365660462c13938a67befe5c3db050aee9991 (diff) | |
download | nextcloud-server-3ae66a76e10737575b4e78abd406aab3a1d0151d.tar.gz nextcloud-server-3ae66a76e10737575b4e78abd406aab3a1d0151d.zip |
Merge pull request #10467 from nextcloud/fix/10403/reword_note
Reword share comment feature
-rw-r--r-- | core/js/sharedialoglinkshareview.js | 2 | ||||
-rw-r--r-- | core/js/sharedialogshareelistview.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/js/sharedialoglinkshareview.js b/core/js/sharedialoglinkshareview.js index 925d8ed918e..0b2fec5588e 100644 --- a/core/js/sharedialoglinkshareview.js +++ b/core/js/sharedialoglinkshareview.js @@ -590,7 +590,7 @@ expireDate: expireDate, defaultExpireDate: moment().add(1, 'day').format('DD-MM-YYYY'), // Can't expire today shareNote: this.model.get('linkShare').note, - addNoteLabel: t('core', 'Set share note'), + addNoteLabel: t('core', 'Note to recipient'), }); this.$el.html(linkShareTemplate({ diff --git a/core/js/sharedialogshareelistview.js b/core/js/sharedialogshareelistview.js index 8df7fe5ecd7..2ed46f46768 100644 --- a/core/js/sharedialogshareelistview.js +++ b/core/js/sharedialogshareelistview.js @@ -320,7 +320,7 @@ getShareProperties: function() { return { unshareLabel: t('core', 'Unshare'), - addNoteLabel: t('core', 'Set share note'), + addNoteLabel: t('core', 'Note to recipient'), canShareLabel: t('core', 'Can reshare'), canEditLabel: t('core', 'Can edit'), createPermissionLabel: t('core', 'Can create'), |