Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
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
 * Lang file for block_dedication
19
 * @package block_dedication
20
 * @copyright 2022 University of Canterbury
21
 * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
22
 */
23
 
24
defined('MOODLE_INTERNAL') || die();
25
 
26
 
27
$string['admin_filter_courseid'] = 'Course Name';
28
$string['admin_filter_courseid_help'] = 'Filter the report by the course name';
29
$string['admin_filter_form'] = 'Course dedication configuration';
30
$string['admin_filter_form_help'] = 'Time is estimated based in the concepts of Session and Session duration applied to log entries.
31
 
32
<strong>Click:</strong> Every time that a user access to a page in Moodle a log entry is stored.
33
 
34
<strong>Session:</strong> set of two or more consecutive clicks in which the elapsed time
35
between every pair of consecutive clicks does not overcome an established maximum time.
36
 
37
<strong>Session duration:</strong> elapsed time between the first and the last click of the session.
38
 
39
<strong>Dedication time:</strong> the sum of all session duration for a user.';
40
 
41
$string['admin_filter_form_text'] = 'Select the range of dates and the maximum time between clicks of the same session.';
42
$string['admin_filter_mintime'] = 'Start of the period';
43
$string['admin_filter_mintime_help'] = 'Consider only log entries after this date';
44
$string['admin_filter_maxtime'] = 'End of the period';
45
$string['admin_filter_maxtime_help'] = 'Consider only log entries ending before this date';
46
$string['admin_filter_submit'] = 'Calculate';
47
$string['collect_dedication'] = 'Collect data for block dedication';
48
$string['group'] = 'Group';
49
$string['groupentity'] = 'Group';
50
$string['sessionduration'] = 'Session duration';
51
$string['session_limit'] = 'Session limit';
52
$string['session_limit_desc'] = 'Session limit for the report page filters';
53
$string['entity_dedication'] = 'Dedication';
54
$string['ignore_sessions_limit'] = 'Ignore session limit';
55
$string['ignore_sessions_limit_desc'] = 'Removes shorter sessions, anything less than this value (in mins) will be ignored in the dedication report';
56
$string['pluginname'] = 'Dedication';
57
$string['privacy:metadata'] = 'The block_dedication plugin stores times users have dedicated to courses.';
58
$string['privacy:metadata:block_dedication:userid'] = 'User id of the user dedication';
59
$string['privacy:metadata:block_dedication:courseid'] = 'Course id for the user dedication';
60
$string['privacy:metadata:block_dedication:timespent'] = 'Time spent on the course';
61
$string['privacy:metadata:block_dedication:timestart'] = 'The start time of the data collected';
62
$string['report_dedication'] = 'Tool Dedication Report';
63
$string['report_timespent'] = 'Report Timespent';
64
$string['user_dedication_datasource'] = 'Users Dedication';
65
$string['dedication:addinstance'] = 'Allow to add dedication block';
66
$string['dedication:myaddinstance'] = 'Allow to add dedication block to dashboard page';
67
$string['dedication:viewreports'] = 'Allow to view dedication reports';
68
$string['timespent_estimation'] = 'Your estimated time spent in course is:';
69
$string['timespentreport'] = 'Full report';
70
$string['period'] = 'Period since <em>{$a->mintime}</em> to <em>{$a->maxtime}</em>';
71
$string['perioddiff'] = '<strong>Elapsed time:</strong>  {$a}';
72
 
73
$string['dedicationrow'] = 'Time spent in course';
74
$string['connectionratiorow'] = 'Connections per day';
75
$string['dedicationall'] = 'All course members dedication. Click on any name to see a detailed course dedication for it.';
76
$string['period'] = 'Period since <em>{$a->mintime}</em> to <em>{$a->maxtime}</em>';
77
$string['perioddiff'] = '<strong>Elapsed time:</strong>  {$a}';
78
$string['totaltimespent'] = '<strong>Total of all time spent in course:</strong> {$a}';
79
$string['averagetimespent'] = '<strong>Average time spent in course:</strong> {$a}';
80
$string['sessionstart'] = 'Session start';
81
$string['userdedication'] = 'Detailed course dedication of <em>{$a}</em>.';
82
$string['timespentincourse'] = 'Time spent in course';
83
$string['lastupdated'] = 'Last updated: {$a}';
84
// Block form.
85
$string['showestimatedtime'] = 'Show estimated time spent to users';
86
$string['showestimatedtime_help'] = 'This setting allows users to see their estimated time spent in the block.';
87
$string['cleanuptask'] = 'Session history cleanup task';
88
$string['allloglifetime'] = 'Keep session history for';
89
$string['configallloglifetime'] = 'This specifies the length of time you want to keep data about session duration. Sessions that are older than this age are automatically deleted.';
90
$string['excludesessionslessthan'] = 'Excludes sessions less than {$a}';
91
$string['viewsessiondurationreport'] = 'View session duration report';
92
$string['sessiondurationsum'] = 'Session duration (sum)';
93
$string['enrolmententity'] = 'Enrolment';
94
$string['enrolmentmethod'] = 'Enrolment method';
95
$string['timespenttasknotrunning'] = 'Time spent calculation task has not run yet.';