mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
08a114cf40
Significant string changes: * moodleorghubname,core_admin and sitemustberegistered,message_airnotifier - 'Moodle.net' changed to 'Moodle' * registration_help,core_admin and registermoochtips,core_hub - removed erroneous 'access to Moodle.net our course sharing platform' * trackingtype_help,mod_forum and formnotavailable,core_grading and showgrades_help,core and rolewarning_help,core_rating - 'Administration block' changed to 'Actions menu or admin block', 'navigation block' changed to 'navigation drawer or block'
32 lines
2.1 KiB
PHP
32 lines
2.1 KiB
PHP
<?php
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* Strings for component 'auth_email', language 'en'.
|
|
*
|
|
* @package auth_email
|
|
* @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
$string['auth_emaildescription'] = '<p>Email-based self-registration enables a user to create their own account via a \'Create new account\' button on the login page. The user then receives an email containing a secure link to a page where they can confirm their account. Future logins just check the username and password against the stored values in the Moodle database.</p><p>Note: In addition to enabling the plugin, email-based self-registration must also be selected from the self registration drop-down menu on the \'Manage authentication\' page.</p>';
|
|
$string['auth_emailnoemail'] = 'Tried to send you an email but failed!';
|
|
$string['auth_emailrecaptcha'] = 'Adds a visual/audio confirmation form element to the sign-up page for email self-registering users. This protects your site against spammers and contributes to a worthwhile cause. See https://www.google.com/recaptcha for more details.';
|
|
$string['auth_emailrecaptcha_key'] = 'Enable reCAPTCHA element';
|
|
$string['auth_emailsettings'] = 'Settings';
|
|
$string['pluginname'] = 'Email-based self-registration';
|
|
$string['privacy:metadata'] = 'The Email-based self-registration authentication plugin does not store any personal data.';
|