1 |
efrain |
1 |
<?php
|
|
|
2 |
// This file is part of local_downloadcenter for 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 |
* Download center plugin
|
|
|
19 |
*
|
|
|
20 |
* @package local_downloadcenter
|
|
|
21 |
* @author Simeon Naydenov (moniNaydenov@gmail.com)
|
|
|
22 |
* @copyright 2020 Academic Moodle Cooperation {@link http://www.academic-moodle-cooperation.org}
|
|
|
23 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
24 |
*/
|
|
|
25 |
|
|
|
26 |
|
|
|
27 |
defined('MOODLE_INTERNAL') || die;
|
|
|
28 |
|
|
|
29 |
$string['pluginname'] = 'Download center';
|
|
|
30 |
$string['downloadcenter:view'] = 'View Download center';
|
|
|
31 |
|
|
|
32 |
$string['navigationlink'] = 'Download center';
|
|
|
33 |
$string['pagetitle'] = 'Download center for ';
|
|
|
34 |
|
|
|
35 |
$string['settings_title'] = 'Download center';
|
|
|
36 |
$string['exclude_empty_topics'] = 'Exclude empty topics';
|
|
|
37 |
$string['exclude_empty_topics_help'] = 'Exclude empty topics from the downloaded zip.';
|
|
|
38 |
|
|
|
39 |
$string['warningmessage'] = 'Here you can download single or all available contents of this course in a ZIP archive.';
|
|
|
40 |
|
|
|
41 |
$string['createzip'] = 'Create ZIP archive';
|
|
|
42 |
|
|
|
43 |
$string['zipready'] = 'The ZIP archive has been successfully created.';
|
|
|
44 |
$string['download'] = 'Download';
|
|
|
45 |
$string['zipcreating'] = 'The ZIP archive is being created...';
|
|
|
46 |
$string['eventDOWNLOADEDZIP'] = 'ZIP was downloaded';
|
|
|
47 |
$string['eventVIEWED'] = 'Download center viewed';
|
|
|
48 |
$string['untitled'] = 'Untitled';
|
|
|
49 |
|
|
|
50 |
$string['privacy:null_reason'] = 'This plugin does not store or process any personal information. It presents an interface to download all course files which are manipulated from within the course.';
|
|
|
51 |
|
|
|
52 |
$string['no_downloadable_content'] = 'No downloadable content';
|
|
|
53 |
|
|
|
54 |
$string['downloadoptions'] = 'Options';
|
|
|
55 |
$string['downloadoptions:filesrealnames'] = 'Download files with original file name';
|
|
|
56 |
$string['downloadoptions:filesrealnames_help'] = 'If enabled, file resources will be downloaded with their original file name instead of the visible name in the course.';
|
|
|
57 |
$string['downloadoptions:addnumbering'] = 'Add numbering to files and folders';
|
|
|
58 |
$string['downloadoptions:addnumbering_help'] = 'If enabled, course sections, files, and folders will be numbered in the order they appear in the course.';
|