summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2014-12-18 22:39:32 +0100
committerJan-Christoph Borchardt <hey@jancborchardt.net>2014-12-18 22:39:32 +0100
commit4f616a481c097147014e866a6c9bc3e5f64f4eb4 (patch)
tree190fb1c529552de089e18d5299bb04b391c50e75
parent5aae796d3dd4eebbbb291509f11add218a207270 (diff)
downloadnextcloud-server-4f616a481c097147014e866a6c9bc3e5f64f4eb4.tar.gz
nextcloud-server-4f616a481c097147014e866a6c9bc3e5f64f4eb4.zip
change 'Allow Public Upload' to more understandable 'Allow editing', fix #10438
-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 d4df40aaf30..4786c199a6b 100644
--- a/core/js/share.js
+++ b/core/js/share.js
@@ -407,7 +407,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>';