summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2013-10-20 23:04:24 +0300
committerJan-Christoph Borchardt <hey@jancborchardt.net>2013-10-20 23:04:24 +0300
commit84d4d797d138da42c938e101521d08f94479cab6 (patch)
treec11ec3c72ba1268575f9a69191d0aad595d60d96 /core
parentfc7269e7282a4fa6f65c9ff683f19d8b5f0f5a60 (diff)
downloadnextcloud-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.js2
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>';