Commit | Line | Data |
---|---|---|
0056f2a3 DM |
1 | <?php |
2 | ||
3 | // This file is part of Moodle - http://moodle.org/ | |
4 | // | |
5 | // Moodle is free software: you can redistribute it and/or modify | |
6 | // it under the terms of the GNU General Public License as published by | |
7 | // the Free Software Foundation, either version 3 of the License, or | |
8 | // (at your option) any later version. | |
9 | // | |
10 | // Moodle is distributed in the hope that it will be useful, | |
11 | // but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | // GNU General Public License for more details. | |
14 | // | |
15 | // You should have received a copy of the GNU General Public License | |
16 | // along with Moodle. If not, see <http://www.gnu.org/licenses/>. | |
17 | ||
18 | /** | |
19 | * Strings for the tool_installaddon component. | |
20 | * | |
21 | * @package tool_installaddon | |
22 | * @category string | |
23 | * @copyright 2013 David Mudrak <david@moodle.com> | |
24 | * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | |
25 | */ | |
26 | ||
27 | defined('MOODLE_INTERNAL') || die(); | |
28 | ||
29 | $string['acknowledgement'] = 'Acknowledgement'; | |
30 | $string['acknowledgementmust'] = 'You must acknowledge this'; | |
31 | $string['acknowledgementtext'] = 'I understand that it is my responsibility to have full backups of this site prior to installing add-ons. I accept and understand that add-ons (especially but not only those originating in unofficial sources) may contain security holes, can make the site unavailable, or cause private data leaks or loss.'; | |
32 | $string['featuredisabled'] = 'Add-on installer is disabled at this site.'; | |
33 | $string['installaddons'] = 'Install add-ons'; | |
34 | $string['installfromrepo'] = 'Install add-ons from Moodle plugins directory'; | |
35 | $string['installfromrepo_help'] = 'You will be redirected to the Moodle plugins directory to search for and install an add-on. Note that your site fullname, URL and major version will be sent as well, to make the installation process easier for you.'; | |
36 | $string['installfromzipfile'] = 'ZIP package'; | |
37 | $string['installfromzipfile_help'] = 'The plugin ZIP package must contain just one directory with the name of the plugin. The ZIP will be extracted into the appropriate location for the given plugin type. Packages downloaded from the Moodle plugins directory have this format.'; | |
38 | $string['installfromzipsubmit'] = 'Install add-on from the ZIP file'; | |
39 | $string['installfromziptype'] = 'Plugin type'; | |
40 | $string['installfromziptype_help'] = 'Choose the correct type of plugin you are about to install. The installation procedure may fail badly when incorrect plugin type is provided.'; | |
ddab904b DM |
41 | $string['permcheck'] = 'Make sure the plugin type root location is writable by the web server process'; |
42 | $string['permcheckerror'] = 'Error while checking for write permission'; | |
43 | $string['permcheckprogress'] = 'Checking for write permission ...'; | |
44 | $string['permcheckresultno'] = 'Plugin type location <em>{$a->path}</em> not writable'; | |
45 | $string['permcheckresultyes'] = 'Plugin type location <em>{$a->path}</em> is writable'; | |
0056f2a3 | 46 | $string['pluginname'] = 'Add-on installer'; |