Auth: Replace hardcoded strings: MDL-8069

This commit is contained in:
donal72 2007-01-10 21:43:04 +00:00
parent 5ecfc853c9
commit 7d542ec91d
2 changed files with 4 additions and 2 deletions

View File

@ -14,7 +14,7 @@ $yesno = array(get_string('no'), get_string('yes'));
<table cellspacing="0" cellpadding="5" border="0" align="center">
<tr valign="top" class="required">
<td align="right"> rpc_negotiation_timeout: </td>
<td align="right"><?php print_string('rpc_negotiation_timeout', 'auth'); ?>: </td>
<td>
<input name="rpc_negotiation_timeout" type="text" size="5" value="<?php echo $config->rpc_negotiation_timeout ?>" />
<?php
@ -35,7 +35,7 @@ $yesno = array(get_string('no'), get_string('yes'));
</tr>
<tr valign="top" class="required">
<td align="right"> auto_add_remote_users: </td>
<td align="right"><?php print_string('auto_add_remote_users', 'auth'); ?>: </td>
<td>
<?php

View File

@ -120,6 +120,8 @@ $string['auth_mnettitle'] = 'Moodle Network authentication';
$string['auth_mnetdescription'] = 'Users are authenticated according to the web of trust defined in your Moodle Network settings.';
$string['auth_mnet_rpc_negotiation_timeout'] = 'The timeout in seconds for authentication over the XMLRPC transport.';
$string['auth_mnet_auto_add_remote_users'] = 'When set to Yes, a local user record is auto-created when a remote user logs in for the first time.';
$string['auto_add_remote_users'] = 'Auto add remote users';
$string['rpc_negotiation_timeout'] = 'RPC negotiation timeout';
$string['auth_multiplehosts'] = 'Multiple hosts OR addresses can be specified (eg host1.com;host2.com;host3.com) or (eg xxx.xxx.xxx.xxx;xxx.xxx.xxx.xxx)';