Skip to content
Snippets Groups Projects
Commit 7f41048a authored by Thomas Müller's avatar Thomas Müller
Browse files

Merge pull request #11962 from owncloud/fix-server-sharing-strings

adjust strings - fixed #11930
parents f0d6a47a 8116d903
No related branches found
No related tags found
No related merge requests found
<?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>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment