mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
Auth: Replace hardcoded strings: MDL-8069
This commit is contained in:
parent
5ecfc853c9
commit
7d542ec91d
@ -14,7 +14,7 @@ $yesno = array(get_string('no'), get_string('yes'));
|
|||||||
<table cellspacing="0" cellpadding="5" border="0" align="center">
|
<table cellspacing="0" cellpadding="5" border="0" align="center">
|
||||||
|
|
||||||
<tr valign="top" class="required">
|
<tr valign="top" class="required">
|
||||||
<td align="right"> rpc_negotiation_timeout: </td>
|
<td align="right"><?php print_string('rpc_negotiation_timeout', 'auth'); ?>: </td>
|
||||||
<td>
|
<td>
|
||||||
<input name="rpc_negotiation_timeout" type="text" size="5" value="<?php echo $config->rpc_negotiation_timeout ?>" />
|
<input name="rpc_negotiation_timeout" type="text" size="5" value="<?php echo $config->rpc_negotiation_timeout ?>" />
|
||||||
<?php
|
<?php
|
||||||
@ -35,7 +35,7 @@ $yesno = array(get_string('no'), get_string('yes'));
|
|||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr valign="top" class="required">
|
<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>
|
<td>
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
@ -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_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_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['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)';
|
$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)';
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user