]> source.dussan.org Git - nextcloud-server.git/commitdiff
better wording for share input field and share link
authorJan-Christoph Borchardt <hey@jancborchardt.net>
Wed, 23 Oct 2013 14:57:06 +0000 (17:57 +0300)
committerJan-Christoph Borchardt <hey@jancborchardt.net>
Wed, 23 Oct 2013 14:57:06 +0000 (17:57 +0300)
core/js/share.js

index 82fa65ead5fda4bd46dcbac4e677ad27bb053b8c..d064a399e55895db96f5a8b7b3abc4b481b6cc84 100644 (file)
@@ -200,7 +200,7 @@ OC.Share={
                                }
                        });
 
-                       html += '<input id="shareWith" type="text" placeholder="'+t('core', 'Share with')+'" />';
+                       html += '<input id="shareWith" type="text" placeholder="'+t('core', 'Share with user or group …')+'" />';
                        html += '<ul id="shareWithList">';
                        html += '</ul>';
                        var linksAllowed = false;
@@ -217,7 +217,7 @@ OC.Share={
                        });
                        if (link && linksAllowed) {
                                html += '<div id="link">';
-                               html += '<input type="checkbox" name="linkCheckbox" id="linkCheckbox" value="1" /><label for="linkCheckbox">'+t('core', 'Share with link')+'</label>';
+                               html += '<input type="checkbox" name="linkCheckbox" id="linkCheckbox" value="1" /><label for="linkCheckbox">'+t('core', 'Share link')+'</label>';
                                html += '<br />';
                                html += '<input id="linkText" type="text" readonly="readonly" />';
                                html += '<input type="checkbox" name="showPassword" id="showPassword" value="1" style="display:none;" /><label for="showPassword" style="display:none;">'+t('core', 'Password protect')+'</label>';