2021-12-21 18:08:05 +01:00
< ? 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/>.
/**
* Core admin presets component to load some settings / plugins .
*
* @ package core_adminpresets
* @ copyright 2021 Sara Arjona ( sara @ moodle . com )
* @ license http :// www . gnu . org / copyleft / gpl . html GNU GPL v3 or later
*/
$string [ 'disabled' ] = 'Disabled' ;
$string [ 'disabledwithvalue' ] = 'Disabled ({$a})' ;
$string [ 'enabled' ] = 'Enabled' ;
$string [ 'errordeleting' ] = 'Error deleting from database.' ;
$string [ 'errorinserting' ] = 'Error inserting into database.' ;
2022-02-16 22:32:59 +00:00
$string [ 'errornopreset' ] = 'A preset with this name doesn\'t exist.' ;
2021-12-21 18:08:05 +01:00
$string [ 'fullpreset' ] = 'Full' ;
$string [ 'fullpresetdescription' ] = 'All the Starter features plus External (LTI) tool, SCORM, Workshop, Analytics, Badges, Competencies, Learning plans and lots more.' ;
$string [ 'markedasadvanced' ] = 'marked as advanced' ;
$string [ 'markedasforced' ] = 'marked as forced' ;
$string [ 'markedaslocked' ] = 'marked as locked' ;
2022-02-16 22:32:59 +00:00
$string [ 'markedasnonadvanced' ] = 'not marked as advanced' ;
$string [ 'markedasnonforced' ] = 'not marked as forced' ;
$string [ 'markedasnonlocked' ] = 'not marked as locked' ;
2021-12-21 18:08:05 +01:00
$string [ 'privacy:metadata:adminpresets' ] = 'The list of configuration presets.' ;
2022-02-16 22:32:59 +00:00
$string [ 'privacy:metadata:adminpresets:comments' ] = 'The description of the preset.' ;
$string [ 'privacy:metadata:adminpresets:moodlerelease' ] = 'The Moodle release version that the preset is based on.' ;
2021-12-21 18:08:05 +01:00
$string [ 'privacy:metadata:adminpresets:name' ] = 'The name of the preset.' ;
$string [ 'privacy:metadata:adminpresets:site' ] = 'The Moodle site where this preset was created.' ;
$string [ 'privacy:metadata:adminpresets:timecreated' ] = 'The time that the change was made.' ;
$string [ 'privacy:metadata:adminpresets:userid' ] = 'The user who create the preset.' ;
$string [ 'privacy:metadata:adminpresets_app' ] = 'The configuration presets that have been applied.' ;
2022-02-16 22:32:59 +00:00
$string [ 'privacy:metadata:adminpresets_app:adminpresetid' ] = 'The ID of the preset applied.' ;
2021-12-21 18:08:05 +01:00
$string [ 'privacy:metadata:adminpresets_app:time' ] = 'The time that the preset was applied.' ;
$string [ 'privacy:metadata:adminpresets_app:userid' ] = 'The user who applied the preset.' ;
2021-12-23 12:10:00 +01:00
$string [ 'sensiblesettings' ] = 'Settings with passwords' ;
$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.' ;
2021-12-21 18:08:05 +01:00
$string [ 'siteadminpresetspluginname' ] = 'Site admin presets' ;
$string [ 'starterpreset' ] = 'Starter' ;
$string [ 'starterpresetdescription' ] = 'Moodle with all of the most popular features, including Assignment, Feedback, Forum, H5P, Quiz and Completion tracking.' ;
2022-02-16 22:32:59 +00:00
$string [ 'wrongid' ] = 'Wrong ID' ;