Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2013-10-23 18:57:06 +0400
committerJan-Christoph Borchardt <hey@jancborchardt.net>2013-10-23 18:57:06 +0400
commita2e9c0f81a28cf1f38e1c123aec7a4f82fbf65d3 (patch)
treea639dc0c6115a7d07238a2f9dcd91842845c6be4 /core
parent96562802524e638e8042502bea3ce69671ea9b16 (diff)
better wording for share input field and share link
Diffstat (limited to 'core')
-rw-r--r--core/js/share.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/js/share.js b/core/js/share.js
index 82fa65ead5f..d064a399e55 100644
--- a/core/js/share.js
+++ b/core/js/share.js
@@ -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>';