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 |
* Provides a list of strings for the plugin
|
|
|
19 |
*
|
|
|
20 |
* @package report_overviewstats
|
|
|
21 |
* @category string
|
|
|
22 |
* @author DualCube <admin@dualcube.com>
|
|
|
23 |
* @copyright 2023 DualCube <admin@dualcube.com>
|
|
|
24 |
* @copyright based on work by 2013 David Mudrak <david@moodle.com>
|
|
|
25 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
26 |
*/
|
|
|
27 |
|
|
|
28 |
defined('MOODLE_INTERNAL') || die();
|
|
|
29 |
|
|
|
30 |
$string['pluginname'] = 'Overview statistics';
|
|
|
31 |
$string['chart-countries'] = 'User countries';
|
|
|
32 |
$string['chart-countries-info'] = 'Number of different countries: {$a}';
|
|
|
33 |
$string['chart-courses'] = 'Courses';
|
|
|
34 |
$string['chart-courses-percategory'] = 'Number of courses in a course category';
|
|
|
35 |
$string['chart-courses-percategory-categoryname'] = 'Course category';
|
|
|
36 |
$string['chart-courses-percategory-coursesrecursive'] = 'Courses (recursive)';
|
|
|
37 |
$string['chart-courses-percategory-coursesown'] = 'Courses (own only)';
|
|
|
38 |
$string['chart-courses-sizes'] = 'Number of courses per size';
|
|
|
39 |
$string['chart-courses-sizes_help'] = 'Displays the distribution graph of number of activities per course. That is, how many courses are there with 0-4 activities, 5-9 activities, 10-14 activities etc.';
|
|
|
40 |
$string['chart-enrolments'] = 'Enrolled users';
|
|
|
41 |
$string['chart-enrolments-month'] = 'Last month';
|
|
|
42 |
$string['chart-enrolments-year'] = 'Last year';
|
|
|
43 |
$string['chart-langs'] = 'User preferred languages';
|
|
|
44 |
$string['chart-langs-info'] = 'Number of different languages: {$a}';
|
|
|
45 |
$string['chart-logins'] = 'Users logging in';
|
|
|
46 |
$string['chart-logins-perday'] = 'Per day';
|
|
|
47 |
$string['overviewstats:view'] = 'View overview statistics';
|
|
|
48 |
$string['privacy:metadata'] = 'The overview statistics plugin does not store any personal data.';
|
|
|
49 |
$string['user-numbers'] = 'Number of users';
|
|
|
50 |
$string['course-numbers'] = 'Number of course';
|
|
|
51 |
$string['enrolled'] = 'Enrolled';
|
|
|
52 |
$string['null-course-exception'] = 'Course level report invoked without the reference to the course!';
|