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 |
* Strings for component 'report_coursestats', language 'en'
|
|
|
19 |
*
|
|
|
20 |
* @package report
|
|
|
21 |
* @subpackage coursestats
|
|
|
22 |
* @copyright 2017 Paulo Jr.
|
|
|
23 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
24 |
*/
|
|
|
25 |
|
|
|
26 |
$string['pluginname'] = 'Courses usage statistics';
|
|
|
27 |
$string['link_details'] = 'More info';
|
|
|
28 |
$string['link_back'] = 'Back';
|
|
|
29 |
$string['link_csv'] = 'Export to CSV file';
|
|
|
30 |
$string['lb_course_name'] = 'Short name';
|
|
|
31 |
$string['lb_course_fullname'] = 'Full name';
|
|
|
32 |
$string['lb_usage_type_name'] = 'Usage type';
|
|
|
33 |
$string['lb_usage_type_desc'] = 'Description';
|
|
|
34 |
$string['lb_courses_amount'] = 'Amount of courses';
|
|
|
35 |
$string['lb_percent_of_used_courses'] = '% per used courses';
|
|
|
36 |
$string['lb_percent_of_created_courses'] = '% per created courses';
|
|
|
37 |
$string['lb_prev_usage_type'] = 'Previous usage type';
|
|
|
38 |
$string['lb_curr_usage_type'] = 'Current usage type';
|
|
|
39 |
$string['lb_last_update'] = 'Last update';
|
|
|
40 |
$string['lb_choose_category'] = 'Choose a category';
|
|
|
41 |
$string['lb_category'] = 'Category';
|
|
|
42 |
$string['lb_all_categories'] = 'All categories';
|
|
|
43 |
$string['lb_null_usage'] = 'None';
|
|
|
44 |
$string['lb_forum_usage'] = 'Announcement Forum';
|
|
|
45 |
$string['lb_used_courses'] = 'Used courses';
|
|
|
46 |
$string['lb_not_used_courses'] = 'Not used courses';
|
|
|
47 |
$string['lb_courses_created_amount'] = 'Amount of created courses';
|
|
|
48 |
$string['lb_forum_usage_help'] = 'The course is being used only for communication by means of the <b>Announcements Forum</b>.';
|
|
|
49 |
$string['lb_repository_usage'] = 'Repository';
|
|
|
50 |
$string['lb_repository_usage_help'] = 'The course is being used only as a file repository. That is, the teacher has created just
|
|
|
51 |
<b>File</b>, <b>Folder</b> or <b>URL</b> modules in this course.';
|
|
|
52 |
$string['lb_activity_usage'] = 'Activities';
|
|
|
53 |
$string['lb_activity_usage_help'] = 'The course is being effectively used. That is, the teacher has created exciting modules types
|
|
|
54 |
such as <b>Forum</b>, <b>Quiz</b>, <b>Assignments</b>, <b>Questionnaries</b>, among other in this course.';
|
|
|
55 |
$string['lb_chart_series_types_of_use'] = 'Course Usage Statistics';
|
|
|
56 |
$string['lb_chart_series_used_courses'] = 'General Courses Statistics';
|
|
|
57 |
$string['lb_there_are_no_courses_stats'] = 'There are no courses statistics to be presented at this moment!';
|