56 lines
3.3 KiB
PHP
56 lines
3.3 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 auth_userkey.
|
|
*
|
|
* @package auth_userkey
|
|
* @copyright 2016 Dmitrii Metelkin (dmitriim@catalyst-au.net)
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
defined('MOODLE_INTERNAL') || die;
|
|
|
|
$string['pluginname'] = 'User key authentication';
|
|
$string['auth_userkeydescription'] = 'Log in to Moodle using one time user key.';
|
|
$string['mappingfield'] = 'Mapping field';
|
|
$string['mappingfield_desc'] = 'This user field will be used to find relevant user in the LMS.';
|
|
$string['iprestriction'] = 'IP restriction';
|
|
$string['iprestriction_desc'] = 'If enabled, a web call has to contain "ip" parameter when requesting login URL.
|
|
A user has to have provided IP to be able to use a key to login to LMS.';
|
|
$string['ipwhitelist'] = 'Whitelist IP ranges';
|
|
$string['ipwhitelist_desc'] = "Ignore IP restrictions if the IP address the token was issued for or the login attempt comes from falls within any of these ranges.
|
|
\nThis can happen when some users reach Moodle or the system issuing login tokens via a private network or DMZ.
|
|
\nIf the route to either the system issuing tokens or this Moodle is via a private address range then set this value to 10.0.0.0/8;172.16.0.0/12;192.168.0.0/16";
|
|
$string['keylifetime'] = 'User key life time';
|
|
$string['keylifetime_desc'] = 'Life time in seconds of the each user login key.';
|
|
$string['incorrectkeylifetime'] = 'User key life time should be a number';
|
|
$string['createuser'] = 'Create user?';
|
|
$string['createuser_desc'] = 'If enabled, a new user will be created if fail to find one in LMS.';
|
|
$string['updateuser'] = 'Update user?';
|
|
$string['updateuser_desc'] = 'If enabled, users will be updated with the properties supplied when the webservice is called.';
|
|
$string['redirecturl'] = 'Logout redirect URL';
|
|
$string['redirecturl_desc'] = 'Optionally you can redirect users to this URL after they logged out from LMS.';
|
|
$string['incorrectredirecturl'] = 'You should provide valid URL';
|
|
$string['incorrectssourl'] = 'You should provide valid URL';
|
|
$string['userkey:generatekey'] = 'Generate login user key';
|
|
$string['pluginisdisabled'] = 'The userkey authentication plugin is disabled.';
|
|
$string['ssourl'] = 'URL of SSO host';
|
|
$string['ssourl_desc'] = 'URL of the SSO host to redirect users to. If defined users will be redirected here on login instead of the Moodle Login page';
|
|
$string['redirecterrordetected'] = 'Unsupported redirect to {$a} detected, execution terminated.';
|
|
$string['noip'] = 'Unable to fetch IP address of client.';
|
|
$string['privacy:metadata'] = 'User key authentication plugin does not store any personal data.';
|
|
$string['incorrectlogout'] = 'Incorrect logout request';
|