diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2014-12-19 09:48:19 +0100 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2014-12-19 09:48:19 +0100 |
commit | 587bdd9a74d06ddfedf9a7deae4c38047582b817 (patch) | |
tree | 62092a2540bbd82881cb50a200d4729f5c3e72e5 /core/js | |
parent | 39d6ddd38a05127fe0003e664ffd4ab5603706b7 (diff) | |
parent | 4f616a481c097147014e866a6c9bc3e5f64f4eb4 (diff) | |
download | nextcloud-server-587bdd9a74d06ddfedf9a7deae4c38047582b817.tar.gz nextcloud-server-587bdd9a74d06ddfedf9a7deae4c38047582b817.zip |
Merge pull request #12948 from owncloud/wording
Wording fixes for sharing dialog
Diffstat (limited to 'core/js')
-rw-r--r-- | core/js/share.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/js/share.js b/core/js/share.js index 5e5b85fb5a7..b8717d94ed2 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -410,7 +410,7 @@ OC.Share={ html += '<div id="allowPublicUploadWrapper" style="display:none;">'; html += '<span class="icon-loading-small hidden"></span>'; html += '<input type="checkbox" value="1" name="allowPublicUpload" id="sharingDialogAllowPublicUpload"' + ((allowPublicUploadStatus) ? 'checked="checked"' : '') + ' />'; - html += '<label for="sharingDialogAllowPublicUpload">' + t('core', 'Allow Public Upload') + '</label>'; + html += '<label for="sharingDialogAllowPublicUpload">' + t('core', 'Allow editing') + '</label>'; html += '</div>'; } html += '</div>'; @@ -646,7 +646,7 @@ OC.Share={ html += '<input id="canCreate-'+escapeHTML(shareWith)+'" type="checkbox" name="create" class="permissions" '+createChecked+' data-permissions="'+OC.PERMISSION_CREATE+'"/><label for="canCreate-'+escapeHTML(shareWith)+'">'+t('core', 'create')+'</label>'; } if (possiblePermissions & OC.PERMISSION_UPDATE) { - html += '<input id="canUpdate-'+escapeHTML(shareWith)+'" type="checkbox" name="update" class="permissions" '+updateChecked+' data-permissions="'+OC.PERMISSION_UPDATE+'"/><label for="canUpdate-'+escapeHTML(shareWith)+'">'+t('core', 'update')+'</label>'; + html += '<input id="canUpdate-'+escapeHTML(shareWith)+'" type="checkbox" name="update" class="permissions" '+updateChecked+' data-permissions="'+OC.PERMISSION_UPDATE+'"/><label for="canUpdate-'+escapeHTML(shareWith)+'">'+t('core', 'change')+'</label>'; } if (possiblePermissions & OC.PERMISSION_DELETE) { html += '<input id="canDelete-'+escapeHTML(shareWith)+'" type="checkbox" name="delete" class="permissions" '+deleteChecked+' data-permissions="'+OC.PERMISSION_DELETE+'"/><label for="canDelete-'+escapeHTML(shareWith)+'">'+t('core', 'delete')+'</label>'; |