summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-11-05 13:43:23 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2014-11-05 13:43:23 +0100
commit7f41048a338c1dfb170bae211a6f591016c8d0d5 (patch)
treee9a20a19e561713ac6d77a981d5cc7aa6a57ab29 /apps
parentf0d6a47a67b87c544d44ecacf2ba2e9a36659053 (diff)
parent8116d903dd0d8c321f439d93901450f5ee77f191 (diff)
downloadnextcloud-server-7f41048a338c1dfb170bae211a6f591016c8d0d5.tar.gz
nextcloud-server-7f41048a338c1dfb170bae211a6f591016c8d0d5.zip
Merge pull request #11962 from owncloud/fix-server-sharing-strings
adjust strings - fixed #11930
Diffstat (limited to 'apps')
-rw-r--r--apps/files_sharing/templates/settings-admin.php14
1 files changed, 11 insertions, 3 deletions
diff --git a/apps/files_sharing/templates/settings-admin.php b/apps/files_sharing/templates/settings-admin.php
index 7c84f770fa6..c71ef31b21c 100644
--- a/apps/files_sharing/templates/settings-admin.php
+++ b/apps/files_sharing/templates/settings-admin.php
@@ -1,13 +1,21 @@
+<?php
+/** @var OC_L10N $l */
+/** @var array $_ */
+?>
<div class="section" id="fileSharingSettings" >
- <h2><?php p($l->t('Remote Shares'));?></h2>
+ <h2><?php p($l->t('Server-to-Server Sharing'));?></h2>
<input type="checkbox" name="outgoing_server2server_share_enabled" id="outgoingServer2serverShareEnabled"
value="1" <?php if ($_['outgoingServer2serverShareEnabled']) print_unescaped('checked="checked"'); ?> />
- <label for="outgoingServer2serverShareEnabled"><?php p($l->t('Allow other instances to mount public links shared from this server'));?></label><br/>
+ <label for="outgoingServer2serverShareEnabled">
+ <?php p($l->t('Allow users on this server to send shares to other servers'));?>
+ </label><br/>
<input type="checkbox" name="incoming_server2server_share_enabled" id="incomingServer2serverShareEnabled"
value="1" <?php if ($_['incomingServer2serverShareEnabled']) print_unescaped('checked="checked"'); ?> />
- <label for="incomingServer2serverShareEnabled"><?php p($l->t('Allow users to mount public link shares'));?></label><br/>
+ <label for="incomingServer2serverShareEnabled">
+ <?php p($l->t('Allow users on this server to receive shares from other servers'));?>
+ </label><br/>
</div>