1 |
efrain |
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 |
* Admin tool presets plugin to load some settings.
|
|
|
19 |
*
|
|
|
20 |
* @package tool_admin_presets
|
|
|
21 |
* @copyright 2021 Pimenko <support@pimenko.com><pimenko.com>
|
|
|
22 |
* @author Jordan Kesraoui | Sylvain Revenu | Pimenko based on David Monllaó <david.monllao@urv.cat> code
|
|
|
23 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
24 |
*/
|
|
|
25 |
|
|
|
26 |
$string['actionexport'] = 'Create preset';
|
|
|
27 |
$string['actionexportbutton'] = 'Create preset';
|
|
|
28 |
$string['actionimport'] = 'Import preset';
|
|
|
29 |
$string['actualvalue'] = 'Actual value';
|
|
|
30 |
$string['applyaction'] = 'Review settings and apply';
|
|
|
31 |
$string['applypresetdescription'] = 'If you change your mind after applying this preset, you can undo the setting changes via \'Show version history\' in the preset actions menu.';
|
|
|
32 |
$string['author'] = 'Author';
|
|
|
33 |
$string['basedescription'] = 'Presets allow you to easily switch between different site admin configurations. After selecting a preset, you can turn on more features any time as required.';
|
|
|
34 |
$string['created'] = 'Created';
|
|
|
35 |
$string['currentvalue'] = 'Current value';
|
|
|
36 |
$string['deletepreset'] = 'Are you sure you want to delete the site admin preset {$a}?';
|
|
|
37 |
$string['deletepreviouslyapplied'] = 'This preset has been previously applied. Deleting a preset removes it from your site completely. You will not be able to revert your settings to how they were before applying this preset.';
|
|
|
38 |
$string['deletepresettitle'] = 'Delete {$a} preset?';
|
|
|
39 |
$string['deleteshow'] = 'Delete site admin preset';
|
|
|
40 |
$string['eventpresetdeleted'] = 'Preset deleted';
|
|
|
41 |
$string['eventpresetdownloaded'] = 'Preset downloaded';
|
|
|
42 |
$string['eventpresetexported'] = 'Preset created';
|
|
|
43 |
$string['eventpresetimported'] = 'Preset imported';
|
|
|
44 |
$string['eventpresetloaded'] = 'Preset applied';
|
|
|
45 |
$string['eventpresetpreviewed'] = 'Preset previewed';
|
|
|
46 |
$string['eventpresetreverted'] = 'Preset restored';
|
|
|
47 |
$string['eventpresetslisted'] = 'Presets have been listed';
|
|
|
48 |
$string['exportdescription'] = 'Save all your current site admin settings as a preset to share or reuse.';
|
|
|
49 |
$string['exportshow'] = 'Create site admin preset';
|
|
|
50 |
$string['falseaction'] = 'Action not supported in this version.';
|
|
|
51 |
$string['falsemode'] = 'Mode not supported in this version.';
|
|
|
52 |
$string['import'] = 'Import';
|
|
|
53 |
$string['imported'] = 'Imported';
|
|
|
54 |
$string['importdescription'] = 'Import site admin settings as a preset to apply to your site.';
|
|
|
55 |
$string['importexecute'] = 'Import site admin preset';
|
|
|
56 |
$string['importshow'] = 'Import site admin preset';
|
|
|
57 |
$string['includesensiblesettings'] = 'Include settings with passwords';
|
|
|
58 |
$string['includesensiblesettings_help'] = 'Settings with passwords contain sensitive information specific to your site. Only include these settings if you are creating a preset to reuse on your site.';
|
|
|
59 |
$string['loaddescription'] = 'Review the setting changes before applying this preset.';
|
|
|
60 |
$string['loadexecute'] = 'Site admin preset applied';
|
|
|
61 |
$string['loadpreview'] = 'Preview site admin preset';
|
|
|
62 |
$string['loadselected'] = 'Apply';
|
|
|
63 |
$string['loadshow'] = 'Apply site admin preset';
|
|
|
64 |
$string['newvalue'] = 'New value';
|
|
|
65 |
$string['nopresets'] = 'You don\'t have any site admin preset.';
|
|
|
66 |
$string['nosettingswillbeapplied'] = 'These settings are the same as the current settings; there are no changes to apply.';
|
|
|
67 |
$string['nothingloaded'] = 'No setting changes have been made because the settings in the preset are the same as on your site.';
|
|
|
68 |
$string['novalidsettings'] = 'No valid settings';
|
|
|
69 |
$string['novalidsettingsselected'] = 'No valid settings selected';
|
|
|
70 |
$string['oldvalue'] = 'Old value';
|
|
|
71 |
$string['pluginname'] = 'Site admin presets';
|
|
|
72 |
$string['presetapplicationslisttable'] = 'Site admin preset applications table';
|
|
|
73 |
$string['presetslisttable'] = 'Site admin presets table';
|
|
|
74 |
$string['presetmoodlerelease'] = 'Moodle release';
|
|
|
75 |
$string['presetname'] = 'Preset name';
|
|
|
76 |
$string['privacy:metadata'] = 'The Site admin presets tool does not store any personal data.';
|
|
|
77 |
$string['renamepreset'] = 'Name (optional)';
|
|
|
78 |
$string['rollback'] = 'Restore this version';
|
|
|
79 |
$string['rollbackdescription'] = 'Use the \'Restore this version\' link to revert to the settings just before the preset was applied.';
|
|
|
80 |
$string['rollbackexecute'] = 'Restored version from the site admin preset {$a}';
|
|
|
81 |
$string['rollbackfailures'] = 'The following settings cannot be reverted, as the value was changed after applying the preset.';
|
|
|
82 |
$string['rollbackresults'] = 'Settings successfully restored';
|
|
|
83 |
$string['rollbackshow'] = '{$a} preset version history';
|
|
|
84 |
$string['selectfile'] = 'Select file';
|
|
|
85 |
$string['settingname'] = 'Setting name';
|
|
|
86 |
$string['settingsapplied'] = 'Setting changes';
|
|
|
87 |
$string['settingsappliednotification'] = 'Review the following setting changes which have been applied.
|
|
|
88 |
<br/>If you change your mind, you can undo the setting changes via \'Show version history\' in the preset actions menu.';
|
|
|
89 |
$string['settingsnotapplicable'] = 'Settings not applicable to this Moodle version';
|
|
|
90 |
$string['settingsnotapplied'] = 'Unchanged settings';
|
|
|
91 |
$string['settingstobeapplied'] = 'Setting changes';
|
|
|
92 |
$string['showhistory'] = 'Show version history';
|
|
|
93 |
$string['site'] = 'Site';
|
|
|
94 |
$string['timeapplied'] = 'Date';
|
|
|
95 |
$string['wrongfile'] = 'Wrong file';
|