mirror of
https://github.com/moodle/moodle.git
synced 2025-08-07 09:56:38 +02:00
MDL-65588 analytics: New models for student accesses
This commit is contained in:
parent
7d8ed90757
commit
2d9280e0df
21 changed files with 1079 additions and 89 deletions
|
@ -46,6 +46,12 @@ $string['nocourseactivity'] = 'Not enough course activity between the start and
|
|||
$string['nocourseendtime'] = 'The course does not have an end time';
|
||||
$string['nocoursesections'] = 'No course sections';
|
||||
$string['nocoursestudents'] = 'No students';
|
||||
$string['noaccesssincestartinfomessage'] = 'Hi {$a->userfirstname},
|
||||
|
||||
</br><br/>Students in {$a->coursename} have never accessed the course.';
|
||||
$string['norecentaccessesinfomessage'] = 'Hi {$a->userfirstname},
|
||||
|
||||
</br><br/>Students in {$a->coursename} have not accessed the course recently.';
|
||||
$string['noteachinginfomessage'] = 'Hi {$a->userfirstname},
|
||||
|
||||
</br><br/>Courses with start dates in the next week have been identified as having no teacher or student enrolments.';
|
||||
|
@ -66,6 +72,10 @@ $string['target:coursedropout'] = 'Students at risk of dropping out';
|
|||
$string['target:coursedropout_help'] = 'This target describes whether the student is considered at risk of dropping out.';
|
||||
$string['target:coursegradetopass'] = 'Students at risk of not achieving the minimum grade to pass the course';
|
||||
$string['target:coursegradetopass_help'] = 'This target describes whether the student is at risk of not achieving the minimum grade to pass the course.';
|
||||
$string['target:noaccesssincecoursestart'] = 'Students who have not accessed the course yet';
|
||||
$string['target:noaccesssincecoursestart_help'] = 'This target describes students who never accessed a course they are enrolled in.';
|
||||
$string['target:norecentaccesses'] = 'Students who have not accessed the course recently';
|
||||
$string['target:norecentaccesses_help'] = 'This target describes students who have not accessed a course recently.';
|
||||
$string['target:noteachingactivity'] = 'Courses at risk of not starting';
|
||||
$string['target:noteachingactivity_help'] = 'This target describes whether courses due to start in the coming week will have teaching activity.';
|
||||
$string['targetlabelstudentcompletionno'] = 'Student who is likely to meet the course completion conditions';
|
||||
|
|
|
@ -1046,6 +1046,8 @@ $string['indicator:accessesbeforestart'] = 'Course accessed before start date';
|
|||
$string['indicator:accessesbeforestart_help'] = 'This indicator reflects if the student accessed the course before the course start date.';
|
||||
$string['indicator:activitiesdue'] = 'Activities due';
|
||||
$string['indicator:activitiesdue_help'] = 'The user has activities due.';
|
||||
$string['indicator:anycourseaccess'] = 'Any course access';
|
||||
$string['indicator:anycourseaccess_help'] = 'This indicator reflects any accesses to the provided course for the provided user.';
|
||||
$string['indicator:anywrite'] = 'Any write action';
|
||||
$string['indicator:anywrite_help'] = 'This indicator represents any write (submit) action taken by the student.';
|
||||
$string['indicator:anywriteincourse'] = 'Any write action in the course';
|
||||
|
@ -1991,12 +1993,24 @@ $string['timesplitting:quartersaccum'] = 'All previous quarters';
|
|||
$string['timesplitting:quartersaccum_help'] = 'This analysis interval divides the course into quarters (4 equal parts), with each prediction being based on the accumulated data of all previous quarters.';
|
||||
$string['timesplitting:singlerange'] = 'From start to end';
|
||||
$string['timesplitting:singlerange_help'] = 'This analysis interval considers the entire course as a single span.';
|
||||
$string['timesplitting:onemonthafterstart'] = 'One month after start';
|
||||
$string['timesplitting:onemonthafterstart_help'] = 'This analysis interval generates a prediction 1 month after the analysable start.';
|
||||
$string['timesplitting:oneweekafterstart'] = 'One week after start';
|
||||
$string['timesplitting:oneweekafterstart_help'] = 'This analysis interval generates a prediction 1 week after the analysable start.';
|
||||
$string['timesplitting:past3days'] = 'Past 3 days';
|
||||
$string['timesplitting:past3days_help'] = 'This analysis interval generates predictions every 3 days. The indicators calculations will be based on the past 3 days.';
|
||||
$string['timesplitting:pastmonth'] = 'Past month';
|
||||
$string['timesplitting:pastmonth_help'] = 'This analysis interval generates predictions every month. The indicators calculations will be based on the past month.';
|
||||
$string['timesplitting:pastweek'] = 'Past week';
|
||||
$string['timesplitting:pastweek_help'] = 'This analysis interval generates predictions every week. The indicators calculations will be based on the past week.';
|
||||
$string['timesplitting:upcoming3days'] = 'Upcoming 3 days';
|
||||
$string['timesplitting:upcoming3days_help'] = 'This analysis interval generates predictions every 3 days. The indicators calculations will be based on the upcoming 3 days.';
|
||||
$string['timesplitting:upcomingfortnight'] = 'Upcoming fortnight';
|
||||
$string['timesplitting:upcomingfortnight_help'] = 'This analysis interval generates predictions every fortnight. The indicators calculations will be based on the upcoming fortnight.';
|
||||
$string['timesplitting:upcomingweek'] = 'Upcoming week';
|
||||
$string['timesplitting:upcomingweek_help'] = 'This analysis interval generates predictions every week. The indicators calculations will be based on the upcoming week.';
|
||||
$string['timesplitting:tenpercentafterstart'] = '10% after start';
|
||||
$string['timesplitting:tenpercentafterstart_help'] = 'This analysis interval generates a prediction after the 10% of the course is completed.';
|
||||
$string['thanks'] = 'Thanks';
|
||||
$string['theme'] = 'Theme';
|
||||
$string['themes'] = 'Themes';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue