[Pkg-owncloud-commits] [owncloud] 23/34: adjust strings - fixed #11930

David Prévot taffit at moszumanska.debian.org
Fri Nov 7 11:44:12 UTC 2014


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository owncloud.

commit 61c802935bf7ef93d064520bdddc456e3ef1b54d
Author: Thomas Müller <thomas.mueller at tmit.eu>
Date:   Wed Nov 5 11:08:17 2014 +0100

    adjust strings - fixed #11930
---
 apps/files_sharing/templates/settings-admin.php | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/apps/files_sharing/templates/settings-admin.php b/apps/files_sharing/templates/settings-admin.php
index 7c84f77..c71ef31 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>

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git



More information about the Pkg-owncloud-commits mailing list