Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 4.0.x will end 8 May 2023 (12 months).
  • Bug fixes for security issues in 4.0.x will end 13 November 2023 (18 months).
  • PHP version: minimum PHP 7.3.0 Note: the minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is also supported.
   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   * Core admin presets component to load some settings/plugins.
  19   *
  20   * @package          core_adminpresets
  21   * @copyright        2021 Sara Arjona (sara@moodle.com)
  22   * @license          http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  $string['disabled'] = 'Disabled';
  26  $string['disabledwithvalue'] = 'Disabled ({$a})';
  27  $string['enabled'] = 'Enabled';
  28  $string['errordeleting'] = 'Error deleting from database.';
  29  $string['errorinserting'] = 'Error inserting into database.';
  30  $string['errornopreset'] = 'A preset with this name doesn\'t exist.';
  31  $string['fullpreset'] = 'Full';
  32  $string['fullpresetdescription'] = 'All the Starter features plus External (LTI) tool, SCORM, Workshop, Analytics, Badges, Competencies, Learning plans and lots more.';
  33  $string['markedasadvanced'] = 'marked as advanced';
  34  $string['markedasforced'] = 'marked as forced';
  35  $string['markedaslocked'] = 'marked as locked';
  36  $string['markedasnonadvanced'] = 'not marked as advanced';
  37  $string['markedasnonforced'] = 'not marked as forced';
  38  $string['markedasnonlocked'] = 'not marked as locked';
  39  $string['privacy:metadata:adminpresets'] = 'The list of configuration presets.';
  40  $string['privacy:metadata:adminpresets:comments'] = 'The description of the preset.';
  41  $string['privacy:metadata:adminpresets:moodlerelease'] = 'The Moodle release version that the preset is based on.';
  42  $string['privacy:metadata:adminpresets:name'] = 'The name of the preset.';
  43  $string['privacy:metadata:adminpresets:site'] = 'The Moodle site where this preset was created.';
  44  $string['privacy:metadata:adminpresets:timecreated'] = 'The time that the change was made.';
  45  $string['privacy:metadata:adminpresets:userid'] = 'The user who create the preset.';
  46  $string['privacy:metadata:adminpresets_app'] = 'The configuration presets that have been applied.';
  47  $string['privacy:metadata:adminpresets_app:adminpresetid'] = 'The ID of the preset applied.';
  48  $string['privacy:metadata:adminpresets_app:time'] = 'The time that the preset was applied.';
  49  $string['privacy:metadata:adminpresets_app:userid'] = 'The user who applied the preset.';
  50  $string['sensiblesettings'] = 'Settings with passwords';
  51  $string['sensiblesettingstext'] = 'Settings with passwords or other sensitive information can be excluded when creating a site admin preset. Enter additional settings with format SETTINGNAME@@PLUGINNAME separated by commas.';
  52  $string['siteadminpresetspluginname'] = 'Site admin presets';
  53  $string['starterpreset'] = 'Starter';
  54  $string['starterpresetdescription'] = 'Moodle with all of the most popular features, including Assignment, Feedback, Forum, H5P, Quiz and Completion tracking.';
  55  $string['wrongid'] = 'Wrong ID';