diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-10-20 23:04:24 +0300 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-10-20 23:04:24 +0300 |
commit | 84d4d797d138da42c938e101521d08f94479cab6 (patch) | |
tree | c11ec3c72ba1268575f9a69191d0aad595d60d96 /core | |
parent | fc7269e7282a4fa6f65c9ff683f19d8b5f0f5a60 (diff) | |
download | nextcloud-server-84d4d797d138da42c938e101521d08f94479cab6.tar.gz nextcloud-server-84d4d797d138da42c938e101521d08f94479cab6.zip |
shorten string to 'notify by email', cut 'user'
Diffstat (limited to 'core')
-rw-r--r-- | core/js/share.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/share.js b/core/js/share.js index 2922cdd60e5..82fa65ead5f 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -384,7 +384,7 @@ OC.Share={ if (mailSend === '1') { checked = 'checked'; } - html += '<label><input type="checkbox" name="mailNotification" class="mailNotification" ' + checked + ' />'+t('core', 'notify user by email')+'</label>'; + html += '<label><input type="checkbox" name="mailNotification" class="mailNotification" ' + checked + ' />'+t('core', 'notify by email')+'</label>'; } if (possiblePermissions & OC.PERMISSION_CREATE || possiblePermissions & OC.PERMISSION_UPDATE || possiblePermissions & OC.PERMISSION_DELETE) { html += '<label><input type="checkbox" name="edit" class="permissions" '+editChecked+' />'+t('core', 'can edit')+'</label>'; |