2017-05-23 17:16:30 +08:00
< ? php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Strings for core_analytics .
*
* @ package core_analytics
* @ copyright 2016 David Monllao { @ link http :// www . davidmonllao . com }
* @ license http :// www . gnu . org / copyleft / gpl . html GNU GPL v3 or later
*/
$string [ 'analysablenotused' ] = 'Analysable {$a->analysableid} not used: {$a->errors}' ;
$string [ 'analysablenotvalidfortarget' ] = 'Analysable {$a->analysableid} is not valid for this target: {$a->result}' ;
2017-06-15 10:21:58 +02:00
$string [ 'analysisinprogress' ] = 'Still being analysed by a previous execution' ;
2017-06-13 09:35:35 +02:00
$string [ 'analyticslogstore' ] = 'Log store used for analytics' ;
$string [ 'analyticslogstore_help' ] = 'The log store that will be used by the analytics API to read users\' activity' ;
2017-05-23 17:16:30 +08:00
$string [ 'analyticssettings' ] = 'Analytics settings' ;
2017-06-15 10:21:58 +02:00
$string [ 'coursetoolong' ] = 'The course is too long' ;
2017-05-23 17:16:30 +08:00
$string [ 'enabledtimesplittings' ] = 'Time splitting methods' ;
$string [ 'enabledtimesplittings_help' ] = 'The time splitting method divides the course duration in parts, the predictions engine will run at the end of these parts. It is recommended that you only enable the time splitting methods you could be interested on using; the evaluation process will iterate through all of them so the more time splitting methods to go through the slower the evaluation process will be.' ;
$string [ 'erroralreadypredict' ] = '{$a} file has already been used to predict' ;
2017-06-15 10:21:58 +02:00
$string [ 'errorcannotreaddataset' ] = 'Dataset file {$a} can not be read' ;
$string [ 'errorcannotwritedataset' ] = 'Dataset file {$a} can not be written' ;
2017-06-01 09:56:48 +02:00
$string [ 'errorendbeforestart' ] = 'The guessed end date ({$a}) is before the course start date.' ;
2017-05-23 17:16:30 +08:00
$string [ 'errorinvalidindicator' ] = 'Invalid {$a} indicator' ;
$string [ 'errorinvalidtimesplitting' ] = 'Invalid time splitting, please ensure you added the class fully qualified class name' ;
$string [ 'errornoindicators' ] = 'This model does not have any indicator' ;
$string [ 'errornopredictresults' ] = 'No results returned from the predictions processor, check the output directory contents for more info' ;
$string [ 'errornotimesplittings' ] = 'This model does not have any time splitting method' ;
$string [ 'errornoroles' ] = 'Student or teacher roles have not been defined. Define them in analytics settings page.' ;
$string [ 'errornotarget' ] = 'This model does not have any target' ;
2017-07-26 09:17:58 +02:00
$string [ 'errorpredictioncontextnotavailable' ] = 'This prediction context is not available anymore' ;
2017-05-23 17:16:30 +08:00
$string [ 'errorpredictionformat' ] = 'Wrong prediction calculations format' ;
2017-07-26 09:17:58 +02:00
$string [ 'errorpredictionnotfound' ] = 'Prediction not found' ;
2017-05-23 17:16:30 +08:00
$string [ 'errorpredictionsprocessor' ] = 'Predictions processor error: {$a}' ;
$string [ 'errorpredictwrongformat' ] = 'The predictions processor return can not be decoded: "{$a}"' ;
$string [ 'errorprocessornotready' ] = 'The selected predictions processor is not ready: {$a}' ;
$string [ 'errorsamplenotavailable' ] = 'The predicted sample is not available anymore' ;
$string [ 'errorunexistingtimesplitting' ] = 'The selected time splitting method is not available' ;
2017-06-09 17:05:29 +02:00
$string [ 'errorunexistingmodel' ] = 'Unexisting model {$a}' ;
2017-05-23 17:16:30 +08:00
$string [ 'errorunknownaction' ] = 'Unknown action' ;
2017-06-15 10:21:58 +02:00
$string [ 'eventpredictionactionstarted' ] = 'Prediction action started' ;
2017-05-23 17:16:30 +08:00
$string [ 'insightmessagesubject' ] = 'New insight for "{$a->contextname}": {$a->insightname}' ;
$string [ 'insightinfo' ] = '{$a->insightname} - {$a->contextname}' ;
2017-07-19 16:49:46 +02:00
$string [ 'insightinfomessage' ] = 'The system generated some insights for you: {$a}' ;
$string [ 'insightinfomessagehtml' ] = 'The system generated some insights for you: <a href="{$a}">{$a}</a>.' ;
2017-05-23 17:16:30 +08:00
$string [ 'invalidtimesplitting' ] = 'Model with id {$a} needs a time splitting method before it can be used to train' ;
$string [ 'invalidanalysablefortimesplitting' ] = 'It can not be analysed using {$a} time splitting method' ;
$string [ 'nocourses' ] = 'No courses to analyse' ;
2017-07-27 08:15:02 +02:00
$string [ 'modeloutputdir' ] = 'Models output directory' ;
$string [ 'modeloutputdirinfo' ] = 'Directory where prediction processors store all evaluation info. Useful for debugging and research.' ;
$string [ 'noevaluationbasedassumptions' ] = 'Models based on assumptions can not be evaluated' ;
2017-07-21 17:46:42 +02:00
$string [ 'nodata' ] = 'No data to analyse' ;
2017-06-09 17:05:29 +02:00
$string [ 'noinsightsmodel' ] = 'This model does not generate insights' ;
$string [ 'noinsights' ] = 'No insights reported' ;
2017-05-23 17:16:30 +08:00
$string [ 'nonewdata' ] = 'No new data available' ;
2017-07-21 17:46:42 +02:00
$string [ 'nonewranges' ] = 'No new predictions yet' ;
2017-05-23 17:16:30 +08:00
$string [ 'nonewtimeranges' ] = 'No new time ranges, nothing to predict' ;
$string [ 'nopredictionsyet' ] = 'No predictions available yet' ;
2017-07-21 17:46:42 +02:00
$string [ 'noranges' ] = 'No predictions yet' ;
2017-06-09 12:51:13 +02:00
$string [ 'notrainingbasedassumptions' ] = 'Models based on assumptions do not need training' ;
2017-05-23 17:16:30 +08:00
$string [ 'novaliddata' ] = 'No valid data available' ;
2017-06-15 10:21:58 +02:00
$string [ 'novalidsamples' ] = 'No valid samples available' ;
2017-05-23 17:16:30 +08:00
$string [ 'predictionsprocessor' ] = 'Predictions processor' ;
$string [ 'predictionsprocessor_help' ] = 'Prediction processors are the machine learning backends that process the datasets generated by calculating models\' indicators and targets.' ;
$string [ 'processingsitecontents' ] = 'Processing site contents' ;
$string [ 'successfullyanalysed' ] = 'Successfully analysed' ;
$string [ 'timesplittingmethod' ] = 'Time splitting method' ;
$string [ 'timesplittingmethod_help' ] = 'The time splitting method divides the course duration in parts, the predictions engine will run at the end of these parts. It is recommended that you only enable the time splitting methods you could be interested on using; the evaluation process will iterate through all of them so the more time splitting methods to go through the slower the evaluation process will be.' ;
$string [ 'viewprediction' ] = 'View prediction details' ;