mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
11 lines
600 B
PHP
11 lines
600 B
PHP
<?php
|
|
// NNTP plugin
|
|
$string['auth_nntpdescription'] = 'This method uses an NNTP server to check whether a given username and password is valid.';
|
|
$string['auth_nntphost'] = 'The NNTP server address. Use the IP number, not DNS name.';
|
|
$string['auth_nntpport'] = 'Server port (119 is the most common)';
|
|
$string['auth_nntptitle'] = 'NNTP server';
|
|
$string['auth_nntpnotinstalled'] = 'Cannot use NNTP authentication. The PHP IMAP module is not installed.';
|
|
$string['auth_nntpchangepasswordurl_key'] = 'Password-change URL';
|
|
$string['auth_nntpport_key'] = 'Port';
|
|
$string['auth_nntphost_key'] = 'Host';
|
|
?>
|