Search moodle.org's
Developer Documentation

See Release Notes
Long Term Support Release

  • Bug fixes for general core bugs in 4.1.x will end 13 November 2023 (12 months).
  • Bug fixes for security issues in 4.1.x will end 10 November 2025 (36 months).
  • PHP version: minimum PHP 7.4.0 Note: minimum PHP version has increased since Moodle 4.0. PHP 8.0.x is supported too.

Differences Between: [Versions 310 and 401] [Versions 311 and 401] [Versions 39 and 401]

   1  <?php
   2  // This file is part of Moodle - http://moodle.org/
   3  //
   4  // Moodle is free software: you can redistribute it and/or modify
   5  // it under the terms of the GNU General Public License as published by
   6  // the Free Software Foundation, either version 3 of the License, or
   7  // (at your option) any later version.
   8  //
   9  // Moodle is distributed in the hope that it will be useful,
  10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12  // GNU General Public License for more details.
  13  //
  14  // You should have received a copy of the GNU General Public License
  15  // along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
  16  
  17  /**
  18   * Strings for component 'auth_lti', language 'en'.
  19   *
  20   * @package auth_lti
  21   * @copyright 2016 Mark Nelson <markn@moodle.com>
  22   * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  $string['accountcreatedsuccess'] = 'Your account has been created and is now ready to use.';
  26  $string['accountlinkedsuccess'] = 'Your existing account has been successfully linked.';
  27  $string['auth_ltidescription'] = 'The LTI authentication plugin, together with the \'Publish as LTI tool\' enrolment plugin, allows remote users to access selected courses and activities. In other words, Moodle functions as an LTI tool provider.';
  28  $string['cannotcreateaccounts'] = 'Account creation is currently prohibited on this site.';
  29  $string['createaccount'] = 'Create account';
  30  $string['createaccountforme'] = 'Create an account for me';
  31  $string['createnewaccount'] = 'I\'d like to create a new account';
  32  $string['currentlyloggedinas'] = 'You are currently logged in as:';
  33  $string['firstlaunchnotice'] = 'It looks like this is your first time here. Please select from one of the following account options.';
  34  $string['firstlaunchnoauthnotice'] = 'To link your existing account you must be logged in to the site. Please log in to the site in a new tab/window and then relaunch the tool here. For further information, see the documentation <a href="{$a}" target="_blank">Publish as LTI tool</a>.';
  35  $string['getstartedwithnewaccount'] = 'Get started with a new account';
  36  $string['haveexistingaccount'] = 'I have an existing account';
  37  $string['linkthisaccount'] = 'Link this account';
  38  $string['mustbeloggedin'] = 'You need to be logged in to your existing account';
  39  $string['pluginname'] = 'LTI';
  40  $string['privacy:metadata:auth_lti'] = 'LTI authentication';
  41  $string['privacy:metadata:auth_lti:authsubsystem'] = 'This plugin is connected to the authentication subsystem.';
  42  $string['privacy:metadata:auth_lti:issuer'] = 'The issuer URL identifying the platform to which the linked user belongs.';
  43  $string['privacy:metadata:auth_lti:issuer256'] = 'The SHA256 hash of the issuer URL.';
  44  $string['privacy:metadata:auth_lti:sub'] = 'The subject string identifying the user on the issuer.';
  45  $string['privacy:metadata:auth_lti:sub256'] = 'The SHA256 hash of the subject string identifying the user on the issuer.';
  46  $string['privacy:metadata:auth_lti:tableexplanation'] = 'LTI accounts linked to a user\'s Moodle account.';
  47  $string['privacy:metadata:auth_lti:timecreated'] = 'The timestamp when the user account was linked to the LTI login.';
  48  $string['privacy:metadata:auth_lti:timemodified'] = 'The timestamp when this record was modified.';
  49  $string['privacy:metadata:auth_lti:userid'] = 'The ID of the user account which the LTI login is linked to';
  50  $string['provisioningmodeauto'] = 'New accounts only (automatic)';
  51  $string['provisioningmodenewexisting'] = 'Existing and new accounts (prompt)';
  52  $string['provisioningmodeexistingonly'] = 'Existing accounts only (prompt)';
  53  $string['useexistingaccount'] = 'Use existing account';
  54  $string['welcome'] = 'Welcome!';
  55  
  56  // Deprecated since Moodle 4.0.
  57  $string['privacy:metadata'] = 'The LTI authentication plugin does not store any personal data.';